| Index: Source/core/dom/Node.idl
|
| diff --git a/Source/core/dom/Node.idl b/Source/core/dom/Node.idl
|
| index 1b1f2f863f777b37f7b324841a9b80b097526fac..4ecd1d69f41fe3039ad1997f5d4dc4587c024fc7 100644
|
| --- a/Source/core/dom/Node.idl
|
| +++ b/Source/core/dom/Node.idl
|
| @@ -18,12 +18,10 @@
|
| * Boston, MA 02110-1301, USA.
|
| */
|
|
|
| -// FIXME: Node should inherit EventTarget.
|
| [
|
| CustomToV8,
|
| - EventTarget,
|
| DependentLifetime
|
| -] interface Node {
|
| +] interface Node : EventTarget {
|
| // NodeType
|
| const unsigned short ELEMENT_NODE = 1;
|
| const unsigned short ATTRIBUTE_NODE = 2;
|
| @@ -97,12 +95,4 @@
|
|
|
| // IE extensions
|
| [PerWorldBindings] readonly attribute Element parentElement;
|
| -
|
| - void addEventListener(DOMString type,
|
| - EventListener listener,
|
| - optional boolean useCapture);
|
| - void removeEventListener(DOMString type,
|
| - EventListener listener,
|
| - optional boolean useCapture);
|
| - [RaisesException] boolean dispatchEvent(Event event);
|
| };
|
|
|