summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Node.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/dom/Node.idl')
-rw-r--r--WebCore/dom/Node.idl14
1 files changed, 6 insertions, 8 deletions
diff --git a/WebCore/dom/Node.idl b/WebCore/dom/Node.idl
index c0f159c..7bc6d1d 100644
--- a/WebCore/dom/Node.idl
+++ b/WebCore/dom/Node.idl
@@ -62,9 +62,7 @@ module core {
readonly attribute Node previousSibling;
readonly attribute Node nextSibling;
readonly attribute NamedNodeMap attributes;
-#if !defined(LANGUAGE_GOBJECT) || !LANGUAGE_GOBJECT
readonly attribute Document ownerDocument;
-#endif
[OldStyleObjC, Custom] Node insertBefore(in [Return] Node newChild,
in Node refChild)
@@ -136,12 +134,12 @@ module core {
#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
#if !defined(LANGUAGE_GOBJECT) || !LANGUAGE_GOBJECT
- [JSCCustom] void addEventListener(in DOMString type,
- in EventListener listener,
- in boolean useCapture);
- [JSCCustom] void removeEventListener(in DOMString type,
- in EventListener listener,
- in boolean useCapture);
+ void addEventListener(in DOMString type,
+ in EventListener listener,
+ in boolean useCapture);
+ void removeEventListener(in DOMString type,
+ in EventListener listener,
+ in boolean useCapture);
boolean dispatchEvent(in Event event)
raises(EventException);
#endif