summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html')
-rw-r--r--testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html b/testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html
new file mode 100644
index 0000000000..90ec73341b
--- /dev/null
+++ b/testing/web-platform/tests/content-security-policy/style-src/inline-style-blocked.sub.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta http-equiv="Content-Security-Policy" content="style-src 'none'; script-src 'self' 'unsafe-inline'">
+ <title>inline-style-blocked</title>
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <script>
+ async_test(t => {
+ window.addEventListener('securitypolicyviolation', t.step_func(e => {
+ if (e.blockedURI !== 'inline') return;
+ assert_equals(e.violatedDirective, 'style-src-elem');
+ t.done();
+ }));
+ }, "Triggers securitypolicyviolation.");
+ </script>
+ <style>
+ .target {
+ background-color: blue;
+ }
+ </style>
+</head>
+
+<body>
+ <script>
+ test(t => {
+ assert_equals(document.styleSheets.length, 0);
+ }, "Inline style element is blocked by CSP.");
+ </script>
+</body>
+
+</html>