OLD | NEW |
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 Loading... |
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 |
OLD | NEW |