Update web-platform-tests to revision 90e1ee27eede63cf117f19c1e55553cc1881aef0

This commit is contained in:
WPT Sync Bot 2019-09-27 10:23:59 +00:00
parent 5fd4467cb3
commit 3f940e3f4c
89 changed files with 11097 additions and 382 deletions

View file

@ -1,6 +1,7 @@
function message_from_port(port) {
return new Promise(resolve => {
return new Promise((resolve, reject) => {
port.onmessage = e => resolve(e.data);
port.onerror = e => reject(e);
});
}