Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /workers/Worker-base64.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-base64.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /workers/Worker-base64.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=worker
test(() => {
assert_equals(typeof atob, 'function');
assert_equals(typeof btoa, 'function');
}, 'Tests that atob() / btoa() functions are exposed to workers');