blob: 4e43bf761b7a35730c309c897c0101acc79a12fd [file] [log] [blame]
<!DOCTYPE html>
<style>
#relative {
position: relative;
bottom: 15%;
column-width: 1em;
}
#flex {
background: url();
display: flex;
flex-flow: column;
writing-mode: vertical-rl;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function appendHeadToFlex() {
document.getElementById("flex").appendChild(document.head);
}
</script>
<body onload=appendHeadToFlex()>
<p>This test PASS if it does not crash or assert.</p>
<div id="flex">
<div id="relative">XXX</div>
</div>
</body>