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

Side by Side Diff: LayoutTests/http/tests/security/resources/link-crossorigin-common.js

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, 11 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 // Tiny test rig for all security/link-crossorigin-*.html tests,
2 // which exercise <link> + CORS variations.
3 if (window.testRunner) {
4 testRunner.dumpAsText();
5 testRunner.waitUntilDone();
6 }
7
8 // The common case is to have four sub-tests. To override
9 // for a test, assign window.test_count.
10 var default_test_count = 4;
11
12 var event_count = 0;
13 test_count = window.test_count || default_test_count;
14
15 function finish(pass, msg) {
16 var out = document.querySelector("pre");
17 var txt = pass ? "PASS" : "FAIL";
18 if (msg) txt += ": " + msg;
19 out.appendChild(document.createTextNode(txt));
20 out.appendChild(document.createElement("br"));
21 if (++event_count >= test_count && window.testRunner)
22 testRunner.notifyDone();
23 }
24
25 function pass() { finish(true); }
26 function fail() { finish(false); }
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/security/resources/green-background-allow-star.php ('k') | Source/core/dom/ScriptLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698