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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload.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.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload.html
index e876f972a7a8c0c22cf47cfbb37b4e9528ce5c64..59f1eabfa089c716324799e45e22086813348250 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLLinkElement/link-onload.html
@@ -2,10 +2,10 @@
<html>
<head>
<script src="resources/link-load-utilities.js"></script>
-<link rel="stylesheet" href="resources/stylesheet.css" onload="testPassedAndNotifyDone('Fired Load event.')" onerror="testFailedAndNotifyDone('Fired Error event. Should have fired Load event.')">
</head>
<body>
<p>This tests that a Load event is fired at an HTML Link element once it loads a style sheet. 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="testPassedAndNotifyDone('Fired Load event.')" onerror="testFailedAndNotifyDone('Fired Error event. Should have fired Load event.')">
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698