https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 92c857093784ffe21babd2d64564a9cba491c8b7 authored by Yuki Shiino on 26 December 2018, 13:48:42 UTC
v8binding: Implement timers with IDL callback function of type Function
Tip revision: 92c8570
script-src-1_3.html
<!DOCTYPE HTML>
<html>
<head>
    <title>Positive test case: Inline script should run 'unsafe-inline' script-src directive.</title>
    <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';">
    <script src='/resources/testharness.js'></script>
    <script src='/resources/testharnessreport.js'></script>
    <script src='inlineSuccessTest.js'></script>
</head>
<body>
    <h1>Positive test case: Inline script should run 'unsafe-inline' script-src directive.</h1>
    <div id='log'></div>

    <script>
      inlineRan = true;
    </script>
</body>
</html>
back to top