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

Side by Side Diff: LayoutTests/accessibility/deleting-iframe-destroys-axcache.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../fast/js/resources/js-test-pre.js"></script> 3 <script src="../resources/js-test.js"></script>
4 4
5 <script> 5 <script>
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 8
9 function buildAccessibilityTree(accessibilityObject, indent) { 9 function buildAccessibilityTree(accessibilityObject, indent) {
10 var str = ""; 10 var str = "";
11 for (var i = 0; i < indent; i++) 11 for (var i = 0; i < indent; i++)
12 str += " "; 12 str += " ";
13 str += accessibilityObject.role; 13 str += accessibilityObject.role;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 <p>After</p> 97 <p>After</p>
98 98
99 <p>End of test</p> 99 <p>End of test</p>
100 100
101 <p id="description"></p> 101 <p id="description"></p>
102 <div id="console"></div> 102 <div id="console"></div>
103 103
104 </body> 104 </body>
105 </html> 105 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/css-generated-content.html ('k') | LayoutTests/accessibility/disabled-controls-not-focusable.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698