Update web-platform-tests to revision d55d764f159f5d8dd3e0b30e9d38f75af4feb438

This commit is contained in:
WPT Sync Bot 2019-12-21 08:23:02 +00:00
parent bb5cd02da3
commit 865f7c03e9
228 changed files with 6505 additions and 2813 deletions

View file

@ -16,6 +16,9 @@ export function rejectOnTimeout(ms, msg) {
}, ms);
});
}
export function raceWithRejectOnTimeout(p, ms, msg) {
return Promise.race([p, rejectOnTimeout(ms, msg)]);
}
export function objectEquals(x, y) {
if (typeof x !== 'object' || typeof y !== 'object') return x === y;
if (x === null || y === null) return x === y;

View file

@ -1,3 +1,3 @@
// AUTO-GENERATED - DO NOT EDIT. See tools/gen_version.
export const version = 'e114192747a54f34157eb65754e037701fbdf98b';
export const version = '70754155a0bca2c24e3e3c249bab9ee3dd765a26';