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

Side by Side Diff: LayoutTests/http/tests/security/link-crossorigin-subresource-no-cors.html

Issue 135723008: Add CORS support for <link> elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add setCrossOriginAccessControl() helper to avoid repetition matching CORS attribute value Created 6 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <p>Test that a subresource with a crossorigin attribute does not load a cross-or igin resource that isn't CORS enabled.</p>
3 <pre></pre>
4 <script src="resources/link-crossorigin-common.js"></script>
5 <link crossorigin="anonymous" rel="subresource" href="http://localhost:8000/secu rity/resources/abe.png?1" onload="fail()" onerror="pass()">
6 <link crossorigin="use-credentials" rel="subresource" href="http://localhost:800 0/security/resources/abe.png?2" onload="fail()" onerror="pass()">
7 <script>
8 // Test that dynamically inserted <link> elements are handled the same way.
9 var link = document.createElement("link");
10 link.rel = "subresource";
11 link.crossOrigin = "anonymous";
12 link.onload = fail;
13 link.onerror = pass;
14 link.href = "http://localhost:8000/security/resources/abe.png?3";
15 document.body.appendChild(link);
16
17 link = document.createElement("link");
18 link.rel = "subresource";
19 link.crossOrigin = "use-credentials";
20 link.onload = fail;
21 link.onerror = pass;
22 link.href = "http://localhost:8000/security/resources/abe.png?4";
23 document.body.appendChild(link);
24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698