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

Unified Diff: LayoutTests/http/tests/security/script-crossorigin-fails-cross-origin-2.xhtml

Issue 47923008: Block execution of failed 'crossorigin' <script>s. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 7 years, 1 month 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/script-crossorigin-fails-cross-origin-2.xhtml
diff --git a/LayoutTests/http/tests/security/script-crossorigin-fails-cross-origin-2.xhtml b/LayoutTests/http/tests/security/script-crossorigin-fails-cross-origin-2.xhtml
new file mode 100644
index 0000000000000000000000000000000000000000..7da250f1aa6f2913231ea4f906e00967f56d6f8e
--- /dev/null
+++ b/LayoutTests/http/tests/security/script-crossorigin-fails-cross-origin-2.xhtml
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<html xmlns='http://www.w3.org/1999/xhtml'>
+<head>
+<title>crossorigin and XHTML</title>
+</head>
+<body>
+<p>In an XHTML document, test that a script element with a crossorigin attribute does not load a cross-origin script when the resource sharing check fails on the response.</p>
+<pre></pre>
+<script>
+if (window.testRunner) {
+ testRunner.dumpAsText();
+ testRunner.waitUntilDone();
+}
+
+var result = "PASS";
+
+function must_not_fire() {
+ result = "FAIL";
+}
+
+function loaded() {
+ document.querySelector("pre").innerHTML = result;
+ if (window.testRunner)
+ testRunner.notifyDone();
+}
+</script>
+<!-- This script should _not_ load, nor fire onload. -->
+<script crossorigin="anonymous" src="http://localhost:8000/security/resources/cors-script.php?cors=false&amp;value=FAIL" onload="must_not_fire()"></script>
+<script><![CDATA[loaded();]]></script>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698