mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
importScripts('/resources/testharness.js');
|
|
|
|
test(() => {
|
|
assert_false('PaymentRequestEvent' in self);
|
|
}, 'PaymentRequestEvent constructor must not be exposed in worker');
|
|
|
|
done();
|