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

Side by Side Diff: LayoutTests/accessibility/table-with-aria-role.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <body id="body">
7
8 <table border=1 role="button">
9 <tr><td>test</td><td>test</td><td>test</td></tr>
10 <tr><td>test</td><td>test</td><td>test</td></tr>
11 </table>
12
13 <table border=1 role="menu">
14 <tr><td>test</td><td>test</td><td>test</td></tr>
15 <tr><td>test</td><td>test</td><td>test</td></tr>
16 </table>
17
18 <div id="result"></div>
19
20 <script>
21 if (window.accessibilityController) {
22 var body = document.getElementById("body");
23 body.focus();
24 result.innerText += accessibilityController.focusedElement.attribute sOfChildren();
25 }
26 </script>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/table-sections.html ('k') | LayoutTests/accessibility/transformed-element.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698