1
0
Fork 0
firefox/testing/web-platform/tests/css/css-multicol/text-child-crash.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

14 lines
375 B
HTML

<!DOCTYPE html>
<html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://crbug.com/1412020">
<div id="outer">
x
<div id="inner" style="display:none; columns:1; padding-left:1%;"></div>
</div>
<script>
document.body.offsetTop;
outer.style.columns = "1";
inner.style.display = "block";
</script>
</html>