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

Unified Diff: LayoutTests/fast/files/file-list-test.html

Issue 349633005: Expose FileList in Worker contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test improvements Created 6 years, 6 months 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
« no previous file with comments | « no previous file | LayoutTests/fast/files/file-list-test-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/files/file-list-test.html
diff --git a/LayoutTests/fast/files/file-list-test.html b/LayoutTests/fast/files/file-list-test.html
index e1371e89810a49ac678e0d8cf0554ee2d21e26b6..2125779ac89065843fa384e03bf4d54212119562 100644
--- a/LayoutTests/fast/files/file-list-test.html
+++ b/LayoutTests/fast/files/file-list-test.html
@@ -15,6 +15,7 @@ debug("Start");
function onInputFileChange(files)
{
window.files = files;
+ shouldBeTrue("files instanceof FileList");
shouldBe("files.length", "2");
shouldBeTrue("files.item(0) instanceof File");
shouldBeEqualToString("files.item(0).name", "UTF8.txt");
« no previous file with comments | « no previous file | LayoutTests/fast/files/file-list-test-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698