blob: 571f7d7b6639f9d3761655231c06f706f63595b7 [file] [log] [blame]
dglazkov@chromium.org66e1a3a2011-03-25 17:49:11 +00001<html>
2<head>
3<style type="text/css">
4
5p {
6 font-size: xx-large;
7 width: 1000px;
8 height: 100px;
9}
10
11</style>
12<script type="text/javascript">
13
14function runTest()
15{
rniwa@webkit.org5cf7fa82012-06-15 07:38:37 +000016 if (!window.testRunner)
dglazkov@chromium.org66e1a3a2011-03-25 17:49:11 +000017 return;
18
rniwa@webkit.org5cf7fa82012-06-15 07:38:37 +000019 testRunner.dumpAsText();
dglazkov@chromium.org66e1a3a2011-03-25 17:49:11 +000020 var lines = [ 'line<br>' ];
21 for (var i = 0; i < 7; i++)
22 lines = lines.concat(lines);
23 document.body.innerHTML = '<p>' + lines.join('') + '</p>';
kaustubh@motorola.com478c5092012-09-05 11:36:03 +000024 document.body.textContent = 'When printing, layout overflow must be cleared after current document size is queried: ' + (internals.numberOfPages() > 1 ? 'PASS' : 'FAIL');
dglazkov@chromium.org66e1a3a2011-03-25 17:49:11 +000025}
26
27</script>
28<head>
29<body onload="runTest()">
rniwa@webkit.org5cf7fa82012-06-15 07:38:37 +000030This test needs window.testRunner to run.
dglazkov@chromium.org66e1a3a2011-03-25 17:49:11 +000031</body>
32</html>