Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: LayoutTests/fast/text/long-word.html

Issue 853903002: Render string sequences of more than 64k characters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Documentation. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/text/long-word.html
diff --git a/LayoutTests/fast/text/long-word.html b/LayoutTests/fast/text/long-word.html
new file mode 100644
index 0000000000000000000000000000000000000000..2c2f761eb40a83cd1c261771453d91e9baba456b
--- /dev/null
+++ b/LayoutTests/fast/text/long-word.html
@@ -0,0 +1,10 @@
+<html>
+ <style>body { overflow:hidden; }
+ </style><body>Hello <!-- 2^16 + 1 long line --><script>
+var text="PASSifyoucanseethis"
+while (text.length <= 65536)
+{
+ text += text.length;
+ text += "abcdefghijklmnopqrstuvwxyz"
+}
+document.write(text);</script></body></html>
« no previous file with comments | « LayoutTests/fast/forms/long-text-in-input-expected.html ('k') | LayoutTests/fast/text/long-word-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698