mirror of
https://github.com/servo/servo.git
synced 2025-07-02 04:53:39 +01:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
importScripts('/resources/testharness.js');
|
|
|
|
test(() => {
|
|
assert_false('PaymentRequestEvent' in self);
|
|
}, 'PaymentRequestEvent constructor must not be exposed in worker');
|
|
|
|
done();
|