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

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

Issue 1488893002: Stops using SYSTEM_STATE_INDETERMINATE as it makes radio buttons appear to have a mixed state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added test for menu checkboxes and removed indeterminate state. 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 @WIN-ALLOW:checkable* 2 @WIN-ALLOW:checkable*
3 @WIN-ALLOW:ia2_hypertext=* 3 @WIN-ALLOW:ia2_hypertext=*
4 @WIN-ALLOW:IA2_STATE_CHECKABLE* 4 @WIN-ALLOW:IA2_STATE_CHECKABLE*
5 @WIN-ALLOW:MIXED
5 @WIN-ALLOW:xml-roles:* 6 @WIN-ALLOW:xml-roles:*
6 --> 7 -->
7 <html> 8 <html>
8 <body> 9 <body>
9 <menu type="list"> 10 <menu type="list">
10 <label><input type="checkbox" value="checked1">CheckBox1</label> 11 <label><input type="checkbox" value="Checked1">Checkbox1</label>
11 </menu> 12 <label><input type="checkbox" checked value="Checked2">Checkbox2</label>
12 <div role="menu"> 13 </menu>
13 <label><input type="checkbox" value="checked2">CheckBox2</label> 14 <div role="menu">
14 </div> 15 <label><input type="checkbox" checked value="Checked3">Checkbox3</label>
16 <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</lab el>
17 </div>
18
19 <script>
20 var checkbox4 = document.getElementById('checkbox4');
21 checkbox4.indeterminate = true;
22 </script>
15 </body> 23 </body>
16 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698