Chromium Code Reviews| Index: content/test/data/accessibility/aria/aria-owns-list.html |
| diff --git a/content/test/data/accessibility/aria/aria-owns-list.html b/content/test/data/accessibility/aria/aria-owns-list.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8112c65017239b91bd02c68ce8e22c35abb6084e |
| --- /dev/null |
| +++ b/content/test/data/accessibility/aria/aria-owns-list.html |
| @@ -0,0 +1,16 @@ |
| +<!-- |
| +@MAC-ALLOW:size=(400* |
| +--> |
| +<html> |
| + <body> |
| + <style> |
| + [role="listitem"] { |
| + width: 400px; |
| + height: 200px; |
| + } |
| + </style> |
| + <div role="list" aria-owns="one two"></div> |
| + <div id="one" role="listitem">One</div> |
| + <div id="two" role="listitem">Two</div> |
| + </body> |
| +</html> |