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

Side by Side Diff: LayoutTests/http/tests/misc/script-defer-after-slow-stylesheet.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>
9 <dvi id="description"></div>
10 <div id="console"></div>
11 <script type="text/javascript">
12 description('This tests that an inline slow stylesheet executes before deferred scripts.');
13
14 var jsTestIsAsync = true;
15
16 document.addEventListener("DOMContentLoaded", function() {
17 debug('DOMContentLoaded');
18
19 finishJSTest();
20 }, false);
21 </script>
22
23 <script src="http://127.0.0.1:8000/misc/resources/script-debug-body-background.
24 js" defer="defer"></script>
25 <link rel="stylesheet" href="http://127.0.0.1:8000/misc/resources/slow-styleshe
26 et.cgi">
27 <script>
28 var successfullyParsed = true;
29 </script>
30 <script src="../../js-test-resources/js-test-post.js"></script>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698