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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body>
3 <ul aria-owns="two">
4 <li>
5 <div>One</div>
6 </li>
7 </ul>
8
9 <div>
10 <li id="two">
11 <div>Two</div>
12 </li>
13 </div>
14
15 <div>
16 <li id="three">
17 <div>Three</div>
18 </li>
19 </div>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698