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

Side by Side Diff: LayoutTests/accessibility/transformed-element.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
6 </script>
7 <body id="body">
8 <!-- This test ensures that AX rectangles take transforms into account-->
9
10 <div id="hiddenDiv" style="-webkit-transform: rotate(20deg); -webkit-transfo rm-origin: left bottom; padding-left: 100px; width: 200px; border: 1px solid bla ck;">
11 <a href="#b">hello</a>
12 </div>
13
14 <div id="result"></div>
15
16 <script>
17 if (window.accessibilityController) {
18 var result = document.getElementById("result");
19
20 var body = document.getElementById("body");
21 body.focus();
22 var div = accessibilityController.focusedElement.childAtIndex(0);
23
24 result.innerText += div.allAttributes();
25 }
26 </script>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/table-with-aria-role.html ('k') | LayoutTests/accessibility/transformed-element-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698