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

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

Issue 2417753003: Input element: Fix the dirty value flag after type change. (Closed)
Patch Set: Created 4 years, 2 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
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.getAttribute('type') is null
8 PASS input.type for "text" is correctly "text". 8 PASS input.type for "text" is correctly "text".
9 PASS input.getAttribute("type") for "text" is correctly "text". 9 PASS input.getAttribute("type") for "text" is correctly "text".
10 PASS input.type for "TEXT" is correctly "text". 10 PASS input.type for "TEXT" is correctly "text".
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 PASS input.getAttribute("type") for "telephone" is correctly "telephone". 49 PASS input.getAttribute("type") for "telephone" is correctly "telephone".
50 PASS input.type for "url" is correctly "url". 50 PASS input.type for "url" is correctly "url".
51 PASS input.getAttribute("type") for "url" is correctly "url". 51 PASS input.getAttribute("type") for "url" is correctly "url".
52 PASS input.type for "uri" is correctly "text". 52 PASS input.type for "uri" is correctly "text".
53 PASS input.getAttribute("type") for "uri" is correctly "uri". 53 PASS input.getAttribute("type") for "uri" is correctly "uri".
54 PASS input.type for "" is correctly "text". 54 PASS input.type for "" is correctly "text".
55 PASS input.getAttribute("type") for "" is correctly "". 55 PASS input.getAttribute("type") for "" is correctly "".
56 PASS input.type for "x-unknown" is correctly "text". 56 PASS input.type for "x-unknown" is correctly "text".
57 PASS input.getAttribute("type") for "x-unknown" is correctly "x-unknown". 57 PASS input.getAttribute("type") for "x-unknown" is correctly "x-unknown".
58 PASS input.removeAttribute('type'); input.getAttribute('type') is null 58 PASS input.removeAttribute('type'); input.getAttribute('type') is null
59 Check dirty flag behavior
60 PASS input.defaultValue = 'UpdatedDefault'; input.value is "UpdatedDefault"
59 PASS successfullyParsed is true 61 PASS successfullyParsed is true
60 62
61 TEST COMPLETE 63 TEST COMPLETE
62 64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698