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

Unified Diff: content/test/data/accessibility/html/input-radio-in-menu.html

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 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 5648220637a15098c1d61fd06725bc6d882daed7..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,5 +1,5 @@
<!--
-@MAC-ALLOW:AXLinkedUIElements*
+@WIN-ALLOW:CHECKED*
@WIN-ALLOW:MIXED*
@WIN-ALLOW:checkable*
@WIN-ALLOW:ia2_hypertext=*
@@ -7,12 +7,14 @@
<html>
<body>
<menu type="list">
- <input type="radio" value="r1">Radio1
- <label><input type="radio" name="r" 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" name="r" 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