Chromium Code Reviews| 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> |