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

Side by Side Diff: LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value-expected.txt

Issue 178253006: Output Element defaultValue should be based on textContent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
OLDNEW
1 Tests for assigning the value attribute to output elements. 1 Tests for assigning the value attribute to output elements.
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 - Sets the defaultValue attribute with the value mode flag is in mode "defalut". 6 - Sets the defaultValue attribute with the value mode flag is in mode "defalut".
7 PASS output.defaultValue is "defaultValue" 7 PASS output.defaultValue is "defaultValue"
8 PASS output.value is "defaultValue" 8 PASS output.value is "defaultValue"
9 PASS output.innerText is "defaultValue" 9 PASS output.innerText is "defaultValue"
10 PASS output.innerHTML is "defaultValue" 10 PASS output.innerHTML is "defaultValue"
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 - Appends a child node to the output element with the value mode flag is in mode "value". 67 - Appends a child node to the output element with the value mode flag is in mode "value".
68 PASS output.defaultValue is "defaultValue" 68 PASS output.defaultValue is "defaultValue"
69 PASS output.value is "aValue and childText" 69 PASS output.value is "aValue and childText"
70 PASS output.innerText is "aValue and childText" 70 PASS output.innerText is "aValue and childText"
71 PASS output.innerHTML is "aValue<span> and childText</span>" 71 PASS output.innerHTML is "aValue<span> and childText</span>"
72 - Then removes the child node from the output element with the value mode flag i s in mode "default". 72 - Then removes the child node from the output element with the value mode flag i s in mode "default".
73 PASS output.defaultValue is "defaultValue" 73 PASS output.defaultValue is "defaultValue"
74 PASS output.value is "aValue" 74 PASS output.value is "aValue"
75 PASS output.innerText is "aValue" 75 PASS output.innerText is "aValue"
76 PASS output.innerHTML is "aValue" 76 PASS output.innerHTML is "aValue"
77 - Output defaultValue based on textContent if flag is in mode default
78 PASS output1.defaultValue == 'A' is true
79 PASS output1.defaultValue == 'B' is true
77 PASS successfullyParsed is true 80 PASS successfullyParsed is true
78 81
79 TEST COMPLETE 82 TEST COMPLETE
80 83
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698