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

Side by Side Diff: LayoutTests/svg/in-html/script-nested.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
« no previous file with comments | « LayoutTests/svg/in-html/script-external.html ('k') | LayoutTests/svg/in-html/script-write.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 </script> 7 </script>
8 </head> 8 </head>
9 <body> 9 <body>
10 <!-- Makes scripts nested scripts run immediately and don't hang. 10 <!-- Makes scripts nested scripts run immediately and don't hang.
11 Test passes if nested script runs before inline script finishes. --> 11 Test passes if nested script runs before inline script finishes. -->
12 <div id="console"></div> 12 <div id="console"></div>
13 <svg> 13 <svg>
14 <g> 14 <g>
15 <rect id="test"> 15 <rect id="test">
16 <script> 16 <script>
17 nested = document.createElement("script"); 17 nested = document.createElement("script");
18 nested.innerHTML = 'debug("nested script ran!");'; 18 nested.innerHTML = 'debug("nested script ran!");';
19 document.getElementsByTagName("head")[0].appendChild(nested); 19 document.getElementsByTagName("head")[0].appendChild(nested);
20 debug("inline script done!"); 20 debug("inline script done!");
21 </script> 21 </script>
22 </rect> 22 </rect>
23 </g> 23 </g>
24 </svg> 24 </svg>
25 </body> 25 </body>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/in-html/script-external.html ('k') | LayoutTests/svg/in-html/script-write.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698