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

Unified Diff: content/test/data/accessibility/list.html

Issue 665583002: Add AX TC for LI element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Add AX TC for li element Created 6 years, 2 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/list.html
diff --git a/content/test/data/accessibility/list.html b/content/test/data/accessibility/list.html
new file mode 100644
index 0000000000000000000000000000000000000000..230103aaa5deed19829430078ef8b36b4823ad0a
--- /dev/null
+++ b/content/test/data/accessibility/list.html
@@ -0,0 +1,22 @@
+<!--
+@MAC-ALLOW:AXSubrole*
+-->
+<html>
+ <style type="text/css">
+ .inlineList li {
+ display: inline;
+ }
+ </style>
+ <body>
+ <ul>
+ <li>tic</li>
+ <li>tac</li>
+ <li>toe</li>
+ </ul>
+ <ul class="inlineList">
+ <li>tic</li>
+ <li>tac</li>
+ <li>toe</li>
+ </ul>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698