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

Unified Diff: content/test/data/accessibility/event/listbox-focus.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/listbox-focus.html
diff --git a/content/test/data/accessibility/event/listbox-focus.html b/content/test/data/accessibility/event/listbox-focus.html
new file mode 100644
index 0000000000000000000000000000000000000000..8ed51e5669fc8716da60668e694bac20b7ec3c47
--- /dev/null
+++ b/content/test/data/accessibility/event/listbox-focus.html
@@ -0,0 +1,18 @@
+<!--
+@MAC-DENY:AXLayoutComplete*
+-->
+<!DOCTYPE html>
+<html>
+<body>
+<select size=3>
+ <option selected>Apple</option>
+ <option>Orange</option>
+ <option>Banana</option>
+</select>
+<script>
+ function go() {
+ document.querySelector('select').focus();
+ }
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698