Index: LayoutTests/fast/text/wide-preformatted.html |
diff --git a/LayoutTests/fast/text/wide-preformatted.html b/LayoutTests/fast/text/wide-preformatted.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e346b11764c50233e3c1f7c848d522e0d183ba94 |
--- /dev/null |
+++ b/LayoutTests/fast/text/wide-preformatted.html |
@@ -0,0 +1,10 @@ |
+<html> |
+ <style>body { overflow:hidden; } |
+ </style><body><!-- 2^16 + 1 long line --><pre><script> |
+var text="PASS if you can see this-" |
+while (text.length <= 65536) |
+{ |
+ text += text.length; |
+ text += "abcdefghijklmn pqrstuvwxyz" |
+} |
+document.write(text);</script></pre></body></html> |