forked from mounirlamouri/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautocapitalize.html
65 lines (60 loc) · 2.9 KB
/
autocapitalize.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>autocapitalize test page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<label>off <input autocapitalize='off'></label><br>
<label>on <input autocapitalize='on'></label><br>
<label>none <input autocapitalize='none'></label><br>
<label>characters <input autocapitalize='characters'></label><br>
<label>words <input autocapitalize='words'></label><br>
<label>sentences <input autocapitalize='sentences'></label>
<fieldset>
<legent>search</legent>
<label>off <input type=search autocapitalize='off'></label><br>
<label>on <input type=search autocapitalize='on'></label><br>
<label>none <input type=search autocapitalize='none'></label><br>
<label>characters <input type=search autocapitalize='characters'></label><br>
<label>words <input type=search autocapitalize='words'></label><br>
<label>sentences <input type=search autocapitalize='sentences'></label>
</fieldset>
<fieldset>
<legent>email</legent>
<label>off <input type=email autocapitalize='off'></label><br>
<label>on <input type=email autocapitalize='on'></label><br>
<label>none <input type=email autocapitalize='none'></label><br>
<label>characters <input type=email autocapitalize='characters'></label><br>
<label>words <input type=email autocapitalize='words'></label><br>
<label>sentences <input type=email autocapitalize='sentences'></label>
</fieldset>
<fieldset>
<legent>url</legent>
<label>off <input type=url autocapitalize='off'></label><br>
<label>on <input type=url autocapitalize='on'></label><br>
<label>none <input type=url autocapitalize='none'></label><br>
<label>characters <input type=url autocapitalize='characters'></label><br>
<label>words <input type=url autocapitalize='words'></label><br>
<label>sentences <input type=url autocapitalize='sentences'></label>
</fieldset>
<fieldset>
<legent>password</legent>
<label>off <input type=password autocapitalize='off'></label><br>
<label>on <input type=password autocapitalize='on'></label><br>
<label>none <input type=password autocapitalize='none'></label><br>
<label>characters <input type=password autocapitalize='characters'></label><br>
<label>words <input type=password autocapitalize='words'></label><br>
<label>sentences <input type=password autocapitalize='sentences'></label>
</fieldset>
<fieldset>
<legend>textarea</legend>
<label>off<textarea autocapitalize=off></textarea></label><br>
<label>on<textarea autocapitalize=on></textarea></label><br>
<label>none<textarea autocapitalize=none></textarea></label><br>
<label>characters<textarea autocapitalize=characters></textarea></label><br>
<label>words<textarea autocapitalize=words></textarea></label><br>
<label>sentences<textarea autocapitalize=sentences></textarea></label><br>
</fieldset>
</body>
</html>