https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 61d6fc4fc7e54a79e11b0fa2eab98cf7504e7cd0 authored by Anne van Kesteren on 03 April 2018, 13:43:56 UTC
fix earlier test; add two more per feedback
Tip revision: 61d6fc4
reporting-api-doesnt-send-reports-without-violation.https.sub.html
<!DOCTYPE HTML>
<html>
<head>
  <title>Test that reports using the report-api service are not sent when there's not validation</title>
  <script src='/resources/testharness.js'></script>
  <script src='/resources/testharnessreport.js'></script>
</head>
<body>
  <script>
    var t1 = async_test("Test that image loads");
    window.addEventListener("securitypolicyviolation",
         t1.unreached_func("Should not have triggered a violation event"));
  </script>
  <img src='/content-security-policy/support/pass.png'
       onload='t1.done();'
       onerror='t1.unreached_func("The image should have loaded");'>

  <script async defer src='../support/checkReport.sub.js?reportExists=false'></script>
</body>
</html>
back to top