mirror of
https://github.com/servo/servo.git
synced 2025-10-17 08:49:21 +01:00
5 lines
189 B
JavaScript
5 lines
189 B
JavaScript
// META: global=worker
|
|
test(() => {
|
|
assert_true(typeof atob === 'function');
|
|
assert_true(typeof btoa === 'function');
|
|
}, 'Tests that atob() / btoa() functions are exposed to workers');
|