diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-24 15:19:58 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-24 15:19:58 -0700 |
commit | 34d52323e9bafed1894ac78fe8ef571ad0387442 (patch) | |
tree | e315f91ae668e9d1508ad7ebc9b3f5e14e18bf7f /src | |
parent | 99ea3416db1a0ca5a888fb955c0b266df45c2b49 (diff) |
fake stubs for some html elements in workers
Diffstat (limited to 'src')
-rw-r--r-- | src/proxyWorker.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proxyWorker.js b/src/proxyWorker.js index bb17fe9a..8df81dc8 100644 --- a/src/proxyWorker.js +++ b/src/proxyWorker.js @@ -16,6 +16,12 @@ function FPSTracker(text) { } } +function Element() { throw 'TODO: Element' } +function Image() { throw 'TODO: Image' } +function HTMLCanvasElement() { throw 'TODO: HTMLCanvasElement' } +function HTMLImageElement() { throw 'TODO: HTMLImageElement' } +function HTMLVideoElement() { throw 'TODO: HTMLVideoElement' } + function PropertyBag() { this.addProperty = function(){}; this.removeProperty = function(){}; |