haikuwebkit/LayoutTests/fast/multicol/infinite-loop-when-forced-b...

25 lines
443 B
HTML

<!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>