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

Unified 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: Fixed a few test expectations. 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/input-checkbox-in-menu.html
diff --git a/content/test/data/accessibility/html/input-checkbox-in-menu.html b/content/test/data/accessibility/html/input-checkbox-in-menu.html
index 436e13397364b2bde4758780b4d3e0f5ec14bc39..f89cffe3ac19f80861b2d52ed53a5dc584cef913 100644
--- a/content/test/data/accessibility/html/input-checkbox-in-menu.html
+++ b/content/test/data/accessibility/html/input-checkbox-in-menu.html
@@ -1,16 +1,25 @@
<!--
+@WIN-ALLOW:CHECKED
@WIN-ALLOW:checkable*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:IA2_STATE_CHECKABLE*
+@WIN-ALLOW:MIXED
@WIN-ALLOW:xml-roles:*
-->
<html>
<body>
-<menu type="list">
- <label><input type="checkbox" value="checked1">CheckBox1</label>
-</menu>
-<div role="menu">
- <label><input type="checkbox" value="checked2">CheckBox2</label>
-</div>
+ <menu type="list">
+ <label><input type="checkbox" value="Checked1">Checkbox1</label>
+ <label><input type="checkbox" checked value="Checked2">Checkbox2</label>
+ </menu>
+ <div role="menu">
+ <label><input type="checkbox" checked value="Checked3">Checkbox3</label>
+ <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</label>
+ </div>
+
+ <script>
+ var checkbox4 = document.getElementById('checkbox4');
+ checkbox4.indeterminate = true;
+ </script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698