tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test-cspro.html (658B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>Test for Bug 1010953 - Verify that CSP and CSPRO log different console
      6 messages.</title>
      7 <!-- Any copyright is dedicated to the Public Domain.
      8     http://creativecommons.org/publicdomain/zero/1.0/ -->
      9 </head>
     10 <body>
     11 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1010953">Mozilla Bug 1010953</a>
     12 
     13 
     14 <!-- this script file allowed by the CSP header (but not by the report-only header) -->
     15 <script src="http://some.example.com/cspro.js"></script>
     16 
     17 <!-- this image allowed only be the CSP report-only header. -->
     18 <img src="http://some.example.com/cspro.png">
     19 </body>
     20 </html>