diff options
author | arv@chromium.org <arv@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2011-10-20 00:11:10 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2011-10-20 00:11:10 +0000 |
commit | d2677d3669424c4c4b424f1b28f615b9513e8acc (patch) | |
tree | aef24f83ab7c6b1e3ba955a3ce4359c36ff5bcee /third_party/WebKit/LayoutTests/fast/forms/file | |
parent | ca24130a4ae8771bb54b3ba4dd027cec6ec4ff45 (diff) | |
download | chromium_src-d2677d3669424c4c4b424f1b28f615b9513e8acc.zip chromium_src-d2677d3669424c4c4b424f1b28f615b9513e8acc.tar.gz chromium_src-d2677d3669424c4c4b424f1b28f615b9513e8acc.tar.bz2 |
Fix test breakage after r97881
* fast/forms/file/file-input-change-event-expected.txt:
* fast/forms/file/file-input-change-event.html:
git-svn-id: svn://svn.chromium.org/blink/trunk@97899 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/forms/file')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event-expected.txt | 3 | ||||
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event.html | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event-expected.txt index 6f7b8c5..6d03df6 100644 --- a/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event-expected.txt +++ b/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event-expected.txt @@ -1,3 +1,4 @@ + This tests the condition that triggers a 'change' event on file input forms. On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". @@ -39,4 +40,4 @@ PASS changeDispatched is false PASS successfullyParsed is true TEST COMPLETE - + diff --git a/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event.html b/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event.html index 7763b15..1e92053 100644 --- a/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event.html +++ b/third_party/WebKit/LayoutTests/fast/forms/file/file-input-change-event.html @@ -6,6 +6,7 @@ <body> <input type="file" id="singleFile" name="upfile" onchange="singleFileSelected()" /> <input type="file" id="multipleFiles" name="upfile[]" multiple="multiple" onchange="multipleFilesSelected()" /> +<div id="console"></div> <script> var changeDispatched; |