1
0
Fork 0
firefox/testing/web-platform/tests/svg/render/foreignObject-in-non-rendered-getComputedStyle.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

20 lines
852 B
HTML

<!doctype html>
<title>SVG Test: Resolved width inside non-rendered foreignObject</title>
<link rel="help" href="https://www.w3.org/TR/SVG2/render.html#Rendered-vs-NonRendered">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<svg>
<radialGradient>
<pattern>
<foreignObject id="foreignObject">
<div id="foRoot"></div>
</foreignObject>
</pattern>
</radialGradient>
</svg>
<script>
test(() => {
assert_equals(getComputedStyle(foreignObject).width, "auto", "Non-rendered foreignObject should have width computed to 'auto'.");
assert_equals(getComputedStyle(foRoot).width, "auto", "Non-rendered block inside foreignObject should have width computed to 'auto'.");
}, "Test that we don't generated boxes for foreignObject in non-rendered SVG.");
</script>