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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html

Issue 1772853002: Block the HTML parser on external stylesheets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplified parser blocking logic Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html
index 417111d70cf338882966fe669d64fb1605c8304b..b2407e366f8b113835a28ee4b5894a4ca71d0eff 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load.html
@@ -17,10 +17,10 @@ function didReceiveLoadEvent(elementName)
}
}
</script>
-<link rel="stylesheet" href="resources/stylesheet.css" onload="didReceiveLoadEvent('link')">
</head>
<body onload="didReceiveLoadEvent('body')">
<p>This tests that a Load event for an HTML Link element comes before the Load event for the window. This test PASSED if you see the word PASS below. Otherwise, it FAILED.</p>
<pre id="console"></pre>
+<link rel="stylesheet" href="resources/stylesheet.css" onload="didReceiveLoadEvent('link')">
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698