Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-maxlength-expected.txt
blobdfe1d555000aa545391893dc43deb30f17505fd0
1 Tests for HTMLTextAreaElement.maxLength behaviors.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS textArea.maxLength is -1
7 PASS textArea.maxLength is -1
8 PASS textArea.maxLength is -1
9 PASS textArea.maxLength is 1
10 PASS textArea.maxLength is -1
11 PASS textArea.maxLength is -1
12 PASS textArea.maxLength is 1
13 PASS textArea.maxLength is 256
14 PASS textArea.getAttribute("maxlength") is "13"
15 PASS textArea.maxLength = -1 threw exception IndexSizeError: Failed to set the 'maxLength' property on 'HTMLTextAreaElement': The value provided (-1) is not positive or 0..
16 PASS textArea.getAttribute("maxlength") is "13"
17 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)..
18 PASS textArea.getAttribute("maxlength") is "13"
19 PASS textArea.maxLength = 11; textArea.getAttribute("maxlength") is "11"
20 PASS textArea.maxLength is 0
21 PASS textArea.getAttribute("maxlength") is "0"
22 PASS textArea.value is "abcd"
23 PASS textArea.value is "abcde"
24 PASS textArea.value is "abc"
25 PASS textArea.value is "abc"
26 PASS textArea.value is "def"
27 PASS textArea.value is "abcdef"
28 PASS textArea.value is "abcde"
29 PASS textArea.value is "A\nB"
30 PASS textArea.value is "a\n\n"
31 PASS textArea.value is "\n\n\n"
32 Inserts 2 normal characters + a combining letter with 3 code points into a maxlength=3 element.
33 PASS textArea.value is "ABx"
34 PASS textArea.value.length is 3
35 PASS textArea.value is "ABC"
36 Inserts 2 normal characters + one surrogate pair into a maxlength=3 element
37 PASS textArea.value is "AB"
38 PASS textArea.value.length is 2
39 PASS textArea.value is "ABC"
40 PASS textArea.value is ""
41 PASS textArea.value is "ABC"
42 PASS textArea.value is "ABC"
43 PASS successfullyParsed is true
45 TEST COMPLETE