blob: f0aa1cb12e0e581e2b68b78f50ea989eb4af8e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
This page tests that the maxlength attribute of the <input> element works correctly. http://bugs.webkit.org/show_bug.cgi?id=14388
Attempting to insert 0 characters with maxLength = -1.
PASS
Attempting to insert 0 characters with maxLength = 100.
PASS
Attempting to insert 0 characters with maxLength = 524288.
PASS
Attempting to insert 0 characters with maxLength = 600000.
PASS
Attempting to insert 5 characters with maxLength = -1.
PASS
Attempting to insert 5 characters with maxLength = 100.
PASS
Attempting to insert 5 characters with maxLength = 524288.
PASS
Attempting to insert 5 characters with maxLength = 600000.
PASS
Attempting to insert 100 characters with maxLength = -1.
PASS
Attempting to insert 100 characters with maxLength = 100.
PASS
Attempting to insert 100 characters with maxLength = 524288.
PASS
Attempting to insert 100 characters with maxLength = 600000.
PASS
Attempting to insert 101 characters with maxLength = -1.
PASS
Attempting to insert 101 characters with maxLength = 100.
PASS
Attempting to insert 101 characters with maxLength = 524288.
PASS
Attempting to insert 101 characters with maxLength = 600000.
PASS
Attempting to insert 200 characters with maxLength = -1.
PASS
Attempting to insert 200 characters with maxLength = 100.
PASS
Attempting to insert 200 characters with maxLength = 524288.
PASS
Attempting to insert 200 characters with maxLength = 600000.
PASS
Attempting to insert 524287 characters with maxLength = -1.
PASS
Attempting to insert 524287 characters with maxLength = 100.
PASS
Attempting to insert 524287 characters with maxLength = 524288.
PASS
Attempting to insert 524287 characters with maxLength = 600000.
PASS
Attempting to insert 524288 characters with maxLength = -1.
PASS
Attempting to insert 524288 characters with maxLength = 100.
PASS
Attempting to insert 524288 characters with maxLength = 524288.
PASS
Attempting to insert 524288 characters with maxLength = 600000.
PASS
Attempting to insert 524289 characters with maxLength = -1.
PASS
Attempting to insert 524289 characters with maxLength = 100.
PASS
Attempting to insert 524289 characters with maxLength = 524288.
PASS
Attempting to insert 524289 characters with maxLength = 600000.
PASS
Attempting to insert 530000 characters with maxLength = -1.
PASS
Attempting to insert 530000 characters with maxLength = 100.
PASS
Attempting to insert 530000 characters with maxLength = 524288.
PASS
Attempting to insert 530000 characters with maxLength = 600000.
PASS
Some tests for .maxLength property.
PASS input.getAttribute('maxlength') is '100'
PASS successfullyParsed is true
TEST COMPLETE
|