aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/webidls/Node.webidl
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno.d@partner.samsung.com>2014-02-09 10:39:07 -0400
committerBruno de Oliveira Abinader <bruno.d@partner.samsung.com>2014-02-09 10:39:07 -0400
commit99b3b144d4cd3935ff3f90e0f32caf99a3f93cff (patch)
treec87fcbd374a0507ce1f09293cd460df7a2906731 /src/components/script/dom/webidls/Node.webidl
parent9305a95b68907c91a98a4cdd817f980c9f7f7e1f (diff)
downloadservo-99b3b144d4cd3935ff3f90e0f32caf99a3f93cff.tar.gz
servo-99b3b144d4cd3935ff3f90e0f32caf99a3f93cff.zip
Implement Node.contains
Spec: http://dom.spec.whatwg.org/#dom-node-contains Closes #1647.
Diffstat (limited to 'src/components/script/dom/webidls/Node.webidl')
-rw-r--r--src/components/script/dom/webidls/Node.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/webidls/Node.webidl b/src/components/script/dom/webidls/Node.webidl
index 1a9d9d53bb3..ba48fd94e11 100644
--- a/src/components/script/dom/webidls/Node.webidl
+++ b/src/components/script/dom/webidls/Node.webidl
@@ -78,7 +78,7 @@ interface Node : EventTarget {
const unsigned short DOCUMENT_POSITION_CONTAINED_BY = 0x10;
const unsigned short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; // historical
unsigned short compareDocumentPosition(Node other);
- //boolean contains(Node? other); //XXXjdm we don't deal well with Node? parameters
+ boolean contains(Node? other);
DOMString? lookupPrefix(DOMString? namespace);
DOMString? lookupNamespaceURI(DOMString? prefix);