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> |