Update web-platform-tests to revision 06f77f6bfaa86f3643a79f1ec2c49c6b6955cf18

This commit is contained in:
WPT Sync Bot 2018-03-26 21:10:36 -04:00
parent 1981efcc35
commit c6c4fb2f7a
108 changed files with 2090 additions and 138 deletions

View file

@ -0,0 +1,2 @@
import('./static-import-worker.js')
.then(module => postMessage('LOADED'));

View file

@ -0,0 +1,2 @@
import('./post-message-on-load-worker.js')
.then(module => postMessage('LOADED'));

View file

@ -0,0 +1,2 @@
import('./dynamic-import-worker.js')
.then(module => postMessage('LOADED'));

View file

@ -1 +1,2 @@
import './static-import-worker.js';
postMessage('LOADED')

View file

@ -0,0 +1,2 @@
import './dynamic-import-worker.js';
postMessage('LOADED');

View file

@ -1 +1,2 @@
import './post-message-on-load-worker.js';
postMessage('LOADED');