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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.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 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body onload="debug('load');finishJSTest();"> 6 <body onload="debug('load');finishJSTest();">
7 Checks that async scripts fire onbeforeload immediately and that it is cancellab le. 7 Checks that async scripts fire onbeforeload immediately and that it is cancellab le.
8 <div id="console"></div> 8 <div id="console"></div>
9 <script>var jsTestIsAsync = true;</script> 9 <script>var jsTestIsAsync = true;</script>
10 <script src="resources/shouldnotexecute.js" onbeforeload="debug('cancelled onbef oreload async'); return false;" async></script> 10 <script src="resources/shouldnotexecute.js" onbeforeload="debug('cancelled onbef oreload async'); return false;" async></script>
11 <script src="resources/async.js" onbeforeload="debug('onbeforeload async'); retu rn true;" async></script> 11 <script src="resources/async.js" onbeforeload="debug('onbeforeload async'); retu rn true;" async></script>
12 <script src="data:text/javascript," onbeforeload="debug('onbeforeload external') ; return true;"></script> 12 <script src="data:text/javascript," onbeforeload="debug('onbeforeload external') ; return true;"></script>
13 </body> 13 </body>
14 </html> 14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698