Index: LayoutTests/http/tests/security/contentSecurityPolicy/1.1/stylehash-basic-blocked-error-event.html |
diff --git a/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/stylehash-basic-blocked-error-event.html b/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/stylehash-basic-blocked-error-event.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..893518e4f8358a5dac609aeb04b12f8415001309 |
--- /dev/null |
+++ b/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/stylehash-basic-blocked-error-event.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+ <title>Style element has error on bad style hash</title> |
+ <meta http-equiv="Content-Security-Policy" content="style-src 'sha1-pfeR5wMA6np45oqDTP6Pj3tLpJo='"> |
+ <script src="/resources/testharness.js"></script> |
+ <script src="/resources/testharnessreport.js"></script> |
+ <script> |
+ function styleError() { |
+ var color = window.getComputedStyle(document.querySelector('p')).color; |
+ assert_equals(color, "rgb(0, 128, 0)", "The color of the paragraph is still green."); |
+ done(); |
+ } |
+ </script> |
+ <style>p { color: green; }</style> |
+ <style onerror="styleError();">p { color: red; }</style> |
+</head> |
+ <p>A test paragraph</p> |
+</html> |