Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / link-crossorigin-stylesheet-anonymous.html
1 <!DOCTYPE HTML>
2 <p>Test that a linked stylesheet with a crossorigin=anonymous attribute loads a CORS enabled resource.</p>
3 <pre></pre>
4 <script src="resources/link-crossorigin-common.js"></script>
5 <link crossorigin="anonymous" rel="stylesheet" href="http://localhost:8080/security/resources/green-background-allow-star.php" onload="pass()" onerror="fail()">
6 <link crossorigin="anonymous" rel="stylesheet" href="http://localhost:8080/security/resources/green-background-allow-credentials.php" onload="pass()" onerror="fail()">
7 <script>
8 // Test that dynamically inserted <link> elements are handled the same way.
9 var link = document.createElement("link");
10 link.rel = "stylesheet";
11 link.crossOrigin = "anonymous";
12 link.onload = pass;
13 link.onerror = fail;
14 link.href = "http://localhost:8080/security/resources/green-background-allow-star.php";
15 document.body.appendChild(link);
16
17 link = document.createElement("link");
18 link.rel = "stylesheet";
19 link.crossOrigin = "use-credentials";
20 link.onload = pass;
21 link.onerror = fail;
22 link.href = "http://localhost:8080/security/resources/green-background-allow-credentials.php";
23 document.body.appendChild(link);
24 </script>