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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/textarea-selection-preservation-expected.txt

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/LayoutTests/fast/forms/textarea-selection-preservation-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-selection-preservation-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/textarea-selection-preservation-expected.txt
deleted file mode 100644
index fa168e7ed6e55cc4f2db33bf8ce097e4d0711376..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-selection-preservation-expected.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-This tests for problems where we'd lose the selection in a textarea when making style and value changes.
-
-- default value
-PASS ta.selectionStart is 0
-PASS ta.selectionEnd is 0
-- set selectionStart/End
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- add background style
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- set value to same value
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- set value to a different value
-PASS ta.selectionStart is 6
-PASS ta.selectionEnd is 6
-- set selection so we can test again without a trailing newline
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- add background style
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- set value to same value
-PASS ta.selectionStart is 3
-PASS ta.selectionEnd is 4
-- reset form
-PASS ta.selectionStart is 7
-PASS ta.selectionEnd is 7
-- set new defaultValue
-PASS ta.selectionStart is 9
-PASS ta.selectionEnd is 9
-- set same defaultValue
-PASS ta.selectionStart is 9
-PASS ta.selectionEnd is 9
-- append a text node
-PASS ta.selectionStart is 12
-PASS ta.selectionEnd is 12
-- append a empty text node
-PASS ta.selectionStart is 12
-PASS ta.selectionEnd is 12
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698