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

Unified Diff: content/test/data/accessibility/aria-autocomplete.html

Issue 785943002: ARIA state/property aria-autocomplete should expose IA2_STATE_SUPPORTS_AUTOCOMPLETION. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations Created 6 years 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/aria-autocomplete.html
diff --git a/content/test/data/accessibility/aria-autocomplete.html b/content/test/data/accessibility/aria-autocomplete.html
index f29c191dcef0fcb0b2df759731705495a50829c7..e95a19bea35a5774dd6607da7e66b70a0985f3b1 100644
--- a/content/test/data/accessibility/aria-autocomplete.html
+++ b/content/test/data/accessibility/aria-autocomplete.html
@@ -4,8 +4,9 @@
-->
<html>
<body>
- <div aria-autocomplete="inline">autocomplete=inline</div>
- <div aria-autocomplete="list">autocomplete=list</div>
- <div aria-autocomplete="both">autocomplete=both</div>
+ <div role="combobox" aria-autocomplete="inline">autocomplete=inline</div>
+ <div role="combobox" aria-autocomplete="list">autocomplete=list</div>
+ <div role="combobox"aria-autocomplete="both">autocomplete=both</div>
+ <div role="combobox" aria-autocomplete="none">autocomplete=none</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698