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

Side by Side Diff: LayoutTests/fast/forms/input-minmax-expected.txt

Issue 98383004: Remove TreatNullAs=NullString for HTMLInputElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/fast/forms/input-minmax.html ('k') | LayoutTests/fast/forms/input-pattern.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Tests the behavior of .min and .max of HTMLInputElement. 1 Tests the behavior of .min and .max of HTMLInputElement.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS input.min is "" 6 PASS input.min is ""
7 PASS input.max is "" 7 PASS input.max is ""
8 PASS input.min is "0" 8 PASS input.min is "0"
9 PASS input.max is "100" 9 PASS input.max is "100"
10 PASS input.min is "abc" 10 PASS input.min is "abc"
11 PASS input.max is "qwerty" 11 PASS input.max is "qwerty"
12 PASS input.getAttribute("min") is "foo" 12 PASS input.getAttribute("min") is "foo"
13 PASS input.getAttribute("max") is "bar" 13 PASS input.getAttribute("max") is "bar"
14 PASS input.getAttribute("min") is "" 14 PASS input.getAttribute("min") is ""
15 PASS input.getAttribute("max") is "" 15 PASS input.getAttribute("max") is ""
16 Setting null to min: 16 Setting null to min:
17 PASS input.min is "" 17 PASS input.min is "null"
18 PASS input.getAttribute("min") is null 18 PASS input.getAttribute("min") is "null"
19 PASS input.min is "null" 19 PASS input.min is "null"
20 Setting null to max: 20 Setting null to max:
21 PASS input.max is "" 21 PASS input.max is "null"
22 PASS input.getAttribute("max") is null 22 PASS input.getAttribute("max") is "null"
23 PASS input.max is "null" 23 PASS input.max is "null"
24 Setting undefined to min: 24 Setting undefined to min:
25 PASS input.min is "undefined" 25 PASS input.min is "undefined"
26 PASS input.getAttribute("min") is "undefined" 26 PASS input.getAttribute("min") is "undefined"
27 PASS input.min is "undefined" 27 PASS input.min is "undefined"
28 Setting undefined to max: 28 Setting undefined to max:
29 PASS input.max is "undefined" 29 PASS input.max is "undefined"
30 PASS input.getAttribute("max") is "undefined" 30 PASS input.getAttribute("max") is "undefined"
31 PASS input.max is "undefined" 31 PASS input.max is "undefined"
32 Setting non-string to min: 32 Setting non-string to min:
33 PASS input.min is "256" 33 PASS input.min is "256"
34 PASS input.getAttribute("min") is "256" 34 PASS input.getAttribute("min") is "256"
35 PASS input.min is "256" 35 PASS input.min is "256"
36 Setting non-string to max: 36 Setting non-string to max:
37 PASS input.max is "256" 37 PASS input.max is "256"
38 PASS input.getAttribute("max") is "256" 38 PASS input.getAttribute("max") is "256"
39 PASS input.max is "256" 39 PASS input.max is "256"
40 Check implicit min/max of type=range: 40 Check implicit min/max of type=range:
41 PASS input.min is "" 41 PASS input.min is ""
42 PASS input.max is "" 42 PASS input.max is ""
43 PASS successfullyParsed is true 43 PASS successfullyParsed is true
44 44
45 TEST COMPLETE 45 TEST COMPLETE
46 46
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-minmax.html ('k') | LayoutTests/fast/forms/input-pattern.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698