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

Unified Diff: content/test/data/accessibility/event/aria-combo-box-expand.html

Issue 2024053003: Revert of Uses the activedescendant_changed event received from Blink to fire the right focus event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/aria-combo-box-expand.html
diff --git a/content/test/data/accessibility/event/aria-combo-box-expand.html b/content/test/data/accessibility/event/aria-combo-box-expand.html
deleted file mode 100644
index 894432f4988a10e65fbd9aa94eff7d48817f7f48..0000000000000000000000000000000000000000
--- a/content/test/data/accessibility/event/aria-combo-box-expand.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
-@MAC-DENY:AXLayoutComplete*
--->
-<!DOCTYPE html>
-<html>
-<body>
-<input role="combobox" type="search" aria-expanded="false" aria-haspopup="true"
- aria-autocomplete="list" aria-activedescendant="" aria-owns="list">
-<ul id="list" role="listbox">
-<li id="option1" role="option">Apple</li>
-<li id="option2" role="option">Orange</li>
-<li id="option3" role="option">Banana</li>
-</ul>
-<script>
- document.querySelector('input').focus();
- function go() {
- var combo_box = document.querySelector('input');
- combo_box.setAttribute('aria-expanded', 'true');
- combo_box.setAttribute('aria-activedescendant', 'option1');
- }
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698