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

Side by Side Diff: LayoutTests/accessibility/plugin.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 <!-- This test ensures that a plugin that is not accessible, will not appear in the AX hierachy-->
8 <object width=100 height=100>
9 <param name="movie">
10 <embed src="resources/test.swf" type="application/x-shockwave-flash">
11 </object>
12
13 <div id="result"></div>
14
15
16 <script>
17 if (window.accessibilityController) {
18 var result = document.getElementById("result");
19
20 var body = document.getElementById("body");
21 body.focus();
22 result.innerText += accessibilityController.focusedElement.attribute sOfChildren() + "\n\n";
23 }
24 </script>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/placeholder-expected.txt ('k') | LayoutTests/accessibility/radio-button-group-members.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698