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

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

Issue 1195353002: Add aria-owns DumpAccessibilityTree test and make it pass. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add link to test from code change Created 5 years, 6 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/aria/aria-owns.html
diff --git a/content/test/data/accessibility/aria/aria-owns.html b/content/test/data/accessibility/aria/aria-owns.html
new file mode 100644
index 0000000000000000000000000000000000000000..03c494e9e3483940f1138bcaa087441c7f86c944
--- /dev/null
+++ b/content/test/data/accessibility/aria/aria-owns.html
@@ -0,0 +1,21 @@
+<html>
+ <body>
+ <ul aria-owns="two">
+ <li>
+ <div>One</div>
+ </li>
+ </ul>
+
+ <div>
+ <li id="two">
+ <div>Two</div>
+ </li>
+ </div>
+
+ <div>
+ <li id="three">
+ <div>Three</div>
+ </li>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698