Update web-platform-tests to revision 0d9238c8062f05a55898a0cb60dc0c353794d87a

This commit is contained in:
James Graham 2016-01-20 14:52:45 +00:00
parent c80fa33864
commit 7e8624d921
57 changed files with 5290 additions and 266 deletions

View file

@ -0,0 +1,14 @@
'use strict';
function worker_test(file) {
fetch_tests_from_worker(new Worker(file));
if (typeof SharedWorker === 'function') {
fetch_tests_from_worker(new SharedWorker(file));
} else {
test(() => {
assert_unreached('SharedWorker is unavailable');
}, 'Load ' + file + ' with SharedWorker');
}
service_worker_test(file);
}