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