1
0
Fork 0
firefox/layout/reftests/css-display/display-contents-suppression-dynamic-ref.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

13 lines
362 B
HTML

<!doctype html>
<body>
<script>
const SVG_NS = "http://www.w3.org/2000/svg";
let g = document.createElementNS(SVG_NS, "g");
g.style.display = "contents";
document.body.appendChild(g);
let div = document.createElement('div');
div.style.width = div.style.height = "100px";
div.style.backgroundColor = "green";
g.appendChild(div);
</script>
</body>