mirror of
https://github.com/servo/servo.git
synced 2025-07-03 13:33:39 +01:00
5 lines
198 B
JavaScript
5 lines
198 B
JavaScript
// META: global=!default,worker
|
|
test(() => {
|
|
assert_true(typeof atob === 'function');
|
|
assert_true(typeof btoa === 'function');
|
|
}, 'Tests that atob() / btoa() functions are exposed to workers');
|