blob: 3f8578dc80cdfc5dbfda866c1bee5592d380fed4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that we handle forced breaks properly</title>
<style>
.container {
-webkit-column-width: 422px;
}
.foobar:after {
display: block;
content:' ';
-webkit-column-break-before: always;
height: 10px;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div class=container><div class=foobar>Pass if no crash or timeout.</div></div>
</body>
</html>