repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
workers
/
resources
/
worker-base64.js
blob
61eed5ed23db84c670ec626faff9b3fa21478c1c
1
if
(
this
.
importScripts
)
2
importScripts
(
'../../../resources/js-test.js'
);
3
4
description
(
"Tests that atob() / btoa() functions are exposed to workers"
);
5
6
shouldBeTrue
(
"typeof atob === 'function'"
);
7
shouldBeTrue
(
"typeof btoa === 'function'"
);
8
9
finishJSTest
();