Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/test/data/accessibility/html/input-checkbox.html

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698