Merge "[WK2] Revert patch / set a limit of layer count and atlas size." into 2.0_beta
[framework/web/webkit-efl.git] / LayoutTests / printing / width-overflow.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 body {
6     margin : 0;
7 }
8
9 div {
10     margin : auto;
11     width : 1300px;
12 }
13 </style>
14 </head>
15
16 <body>
17 <p>
18 To run this test manually, print this page.
19 If the right side of any lines is printed without being truncated, the test passes.
20 </p>
21 <div id="result">
22 </div>
23 <script>
24 if (window.layoutTestController)
25     layoutTestController.setPrinting();
26
27 var testCases = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
28 var result = "";
29 for (var i = 0; i < testCases.length; i++) {
30     result += "<p>";
31     for (var j = 0; j < 300; j++) {
32         result += testCases[i] + " ";
33     }
34     result += "</p>\n";
35 }
36 document.getElementById("result").innerHTML = result;
37 </script>
38 </body>
39 </html>