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

Unified Diff: content/test/data/accessibility/event/menulist-next.html

Issue 1057083002: Fix menu list and list box screen reader accessibility. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac test Created 5 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/event/menulist-next.html
diff --git a/content/test/data/accessibility/event/menulist-next.html b/content/test/data/accessibility/event/menulist-next.html
new file mode 100644
index 0000000000000000000000000000000000000000..98d7f3329ab7b025287718150dd3a9841955b56e
--- /dev/null
+++ b/content/test/data/accessibility/event/menulist-next.html
@@ -0,0 +1,19 @@
+<!--
+@MAC-DENY:AXLayoutComplete*
+-->
+<!DOCTYPE html>
+<html>
+<body>
+<select>
+ <option selected>Apple</option>
+ <option>Orange</option>
+ <option>Banana</option>
+</select>
+<script>
+ document.querySelector('select').focus();
+ function go() {
+ document.querySelector('select').selectedIndex = 1;
+ }
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698