| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/connect-src-eventsource-redirect-to-blocked.sub.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/connect-src-eventsource-redirect-to-blocked.sub.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/connect-src-eventsource-redirect-to-blocked.sub.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a3ba4bad03a92a0510def74b6ebf944d7814a07a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/connect-src-eventsource-redirect-to-blocked.sub.html
|
| @@ -0,0 +1,39 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +
|
| +<head>
|
| + <!-- Programmatically converted from a WebKit Reftest, please forgive resulting idiosyncracies.-->
|
| + <title>connect-src-eventsource-redirect-to-blocked</title>
|
| + <script src="/resources/testharness.js"></script>
|
| + <script src="/resources/testharnessreport.js"></script>
|
| + <script src='../support/logTest.sub.js?logs=["PASS EventSource() did not follow the disallowed redirect.","TEST COMPLETE"]'></script>
|
| + <script src="../support/alertAssert.sub.js?alerts=[]"></script>
|
| + <!-- enforcing policy:
|
| +connect-src 'self'; script-src 'self' 'unsafe-inline';
|
| +-->
|
| + <script></script>
|
| +</head>
|
| +
|
| +<body>
|
| + <script>
|
| + var es;
|
| + try {
|
| + es = new EventSource("/common/redirect.py?location= http://www.{{host}}:{{ports[http][0]}}/content-security-policy/blink-contrib/resources/simple-event-stream");
|
| + } catch (e) {
|
| + log("FAIL " + "EventSource() should not throw an exception.");
|
| + }
|
| + es.onload = function() {
|
| + log("FAIL " + "EventSource() should fail to follow the disallowed redirect.");
|
| + log("TEST COMPLETE");
|
| + };
|
| + es.onerror = function() {
|
| + log("PASS " + "EventSource() did not follow the disallowed redirect.");
|
| + log("TEST COMPLETE");
|
| + };
|
| +
|
| + </script>
|
| + <div id="log"></div>
|
| + <script async defer src="../support/checkReport.sub.js?reportExists=true&reportField=violated-directive&reportValue=connect-src%20'self'/security/contentSecurityPolicy/resources/redir.php"></script>
|
| +</body>
|
| +
|
| +</html>
|
|
|