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