OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>Style element has error on bad style nonce</title> |
| 5 <meta http-equiv="Content-Security-Policy" content="style-src 'self' 'unsafe
-inline'"> |
| 6 <script src="/resources/testharness.js"></script> |
| 7 <script src="/resources/testharnessreport.js"></script> |
| 8 <script> |
| 9 function styleError() { |
| 10 var color = window.getComputedStyle(document.querySelector('p')).col
or; |
| 11 assert_equals(color, "rgb(0, 128, 0)", "The color of the paragraph i
s green."); |
| 12 done(); |
| 13 } |
| 14 function styleLoad() { |
| 15 assert_unreached("Style sheet should not load."); |
| 16 } |
| 17 </script> |
| 18 <style>p { color: green; }</style> |
| 19 </head> |
| 20 <p>A test paragraph</p> |
| 21 <link rel="stylesheet" onload="styleLoad();" onerror="styleError();" href="h
ttp://localhost:8000/security/contentSecurityPolicy/resources/style-set-red.css"
></link> |
| 22 </html> |
OLD | NEW |