Files
tubestation/testing/web-platform/tests/badging/idlharness.https.any.js
Stephen McGruer bb831174fc Bug 1644007 [wpt PR 24027] - Mark some idlharness.html tests as timeout=long, a=testonly
Automatic update from web-platform-tests
Mark some idlharness.html tests as timeout=long

These are symptomatic of crbug.com/1047818, but to stop the pain for
sheriffs lets mark them timeout=long for now.

TBR=robertma@chromium.org

Bug: 1092097, 1092089, 1092082, 1092076, 1091715
Change-Id: I8fbc0d687ea9b5c3e7dbccfdacc879eed3e377e0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2232884
Reviewed-by: Stephen McGruer <smcgruer@chromium.org>
Commit-Queue: Stephen McGruer <smcgruer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#775906}

--

wpt-commits: 0a8973504851eb9128e186864f73529ce5b6e1bb
wpt-pr: 24027
2020-06-12 09:19:04 +00:00

18 lines
367 B
JavaScript

// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
'use strict';
idl_test(
['badging'],
['html', 'dom'],
idl_array => {
if (self.GLOBAL.isWorker()) {
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
} else {
idl_array.add_objects({ Navigator: ['navigator'] });
}
}
);