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

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

Issue 1511603002: Merge to m48: Stops using SYSTEM_STATE_INDETERMINATE as it makes radio buttons appear to have a mix… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
Patch Set: Created 5 years 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: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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698