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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/input-checkbox.html
diff --git a/content/test/data/accessibility/html/input-checkbox.html b/content/test/data/accessibility/html/input-checkbox.html
index fffb8f4316c0b21652d5768456617f581c3e1e92..86a5a4096c69f65d6b035ee69e742b60cc36e5cb 100644
--- a/content/test/data/accessibility/html/input-checkbox.html
+++ b/content/test/data/accessibility/html/input-checkbox.html
@@ -4,12 +4,19 @@
@WIN-ALLOW:CHECKED*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:IA2_STATE_*
+@WIN-ALLOW:MIXED
@WIN-ALLOW:xml-roles:*
-->
<html>
<body>
- <label><input type="checkbox" checked value="checked1">CheckBox1</label>
- <label><input type="checkbox" aria-checked="true" value="checked2">CheckBox2</label>
- <label><input type="checkbox" role="checkbox" aria-checked="true" value="checked3">CheckBox3</label>
+ <label><input type="checkbox" checked value="Checked1">Checkbox1</label>
+ <label><input type="checkbox" aria-checked="true" value="Checked2">Checkbox2</label>
+ <label><input type="checkbox" role="checkbox" aria-checked="true" value="Checked3">Checkbox3</label>
+ <label><input type="checkbox" id="checkbox4" value="Checked4">Checkbox4</label>
+
+ <script>
+ var checkbox4 = document.getElementById('checkbox4');
+ checkbox4.indeterminate = true;
+ </script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698