OLD | NEW |
1 <!-- | 1 <!-- |
2 @MAC-ALLOW:AXRole* | 2 @MAC-ALLOW:AXRole* |
3 @WIN-ALLOW:checkable:* | 3 @WIN-ALLOW:checkable:* |
4 @WIN-ALLOW:CHECKED* | 4 @WIN-ALLOW:CHECKED* |
5 @WIN-ALLOW:ia2_hypertext=* | 5 @WIN-ALLOW:ia2_hypertext=* |
6 @WIN-ALLOW:IA2_STATE_* | 6 @WIN-ALLOW:IA2_STATE_* |
7 @WIN-ALLOW:MIXED | 7 @WIN-ALLOW:MIXED |
8 @WIN-ALLOW:xml-roles:* | 8 @WIN-ALLOW:xml-roles:* |
9 --> | 9 --> |
10 <html> | 10 <html> |
11 <body> | 11 <body> |
| 12 <label><input type="checkbox" value="Checked0">Checkbox0</label> |
12 <label><input type="checkbox" checked value="Checked1">Checkbox1</label> | 13 <label><input type="checkbox" checked value="Checked1">Checkbox1</label> |
13 <label><input type="checkbox" aria-checked="true" value="Checked2">Checkbox2</
label> | 14 <label><input type="checkbox" aria-checked="true" value="Checked2">Checkbox2</
label> |
14 <label><input type="checkbox" role="checkbox" aria-checked="true" value="Check
ed3">Checkbox3</label> | 15 <label><input type="checkbox" role="checkbox" aria-checked="true" value="Check
ed3">Checkbox3</label> |
15 <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</label
> | 16 <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</label
> |
16 | 17 |
17 <script> | 18 <script> |
18 var checkbox4 = document.getElementById('checkbox4'); | 19 var checkbox4 = document.getElementById('checkbox4'); |
19 checkbox4.indeterminate = true; | 20 checkbox4.indeterminate = true; |
20 </script> | 21 </script> |
21 </body> | 22 </body> |
22 </html> | 23 </html> |
OLD | NEW |