diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html | |
parent | Initial commit. (diff) | |
download | firefox-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/svg/scripted/script-style-attribute-csp.html')
-rw-r--r-- | testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html b/testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html new file mode 100644 index 0000000000..a70138d98a --- /dev/null +++ b/testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html @@ -0,0 +1,22 @@ +<!doctype html> +<meta charset="UTF-8"> +<!-- + Allow scripts, but don't allow inline styles. + This does allow scripts to *set* inline styles via the .style attribute. +--> +<title>Setting style setters via script for an SVG element outside of the document should work</title> +<meta http-equiv="Content-Security-Policy" content=" + script-src 'unsafe-inline'; + style-src 'none'; +"> +<link rel="match" href="script-style-attribute-csp-ref.html"> +<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> +<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1494356"> +<body> +<script> + const element = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); + element.style.width = '100px'; + element.style.height = '100px'; + element.style.backgroundColor = 'green'; + document.body.appendChild(element); +</script> |