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

Unified Diff: LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.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-use-credentials.html
diff --git a/LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.html b/LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.html
index e1313e19911ca95134f8f9f1dd19b08b32acfb0e..ed6305c43b47acd3777cea8e0b558afd866ecf39 100644
--- a/LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.html
+++ b/LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.html
@@ -1,24 +1,36 @@
<!DOCTYPE HTML>
-<p>Test that a linked stylesheet with a crossorigin=use-credentials attributes loads expected CORS enabled resources.</p>
-<pre></pre>
+<html>
+<head>
+<script src="/js-test-resources/js-test.js"></script>
+<script>
+description("Test that a linked stylesheet with a crossorigin=use-credentials attributes loads expected CORS enabled resources.")
+</script>
<script src="resources/link-crossorigin-common.js"></script>
+</head>
+<body>
<link crossorigin="use-credentials" rel="stylesheet" href="http://localhost:8080/security/resources/green-background-allow-credentials.php" onload="pass()" onerror="fail()">
<link crossorigin="use-credentials" rel="stylesheet" href="http://localhost:8080/security/resources/green-background-allow-star.php" onload="fail()" onerror="pass()">
<script>
-// Test that dynamically inserted <link> elements are handled the same way.
-var link = document.createElement("link");
-link.rel = "stylesheet";
-link.crossOrigin = "use-credentials";
-link.onload = pass;
-link.onerror = fail;
-link.href = "http://localhost:8080/security/resources/green-background-allow-credentials.php";
-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 = "use-credentials";
+ link.onload = pass;
+ link.onerror = fail;
+ link.href = "http://localhost:8080/security/resources/green-background-allow-credentials.php";
+ 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-allow-star.php";
-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-allow-star.php";
+ document.body.appendChild(link);
+}
+window.onload = runTest;
</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698