| Index: third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt b/third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt
|
| index cd7d5a449182a85c6c48b0a83650510c5201749a..ac78d8fe65cac124cc577bce5231165945ee4c96 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt
|
| +++ b/third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt
|
| @@ -1,13 +1,41 @@
|
| -This test verifies that the change event is fired, when value is changed in change event handler.
|
| +This test verifies that the change event is fired, when value is changed by JavaScript code.
|
|
|
| On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
|
|
|
|
| -PASS input.value is "foo bar baz"
|
| +===> Tests for INPUT[type=text]
|
| +Value is updated in change event handler.
|
| +PASS element.value is "foo bar"
|
| PASS changeEventCounter is 1
|
| -PASS input.value is ""
|
| -PASS input.value is "foo bar baz"
|
| +PASS element.value is ""
|
| +PASS element.value is "foo bar"
|
| PASS changeEventCounter is 2
|
| +Value is updated while element is focused.
|
| +PASS changeEventCounter is 0
|
| +Value is updated after a user edit.
|
| +PASS changeEventCounter is 1
|
| +===> Tests for INPUT[type=number]
|
| +Value is updated in change event handler.
|
| +PASS element.value is "123"
|
| +PASS changeEventCounter is 1
|
| +PASS element.value is ""
|
| +PASS element.value is "123"
|
| +PASS changeEventCounter is 2
|
| +Value is updated while element is focused.
|
| +PASS changeEventCounter is 0
|
| +Value is updated after a user edit.
|
| +PASS changeEventCounter is 1
|
| +===> Tests for TEXTAREA
|
| +Value is updated in change event handler.
|
| +PASS element.value is "foo bar"
|
| +PASS changeEventCounter is 1
|
| +PASS element.value is ""
|
| +PASS element.value is "foo bar"
|
| +PASS changeEventCounter is 2
|
| +Value is updated while element is focused.
|
| +PASS changeEventCounter is 0
|
| +Value is updated after a user edit.
|
| +PASS changeEventCounter is 1
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|