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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/forms/input-type-change3-expected.txt
diff --git a/LayoutTests/fast/forms/input-type-change3-expected.txt b/LayoutTests/fast/forms/input-type-change3-expected.txt
index 2321453076dda0eb5170fcd4d574bb1cc687a39c..d989ae7b6bc3386632ba53cf75443741556ccceb 100644
--- a/LayoutTests/fast/forms/input-type-change3-expected.txt
+++ b/LayoutTests/fast/forms/input-type-change3-expected.txt
@@ -4,32 +4,64 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS input.type is "text"
+PASS input.getAttribute('type') is null
PASS input.type for "file" is correctly "file".
+PASS input.getAttribute("type") for "file" is correctly "file".
PASS input.type for "file" is correctly "file".
+PASS input.getAttribute("type") for "file" is correctly "file".
PASS input.type for "FILE" is correctly "file".
+PASS input.getAttribute("type") for "FILE" is correctly "FILE".
PASS input.type for "text" is correctly "text".
+PASS input.getAttribute("type") for "text" is correctly "text".
PASS input.type for "TEXT" is correctly "text".
+PASS input.getAttribute("type") for "TEXT" is correctly "TEXT".
PASS input.type for " text " is correctly "text".
+PASS input.getAttribute("type") for " text " is correctly " text ".
PASS input.type for "button" is correctly "button".
+PASS input.getAttribute("type") for "button" is correctly "button".
PASS input.type for " button " is correctly "text".
+PASS input.getAttribute("type") for " button " is correctly " button ".
PASS input.type for "checkbox" is correctly "checkbox".
+PASS input.getAttribute("type") for "checkbox" is correctly "checkbox".
PASS input.type for "email" is correctly "email".
+PASS input.getAttribute("type") for "email" is correctly "email".
PASS input.type for "file" is correctly "email".
+PASS input.getAttribute("type") for "file" is correctly "email".
PASS input.type for "hidden" is correctly "hidden".
+PASS input.getAttribute("type") for "hidden" is correctly "hidden".
PASS input.type for "image" is correctly "image".
+PASS input.getAttribute("type") for "image" is correctly "image".
PASS input.type for "isindex" is correctly "text".
+PASS input.getAttribute("type") for "isindex" is correctly "isindex".
PASS input.type for "number" is correctly "number".
+PASS input.getAttribute("type") for "number" is correctly "number".
PASS input.type for "password" is correctly "password".
+PASS input.getAttribute("type") for "password" is correctly "password".
PASS input.type for "passwd" is correctly "text".
+PASS input.getAttribute("type") for "passwd" is correctly "passwd".
PASS input.type for "radio" is correctly "radio".
+PASS input.getAttribute("type") for "radio" is correctly "radio".
PASS input.type for "range" is correctly "range".
+PASS input.getAttribute("type") for "range" is correctly "range".
PASS input.type for "reset" is correctly "reset".
+PASS input.getAttribute("type") for "reset" is correctly "reset".
PASS input.type for "search" is correctly "search".
+PASS input.getAttribute("type") for "search" is correctly "search".
PASS input.type for "submit" is correctly "submit".
+PASS input.getAttribute("type") for "submit" is correctly "submit".
PASS input.type for "tel" is correctly "tel".
+PASS input.getAttribute("type") for "tel" is correctly "tel".
PASS input.type for "telephone" is correctly "text".
+PASS input.getAttribute("type") for "telephone" is correctly "telephone".
PASS input.type for "url" is correctly "url".
+PASS input.getAttribute("type") for "url" is correctly "url".
PASS input.type for "uri" is correctly "text".
+PASS input.getAttribute("type") for "uri" is correctly "uri".
+PASS input.type for "" is correctly "text".
+PASS input.getAttribute("type") for "" is correctly "".
+PASS input.type for "x-unknown" is correctly "text".
+PASS input.getAttribute("type") for "x-unknown" is correctly "x-unknown".
+PASS input.removeAttribute('type'); input.getAttribute('type') is null
PASS successfullyParsed is true
TEST COMPLETE
« 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