blob: d6afd9fb5e5e6880fdcc82cdd5c4c916b411486c (
plain)
1
2
3
4
5
6
7
8
9
|
'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.`);
|