| Index: core/workers/WorkerGlobalScope.idl
|
| diff --git a/core/workers/WorkerGlobalScope.idl b/core/workers/WorkerGlobalScope.idl
|
| index 87c3594f8f7292b8e7287101848676f1bc00b020..0d67095ada39dceade6b31dd9edd468cd5f97a03 100644
|
| --- a/core/workers/WorkerGlobalScope.idl
|
| +++ b/core/workers/WorkerGlobalScope.idl
|
| @@ -35,14 +35,17 @@
|
| [Replaceable] readonly attribute WorkerLocation location;
|
| void close();
|
| attribute EventHandler onerror;
|
| + [Replaceable] readonly attribute WorkerConsole console;
|
| +
|
|
|
| // WorkerUtils
|
| - [Custom] void importScripts(/*[Variadic] in DOMString urls */);
|
| + [RaisesException] void importScripts(DOMString... urls);
|
| [Replaceable] readonly attribute WorkerNavigator navigator;
|
|
|
| // Additional constructors
|
| attribute URLConstructor webkitURL; // FIXME: deprecate this.
|
| };
|
|
|
| +WorkerGlobalScope implements ImageBitmapFactories;
|
| WorkerGlobalScope implements WindowBase64;
|
| WorkerGlobalScope implements WindowTimers;
|
|
|