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

Unified Diff: LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html

Issue 399653002: Rework CORS <link rel=stylesheet> tests as js-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move up window.test_count assignment Created 6 years, 5 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: LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html
diff --git a/LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html b/LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html
index c17f2239870bce191f010496201061b933c0bac9..ab7a2ad9fa4d94980bba82ba0f074018d4e90940 100644
--- a/LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html
+++ b/LayoutTests/http/tests/security/link-crossorigin-stylesheet-no-cors.html
@@ -1,8 +1,12 @@
<!DOCTYPE HTML>
-<p>Test that a linked stylesheet with a crossorigin attribute does not load a cross-origin resource that isn't CORS enabled.</p>
-<pre></pre>
+<html>
+<head>
+<script src="/js-test-resources/js-test.js"></script>
<script>window.test_count = 8;</script>
<script src="resources/link-crossorigin-common.js"></script>
+</head>
+<body>
+<p>Test that a linked stylesheet with a crossorigin attribute does not load a cross-origin resource that isn't CORS enabled.</p>
<link crossorigin="anonymous" rel="stylesheet" href="http://localhost:8080/security/resources/green-background.css?1" onload="fail()" onerror="pass()">
<link crossorigin="use-credentials" rel="stylesheet" href="http://localhost:8080/security/resources/green-background.css?2" onload="fail()" onerror="pass()">
<!-- Check that from-cache loads are also failing (and does not generate separate loads.) -->
@@ -12,20 +16,26 @@
<link crossorigin="anonymous" rel="stylesheet" href="resources/green-background.css?3" onload="pass()" onerror="fail()">
<link crossorigin="use-credentials" rel="stylesheet" href="resources/green-background.css?4" onload="pass()" onerror="fail()">
<script>
-// Test that dynamically inserted <link> elements are handled the same way.
-var link = document.createElement("link");
-link.rel = "stylesheet";
-link.crossOrigin = "anonymous";
-link.onload = fail;
-link.onerror = pass;
-link.href = "http://localhost:8080/security/resources/green-background.css?8";
-document.body.appendChild(link);
+function runTest()
+{
+ // Test that dynamically inserted <link> elements are handled the same way.
+ var link = document.createElement("link");
+ link.rel = "stylesheet";
+ link.crossOrigin = "anonymous";
+ link.onload = fail;
+ link.onerror = pass;
+ link.href = "http://localhost:8080/security/resources/green-background.css?8";
+ document.body.appendChild(link);
-link = document.createElement("link");
-link.rel = "stylesheet";
-link.crossOrigin = "use-credentials";
-link.onload = fail;
-link.onerror = pass;
-link.href = "http://localhost:8080/security/resources/green-background.css?9";
-document.body.appendChild(link);
+ link = document.createElement("link");
+ link.rel = "stylesheet";
+ link.crossOrigin = "use-credentials";
+ link.onload = fail;
+ link.onerror = pass;
+ link.href = "http://localhost:8080/security/resources/green-background.css?9";
+ document.body.appendChild(link);
+}
+window.onload = runTest;
</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698