blob: 01b37547f7995f520e5d9582d0556d0b18b7cb22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// META: script=/resources/testharness.js
// META: script=/resources/testharnessreport.js
'use strict';
test(() => {
assert_false(window.hasOwnProperty('PendingGetBeacon'));
}, `PendingGetBeacon is not supported in non-secure context.`);
test(() => {
assert_false(window.hasOwnProperty('PendingPostBeacon'));
}, `PendingPostBeacon is not supported in non-secure context.`);
|