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

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

Issue 1522803002: Move textarea-related tests to fast/forms/textarea/, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@color-uaf
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-maxlength-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/forms/textarea-maxlength-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/textarea-maxlength-expected.txt
deleted file mode 100644
index dfe1d555000aa545391893dc43deb30f17505fd0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/textarea-maxlength-expected.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-Tests for HTMLTextAreaElement.maxLength behaviors.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS textArea.maxLength is -1
-PASS textArea.maxLength is -1
-PASS textArea.maxLength is -1
-PASS textArea.maxLength is 1
-PASS textArea.maxLength is -1
-PASS textArea.maxLength is -1
-PASS textArea.maxLength is 1
-PASS textArea.maxLength is 256
-PASS textArea.getAttribute("maxlength") is "13"
-PASS textArea.maxLength = -1 threw exception IndexSizeError: Failed to set the 'maxLength' property on 'HTMLTextAreaElement': The value provided (-1) is not positive or 0..
-PASS textArea.getAttribute("maxlength") is "13"
-PASS textArea.maxLength = 10 threw exception IndexSizeError: Failed to set the 'maxLength' property on 'HTMLTextAreaElement': The maxLength provided (10) is less than the minimum bound (11)..
-PASS textArea.getAttribute("maxlength") is "13"
-PASS textArea.maxLength = 11; textArea.getAttribute("maxlength") is "11"
-PASS textArea.maxLength is 0
-PASS textArea.getAttribute("maxlength") is "0"
-PASS textArea.value is "abcd"
-PASS textArea.value is "abcde"
-PASS textArea.value is "abc"
-PASS textArea.value is "abc"
-PASS textArea.value is "def"
-PASS textArea.value is "abcdef"
-PASS textArea.value is "abcde"
-PASS textArea.value is "A\nB"
-PASS textArea.value is "a\n\n"
-PASS textArea.value is "\n\n\n"
-Inserts 2 normal characters + a combining letter with 3 code points into a maxlength=3 element.
-PASS textArea.value is "ABx"
-PASS textArea.value.length is 3
-PASS textArea.value is "ABC"
-Inserts 2 normal characters + one surrogate pair into a maxlength=3 element
-PASS textArea.value is "AB"
-PASS textArea.value.length is 2
-PASS textArea.value is "ABC"
-PASS textArea.value is ""
-PASS textArea.value is "ABC"
-PASS textArea.value is "ABC"
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698