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

Side by Side Diff: LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 months 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 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body onload="debug('load');finishJSTest();">
7 Checks that async scripts fire onbeforeload immediately and that it is cancellab le.
8 <div id="console"></div>
9 <script>var jsTestIsAsync = true;</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>
12 <script src="data:text/javascript," onbeforeload="debug('onbeforeload external') ; return true;"></script>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698