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-radio-in-menu.html

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Test checkbox attribute in automation API, fix whitespace, remove change to third party code Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/html/input-radio-in-menu.html
diff --git a/content/test/data/accessibility/html/input-radio-in-menu.html b/content/test/data/accessibility/html/input-radio-in-menu.html
index ae6103c0b273031dc1368d8eb687952f9d4a3fa4..3b8237510679bcee33c9ed2290ce1a62408d3294 100644
--- a/content/test/data/accessibility/html/input-radio-in-menu.html
+++ b/content/test/data/accessibility/html/input-radio-in-menu.html
@@ -1,4 +1,5 @@
<!--
+@WIN-ALLOW:CHECKED*
@WIN-ALLOW:MIXED*
@WIN-ALLOW:checkable*
@WIN-ALLOW:ia2_hypertext=*
@@ -6,12 +7,14 @@
<html>
<body>
<menu type="list">
- <input type="radio" value="r1">Radio1
- <label><input type="radio" value="r2">Radio2</label>
+ <input type="radio" name="rg1" value="r0" checked>Radio0
+ <input type="radio" name="rg1" value="r1">Radio1
+ <label><input type="radio" name="rg1" value="r2">Radio2</label>
</menu>
<div role="menu">
- <label><input type="radio" value="r3">Radio3</label>
- <input type="radio" value="r4">
+ <label><input type="radio" name="rg2" value="r3">Radio3</label>
+ <input type="radio" name="rg2" value="r4">
+ <input type="radio" name="rg2" value="r5" checked>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698