1
0
Fork 0
firefox/testing/web-platform/tests/svg/scripted/script-style-attribute-csp.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
860 B
HTML

<!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>