A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

DOM XPath: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(Add interface for XPathEvaluator, in particular for the constructor)
(→‎WebIDL interfaces: XPathEvaluator is implemented by Document)
Line 19: Line 19:
                               object result);
                               object result);
};
};
Document implements XPathEvaluator;
</pre>
</pre>
Indeed, you can both construct this method and access its methods on Document. Isn't the world wonderful?


[[Category:Spec coordination]]
[[Category:Spec coordination]]

Revision as of 07:47, 26 October 2012

If someone ever decides to write down DOM XPath (i.e. a proper version of the DOM3XPath note), take this into account:

WebIDL interfaces

[Constructor]
interface XPathEvaluator {
  XPathExpression    createExpression(DOMString expression, 
                                      XPathNSResolver resolver);
  XPathNSResolver    createNSResolver(Node nodeResolver);
  object             evaluate(DOMString expression, 
                              Node contextNode, 
                              XPathNSResolver resolver, 
                              unsigned short type, 
                              object result);
};
Document implements XPathEvaluator;

Indeed, you can both construct this method and access its methods on Document. Isn't the world wonderful?