Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLOutputElement / htmloutputelement-reset-event-expected.txt
blobf79e9991722af4c35a4c9a7417c67e98045c55d1
1 A Test for sending a reset event to output elements.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 - Sets the value attribute of the output element.
7 PASS output.defaultValue is "defaultValue"
8 PASS output.value is "aValue"
9 PASS output.innerText is "aValue"
10 PASS output.innerHTML is "aValue"
11 - Sends a reset event to reset the value to the default value.
12 PASS output.defaultValue is "defaultValue"
13 PASS output.value is "defaultValue"
14 PASS output.innerText is "defaultValue"
15 PASS output.innerHTML is "defaultValue"
16 - Ensures that the value mode flags is in mode "default".
17 PASS output.defaultValue is "another defaultValue"
18 PASS output.value is "another defaultValue"
19 PASS output.innerText is "another defaultValue"
20 PASS output.innerHTML is "another defaultValue"
21 PASS successfullyParsed is true
23 TEST COMPLETE