blob: bae3768bb9aae0b1c234a5962d5f341f04405b27 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>This tests that we can insert element when beforeChild has a spanner placeholder</title>
<style>
#spanner {
column-span: all;
}
.multicol {
display: inline-block;
-webkit-columns: 80px 5;
}
</style>
</head>
<body>
PASS if no crash or assert in debug.
<div class=multicol><span><span id=inner></span><div id=spanner></div>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
setTimeout(function() {
inner.style.content = "close-quote";
spanner.style.float = "left";
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>
</body>
</html>