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

Side by Side Diff: LayoutTests/http/tests/misc/script-defer.html

Issue 3776004: Revert 66670 - 2010-09-01 Tony Gentilcore <tonyg@chromium.org>... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 2 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <link rel="stylesheet" href="../../js-test-resources/js-test-style.css">
6 <script src="../../js-test-resources/js-test-pre.js"></script>
7 </head>
8 <body onload="debug('load')">
9 This tests for proper execution order of scripts with the defer attribute <a hre f="https://bugs.webkit.org/show_bug.cgi?id=20710">https://bugs.webkit.org/show_b ug.cgi?id=20710</a>.
10 <div id="console"></div>
11
12 <script type="text/javascript">
13 document.addEventListener("DOMContentLoaded", function() {
14 debug('DOMContentLoaded');
15 }, false);
16 </script>
17 <script src="http://127.0.0.1:8000/misc/resources/slow-defer-script.cgi" defer=" DEFER"></script>
18 <script src="http://127.0.0.1:8000/misc/resources/defer-script.js" defer="DEFER" ></script>
19 <script src="http://127.0.0.1:8000/misc/resources/external-script.js"></script>
20 <script>
21 debug("inline");
22 </script>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698