gecko-dev/layout/base/crashtests/1511535.html
Ting-Yu Lin 45814e9ae8 Bug 1511535 - Add a crashtest that sets "column-span:all" to an element under "position:fixed" subtree. r=dbaron
The <iframe> in the test case is getting the "column-span:all" style,
but it's under a position:fixed frame subtree. After the patch in bug
1507244 landed, NS_FRAME_HAS_MULTI_COLUMN_ANCESTOR won't be added
incorrectly to the out-of-flow subtree.

Differential Revision: https://phabricator.services.mozilla.com/D14626

--HG--
extra : moz-landing-system : lando
2018-12-15 00:33:52 +00:00

10 lines
172 B
HTML

<script>
function go() {
a.style.setProperty("column-span", "all");
}
</script>
<body onload=go()>
<ol style="columns: 0px">
<li style="position: fixed">
<iframe id="a">