https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 889dffdab866c3c61e6178681497d2cbd953ac1c authored by Philip Jägenstedt on 21 December 2018, 14:58:28 UTC
[Azure Pipelines] Run all `./wpt run` tests on Windows 10 Insider Preview
Tip revision: 889dffd
script-src-strict_dynamic_discard_whitelist.html
<!DOCTYPE HTML>
<html>

<head>
    <title>Whitelists are discarded with `strict-dynamic` in the script-src directive.</title>
    <script src='/resources/testharness.js' nonce='dummy'></script>
    <script src='/resources/testharnessreport.js' nonce='dummy'></script>

    <!-- CSP served: script-src 'self' 'strict-dynamic' 'nonce-dummy' -->
</head>

<body>
    <h1>Whitelists are discarded with `strict-dynamic` in the script-src directive.</h1>
    <div id='log'></div>

    <script nonce='dummy'>
        async_test(function(t) {
            window.addEventListener('message', t.step_func(function(e) {
                if (e.data === 'whitelistedScript') {
                    assert_unreached('Whitelisted script without a correct nonce is not allowed with `strict-dynamic`.');
                }
            }));
            window.addEventListener('securitypolicyviolation', t.step_func_done(function(e) {
                assert_equals(e.effectiveDirective, 'script-src-elem');
            }));
        }, 'Whitelisted script without a correct nonce is not allowed with `strict-dynamic`.');
    </script>
    <script id='whitelistedScript' src='simpleSourcedScript.js'></script>

</body>

</html>
back to top