author | Andrea Marchesini <amarchesini@mozilla.com> |
Tue, 04 Jul 2017 05:40:50 +0200 | |
changeset 367210 | 9be8a90dcd3282ecccd94b0460f9d75b0e6d68ea |
parent 367209 | 006ce2d7356866befcc4f2d6467f0166a517a5a2 |
child 367211 | aa7d4f2c969723baf444be731570116f09abb241 |
push id | 32125 |
push user | cbook@mozilla.com |
push date | Tue, 04 Jul 2017 08:48:50 +0000 |
treeherder | mozilla-central@fef489e8c2a1 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | smaug |
bugs | 1360320 |
milestone | 56.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/filesystem/tests/test_worker_basic.html +++ b/dom/filesystem/tests/test_worker_basic.html @@ -22,17 +22,17 @@ function create_fileList() { function onOpened(message) { SpecialPowers.wrap(fileList).mozSetDirectory(message.dir); script.destroy(); next(); } script.addMessageListener("dir.opened", onOpened); - script.sendAsyncMessage("dir.open", { path: 'ProfD' }); + script.sendAsyncMessage("dir.open", { path: 'test' }); } function test_worker() { fileList.getFilesAndDirectories().then(function(array) { var worker = new Worker('worker_basic.js'); worker.onmessage = function(e) { if (e.data.type == 'finish') { next();