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:xml-roles:* | 8 @WIN-ALLOW:xml-roles:* |
8 --> | 9 --> |
9 <html> | 10 <html> |
10 <body> | 11 <body> |
11 <label><input type="checkbox" checked value="checked1">CheckBox1</label> | 12 <label><input type="checkbox" checked value="Checked1">Checkbox1</label> |
12 <label><input type="checkbox" aria-checked="true" value="checked2">CheckBox2</
label> | 13 <label><input type="checkbox" aria-checked="true" value="Checked2">Checkbox2</
label> |
13 <label><input type="checkbox" role="checkbox" aria-checked="true" value="check
ed3">CheckBox3</label> | 14 <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 |
| 17 <script> |
| 18 var checkbox4 = document.getElementById('checkbox4'); |
| 19 checkbox4.indeterminate = true; |
| 20 </script> |
14 </body> | 21 </body> |
15 </html> | 22 </html> |
OLD | NEW |