mirror of
https://github.com/servo/servo
synced 2026-05-10 09:02:30 +02:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
importScripts("/resources/testharness.js");
|
|
|
|
test(() => {
|
|
assert_true(isSecureContext);
|
|
assert_false('PaymentRequest' in self);
|
|
}, "PaymentRequest constructor must not be exposed in worker global scope");
|
|
done();
|