diff options
Diffstat (limited to 'Source/WebCore/dom/NodeIterator.idl')
-rw-r--r-- | Source/WebCore/dom/NodeIterator.idl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Source/WebCore/dom/NodeIterator.idl b/Source/WebCore/dom/NodeIterator.idl index 5cf78dff9..f719b459c 100644 --- a/Source/WebCore/dom/NodeIterator.idl +++ b/Source/WebCore/dom/NodeIterator.idl @@ -18,20 +18,18 @@ * Boston, MA 02110-1301, USA. */ -// Introduced in DOM Level 2: [ - JSCustomMarkFunction, + ExportToWrappedFunction, ImplementationLacksVTable, + JSCustomMarkFunction, ] interface NodeIterator { readonly attribute Node root; readonly attribute unsigned long whatToShow; readonly attribute NodeFilter filter; - readonly attribute boolean expandEntityReferences; readonly attribute Node referenceNode; readonly attribute boolean pointerBeforeReferenceNode; - [CallWith=ScriptState, RaisesException] Node nextNode(); - [CallWith=ScriptState, RaisesException] Node previousNode(); + Node nextNode(); + Node previousNode(); void detach(); }; - |