gecko-dev/layout/generic/crashtests/1367413-1.html
L. David Baron 9d25ba2b78 Bug 1367413 - Fix assertion that can occur when paginating abs-pos elements with a transform. r=mats
I confirmed that the test crashes in the crashtest harness without the
patch (although the harness doesn't exit!), whereas it passes with the
patch.

MozReview-Commit-ID: 37S6i1kvw37

--HG--
extra : transplant_source : %9F%A91%90%3F%93%1F%E5%B3%ACHf%8C%BD%BA%C9%12%97%83I
2017-05-25 16:21:20 -04:00

55 lines
992 B
HTML

<!DOCTYPE HTML>
<title>Test for dynamic re-pagination of absolutely positioned elements</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<style>
#multicol {
columns: 3;
column-fill: auto;
column-gap: 15px;
height: 500px;
width: 300px;
background: yellow;
}
#relpos {
position: relative;
background: aqua;
height: 250px;
}
#abspos {
position: absolute;
top: 60px;
right: 0;
height: 80px;
width: 50px;
background: blue;
transform: scale(0.9);
}
#overflow {
height: 100px;
width: 30px;
background: grey;
}
</style>
<body style="width: 700px">
<div id="multicol">
<div id="relpos">
<div id="abspos"><div id="overflow"></div></div>
</div>
</div>
<script>
var mc = document.getElementById("multicol");
mc.offsetHeight; // flush layout
mc.style.height = "140px";
mc.offsetHeight; // flush layout
mc.parentNode.style.width = "800px";
</script>