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.
24 if (window
.testRunner
)
25 testRunner
.setPrinting();
27 var testCases
= "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
29 for (var i
= 0; i
< testCases
.length
; i
++) {
31 for (var j
= 0; j
< 300; j
++) {
32 result
+= testCases
[i
] + " ";
36 document
.getElementById("result").innerHTML
= result
;