Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/active-script-webidl-callbacks
/
.
/
workers
/
Worker-base64.any.js
blob: 3aeab9045bb5ccefa7fa3c941da818f69c94bf0f [
file
] [
log
] [
blame
] [
edit
]
// META: global=worker
test
(()
=>
{
assert_true
(
typeof
atob
===
'function'
);
assert_true
(
typeof
btoa
===
'function'
);
},
'Tests that atob() / btoa() functions are exposed to workers'
);