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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/onchange-js-expected.txt

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698