diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/css-display/display-contents-suppression-dynamic.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/css-display/display-contents-suppression-dynamic.html b/layout/reftests/css-display/display-contents-suppression-dynamic.html new file mode 100644 index 0000000000..341b5804af --- /dev/null +++ b/layout/reftests/css-display/display-contents-suppression-dynamic.html @@ -0,0 +1,16 @@ +<!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); + // The only difference between this test and the ref is this flush, this + // tests we're consistent. + g.offsetTop; + let div = document.createElement('div'); + div.style.width = div.style.height = "100px"; + div.style.backgroundColor = "green"; + g.appendChild(div); +</script> +</body> |