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

Unified Diff: LayoutTests/fast/forms/long-text-in-input.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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/long-text-in-input-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/long-text-in-input.html
diff --git a/LayoutTests/fast/forms/long-text-in-input.html b/LayoutTests/fast/forms/long-text-in-input.html
new file mode 100644
index 0000000000000000000000000000000000000000..612b64b9aa060374455f3d982284004b01b7b8fa
--- /dev/null
+++ b/LayoutTests/fast/forms/long-text-in-input.html
@@ -0,0 +1,14 @@
+<body>
+ Passes if you see PASS in the text field below:<br>
+ <input dir=rtl id=inp size=3><!-- Hide blinking caret --><div style="display:inline-block;background:white; width:20px;height:2em;margin-left:-4px;vertical-align:middle"></div>
+ <script>
+ var text="Start of dummy text-"
+ while (text.length <= 65536)
+ {
+ text += text.length;
+ text += "abcdefghijklmn pqrstuvwxyz"
+ }
+ text += "-----PASS"
+ elm = document.getElementById("inp");
+ elm.value = text;
+ </script></body></html>
« no previous file with comments | « no previous file | LayoutTests/fast/forms/long-text-in-input-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698