forked from mirrors/gecko-dev
Automatic update from web-platform-tests
Mark a bunch of idlharness tests as timeout=long
These are all symptomatic of crbug.com/1047818, but to stop the pain for
sheriffs lets mark them timeout=long for now.
Bug: 1068574, 1065250, 1070562, 1073055
Change-Id: I76e29d3037bd0c98c96bf21a7427d7981b91def4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2161728
Auto-Submit: Stephen McGruer <smcgruer@chromium.org>
Commit-Queue: Robert Ma <robertma@chromium.org>
Reviewed-by: Robert Ma <robertma@chromium.org>
Cr-Commit-Position: refs/heads/master@{#761981}
--
wpt-commits: a5d1774ecf41751d1c9357c27c709ee33bf3e279
wpt-pr: 23191
18 lines
419 B
JavaScript
18 lines
419 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['storage'],
|
|
['html'],
|
|
idl_array => {
|
|
idl_array.add_objects({ StorageManager: ['navigator.storage'] });
|
|
if (self.Window) {
|
|
idl_array.add_objects({ Navigator: ['navigator'] });
|
|
} else {
|
|
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
|
|
}
|
|
}
|
|
);
|