diff options
Diffstat (limited to 'testing/web-platform/tests/workers/Worker-base64.any.js')
-rw-r--r-- | testing/web-platform/tests/workers/Worker-base64.any.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/Worker-base64.any.js b/testing/web-platform/tests/workers/Worker-base64.any.js new file mode 100644 index 0000000000..6a46b47784 --- /dev/null +++ b/testing/web-platform/tests/workers/Worker-base64.any.js @@ -0,0 +1,5 @@ +// META: global=worker +test(() => { + assert_equals(typeof atob, 'function'); + assert_equals(typeof btoa, 'function'); +}, 'Tests that atob() / btoa() functions are exposed to workers'); |