blob: 5ffc3539cf937527f4de560e2792c3e4f48d0d64 [file] [log] [blame]
<html>
<head>
<style type="text/css">
p {
font-size: xx-large;
width: 1000px;
height: 100px;
}
</style>
<script type="text/javascript">
function runTest()
{
if (!window.layoutTestController)
return;
layoutTestController.dumpAsText();
var lines = [ 'line<br>' ];
for (var i = 0; i < 7; i++)
lines = lines.concat(lines);
document.body.innerHTML = '<p>' + lines.join('') + '</p>';
document.body.textContent = 'When printing, layout overflow must be cleared after current document size is queried: ' + (layoutTestController.numberOfPages() > 1 ? 'PASS' : 'FAIL');
}
</script>
<head>
<body onload="runTest()">
This test needs window.layoutTestController to run.
</body>
</html>