Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/DOMParser-interface
/
.
/
workers
/
Worker-base64.any.js
blob: 6a46b477848cf33357f9e3bafa9ea5c3ef22b60d [
file
] [
log
] [
blame
] [
edit
]
// META: global=worker
test
(()
=>
{
assert_equals
(
typeof
atob
,
'function'
);
assert_equals
(
typeof
btoa
,
'function'
);
},
'Tests that atob() / btoa() functions are exposed to workers'
);