Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / workers / resources / worker-file-last-modified.js
blob6bb42780fa66dbca77d69f26eda0692d2eac789a
1 importScripts('../../../../resources/js-test.js');
3 var file = new File(['hello'], 'hello.txt', {lastModified: new Date(1234567890)});
5 // This should not crash.
6 shouldBe("file.lastModifiedDate.valueOf()", "1234567890");
7 finishJSTest();