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

Unified Diff: LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea.html

Issue 113663003: Keep br while replacing plain texts with content ending with newline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test description and adjust format Created 6 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/editing/pasteboard/paste-newline-in-all-selected-textarea-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea.html
diff --git a/LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea.html b/LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea.html
new file mode 100644
index 0000000000000000000000000000000000000000..7d6a4951f07338681f80245288ebb99a124a520d
--- /dev/null
+++ b/LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+<body>
+<textarea id='test' cols=5 rows=4>
yosin_UTC9 2014/01/09 01:18:26 nit: Please use double quote for HTML markup. Note
ziran.sun 2014/01/09 10:45:39 Done.
+This test verifies that pasting a newline in a textarea with all text selected
+produces a newline.
+
+</textarea>
+<script src='../../resources/js-test.js'></script>
+<script>
+var textarea = document.getElementById('test');
+textarea.focus();
+
+// copy a new line
+textarea.setSelectionRange(99, 100);
+document.execCommand('copy');
+
+document.execCommand('SelectAll');
yosin_UTC9 2014/01/09 01:18:26 nit: We may want to have consistency of command na
ziran.sun 2014/01/09 10:45:39 Done.
ziran.sun 2014/01/09 10:45:39 Thanks for this. I need to pay more attentions on
+document.execCommand('paste');
+shouldBeEqualToString('textarea.value', '\n');
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/editing/pasteboard/paste-newline-in-all-selected-textarea-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698