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

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

Issue 141703028: Remove input.type = ""; quirk. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move tests to fast/dom/input-type-change3 Created 6 years, 10 months 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
« no previous file with comments | « LayoutTests/fast/forms/input-type-change3.html ('k') | Source/core/html/HTMLInputElement.cpp » ('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 for writing and reading .type property of HTMLInputElement. 1 Tests for writing and reading .type property 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.type is "text" 6 PASS input.type is "text"
7 PASS input.getAttribute('type') is null
7 PASS input.type for "file" is correctly "file". 8 PASS input.type for "file" is correctly "file".
9 PASS input.getAttribute("type") for "file" is correctly "file".
8 PASS input.type for "file" is correctly "file". 10 PASS input.type for "file" is correctly "file".
11 PASS input.getAttribute("type") for "file" is correctly "file".
9 PASS input.type for "FILE" is correctly "file". 12 PASS input.type for "FILE" is correctly "file".
13 PASS input.getAttribute("type") for "FILE" is correctly "FILE".
10 PASS input.type for "text" is correctly "text". 14 PASS input.type for "text" is correctly "text".
15 PASS input.getAttribute("type") for "text" is correctly "text".
11 PASS input.type for "TEXT" is correctly "text". 16 PASS input.type for "TEXT" is correctly "text".
17 PASS input.getAttribute("type") for "TEXT" is correctly "TEXT".
12 PASS input.type for " text " is correctly "text". 18 PASS input.type for " text " is correctly "text".
19 PASS input.getAttribute("type") for " text " is correctly " text ".
13 PASS input.type for "button" is correctly "button". 20 PASS input.type for "button" is correctly "button".
21 PASS input.getAttribute("type") for "button" is correctly "button".
14 PASS input.type for " button " is correctly "text". 22 PASS input.type for " button " is correctly "text".
23 PASS input.getAttribute("type") for " button " is correctly " button ".
15 PASS input.type for "checkbox" is correctly "checkbox". 24 PASS input.type for "checkbox" is correctly "checkbox".
25 PASS input.getAttribute("type") for "checkbox" is correctly "checkbox".
16 PASS input.type for "email" is correctly "email". 26 PASS input.type for "email" is correctly "email".
27 PASS input.getAttribute("type") for "email" is correctly "email".
17 PASS input.type for "file" is correctly "email". 28 PASS input.type for "file" is correctly "email".
29 PASS input.getAttribute("type") for "file" is correctly "email".
18 PASS input.type for "hidden" is correctly "hidden". 30 PASS input.type for "hidden" is correctly "hidden".
31 PASS input.getAttribute("type") for "hidden" is correctly "hidden".
19 PASS input.type for "image" is correctly "image". 32 PASS input.type for "image" is correctly "image".
33 PASS input.getAttribute("type") for "image" is correctly "image".
20 PASS input.type for "isindex" is correctly "text". 34 PASS input.type for "isindex" is correctly "text".
35 PASS input.getAttribute("type") for "isindex" is correctly "isindex".
21 PASS input.type for "number" is correctly "number". 36 PASS input.type for "number" is correctly "number".
37 PASS input.getAttribute("type") for "number" is correctly "number".
22 PASS input.type for "password" is correctly "password". 38 PASS input.type for "password" is correctly "password".
39 PASS input.getAttribute("type") for "password" is correctly "password".
23 PASS input.type for "passwd" is correctly "text". 40 PASS input.type for "passwd" is correctly "text".
41 PASS input.getAttribute("type") for "passwd" is correctly "passwd".
24 PASS input.type for "radio" is correctly "radio". 42 PASS input.type for "radio" is correctly "radio".
43 PASS input.getAttribute("type") for "radio" is correctly "radio".
25 PASS input.type for "range" is correctly "range". 44 PASS input.type for "range" is correctly "range".
45 PASS input.getAttribute("type") for "range" is correctly "range".
26 PASS input.type for "reset" is correctly "reset". 46 PASS input.type for "reset" is correctly "reset".
47 PASS input.getAttribute("type") for "reset" is correctly "reset".
27 PASS input.type for "search" is correctly "search". 48 PASS input.type for "search" is correctly "search".
49 PASS input.getAttribute("type") for "search" is correctly "search".
28 PASS input.type for "submit" is correctly "submit". 50 PASS input.type for "submit" is correctly "submit".
51 PASS input.getAttribute("type") for "submit" is correctly "submit".
29 PASS input.type for "tel" is correctly "tel". 52 PASS input.type for "tel" is correctly "tel".
53 PASS input.getAttribute("type") for "tel" is correctly "tel".
30 PASS input.type for "telephone" is correctly "text". 54 PASS input.type for "telephone" is correctly "text".
55 PASS input.getAttribute("type") for "telephone" is correctly "telephone".
31 PASS input.type for "url" is correctly "url". 56 PASS input.type for "url" is correctly "url".
57 PASS input.getAttribute("type") for "url" is correctly "url".
32 PASS input.type for "uri" is correctly "text". 58 PASS input.type for "uri" is correctly "text".
59 PASS input.getAttribute("type") for "uri" is correctly "uri".
60 PASS input.type for "" is correctly "text".
61 PASS input.getAttribute("type") for "" is correctly "".
62 PASS input.type for "x-unknown" is correctly "text".
63 PASS input.getAttribute("type") for "x-unknown" is correctly "x-unknown".
64 PASS input.removeAttribute('type'); input.getAttribute('type') is null
33 PASS successfullyParsed is true 65 PASS successfullyParsed is true
34 66
35 TEST COMPLETE 67 TEST COMPLETE
36 68
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-type-change3.html ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698