https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f6787be668af17ecfe796e15c6cf5a7e3bc656af authored by Eric Willigers on 13 April 2018, 15:13:19 UTC
Accept variation in serialization of 'background'
Tip revision: f6787be
icon-allowed.sub.html
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Security-Policy" content="img-src 'self'; script-src 'self' 'unsafe-inline'; connect-src 'self';">
  <script src='/resources/testharness.js'></script>
  <script src='/resources/testharnessreport.js'></script>
</head>
<body>
  <p>Use callbacks to show that favicons are loaded as allowed by CSP when link tags are dynamically added to the page.</p>
  <script>
    var t = async_test("Test that image loads");
    window.addEventListener("securitypolicyviolation", t.unreached_func("Should not have triggered any violation events"));
    
    function createLink(rel, src) {
        var link = document.createElement('link');
        link.rel = rel;
        link.href = src;
        link.onload = t.done();
        link.onerror = t.unreached_func('The image should have loaded');
        document.body.appendChild(link);
    }
    window.addEventListener('DOMContentLoaded', function() {
        createLink('icon', '../support/pass.png');
    });

  </script>
</body>
</html>
back to top