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

Unified Diff: third_party/WebKit/LayoutTests/loader/link-load-only-supported-stylesheet-types.html

Issue 1623403002: Remove fetching stylesheets with unsupported type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Response to review Created 4 years, 11 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/loader/link-load-only-supported-stylesheet-types.html
diff --git a/third_party/WebKit/LayoutTests/loader/link-load-only-supported-stylesheet-types.html b/third_party/WebKit/LayoutTests/loader/link-load-only-supported-stylesheet-types.html
index e72a50657e59b404d7825ad8bac616c9126eb00a..419767d029dbd3f8ec2ef05eea459d9e720b3e09 100644
--- a/third_party/WebKit/LayoutTests/loader/link-load-only-supported-stylesheet-types.html
+++ b/third_party/WebKit/LayoutTests/loader/link-load-only-supported-stylesheet-types.html
@@ -1,15 +1,11 @@
<!DOCTYPE html>
<html>
<body>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-</script>
<link rel="stylesheet" type="text/css" href="resources/blue.css">
<link rel="stylesheet" type="application/javascript" href="resources/red.css">
<link rel="stylesheet" href="resources/yellow.css">
<div style="color: green" id="blue">This text should be blue</div>
- <div style="color: green" id="red">This text should be red and trigger a deprecation warning</div>
+ <div style="color: green" id="red">This text should be green</div>
<div style="color: green" id="yellow">This text should be yellow</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698