| Index: core/workers/SharedWorker.idl
|
| diff --git a/core/workers/SharedWorker.idl b/core/workers/SharedWorker.idl
|
| index d6cae73ca5d21083cd1b9f1355bb69a397de5aff..90fa9445b2a8629ffc4f664af85ee6fae3535f4a 100644
|
| --- a/core/workers/SharedWorker.idl
|
| +++ b/core/workers/SharedWorker.idl
|
| @@ -30,11 +30,14 @@
|
| */
|
|
|
| [
|
| - NoInterfaceObject,
|
| + EnabledAtRuntime,
|
| Constructor(DOMString scriptURL, [Default=NullString] optional DOMString name),
|
| - CallWith=ScriptExecutionContext,
|
| - RaisesException
|
| -] interface SharedWorker : AbstractWorker {
|
| + ConstructorCallWith=ScriptExecutionContext,
|
| + ConstructorRaisesException,
|
| + ActiveDOMObject
|
| +] interface SharedWorker : EventTarget {
|
| readonly attribute MessagePort port;
|
| };
|
|
|
| +SharedWorker implements AbstractWorker;
|
| +
|
|
|