mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
10 lines
329 B
JavaScript
10 lines
329 B
JavaScript
// META: global=worker
|
|
test(() => {
|
|
try {
|
|
self.MessageEvent = 'PASS';
|
|
assert_equals(self.MessageEvent, 'PASS');
|
|
} catch (ex) {
|
|
assert_unreached("FAIL: unexpected exception (" + ex + ") received while replacing global constructor MessageEvent.");
|
|
}
|
|
}, 'Test replacing global constructors in a worker context.');
|