https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5e8eef740f9a79e5626fa41ef67a4b6284a6490b authored by Kouhei Ueno on 06 October 2017, 06:35:33 UTC
set{Timeout,Interval} pass along url, nonce, and parser state as specified.
Tip revision: 5e8eef7
connect-src-beacon-blocked.sub.html
<!DOCTYPE html>
<meta http-equiv="Content-Security-Policy" content="connect-src 'self'">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
    async_test(t => {
      document.addEventListener("securitypolicyviolation", t.step_func_done(e => {
        if (e.blockedURI != "http://{{domains[www]}}:{{ports[http][0]}}/common/text-plain.txt")
            return;

        assert_equals(e.violatedDirective, "connect-src");
      }));

      assert_true(navigator.sendBeacon("http://{{domains[www]}}:{{ports[http][0]}}/common/text-plain.txt"));
    }, "sendBeacon should not throw.");

    async_test(t => {
      document.addEventListener("securitypolicyviolation", t.step_func_done(e => {
        if (e.blockedURI != "http://{{domains[www]}}:{{ports[http][0]}}/common/text-plain.txt")
            return;

        assert_equals(e.violatedDirective, "connect-src");
      }));

      assert_true(navigator.sendBeacon("common/redirect-opt-in.py?status=307&location=http://{{domains[www]}}:{{ports[http][0]}}/common/text-plain.txt"));
    }, "redirect case");
</script>
back to top