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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e1313e19911ca95134f8f9f1dd19b08b32acfb0e |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/link-crossorigin-stylesheet-use-credentials.html |
@@ -0,0 +1,24 @@ |
+<!DOCTYPE HTML> |
+<p>Test that a linked stylesheet with a crossorigin=use-credentials attributes loads expected CORS enabled resources.</p> |
+<pre></pre> |
+<script src="resources/link-crossorigin-common.js"></script> |
+<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); |
+ |
+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); |
+</script> |