These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
252 B
Text
7 lines
252 B
Text
// https://dom.spec.whatwg.org/#interface-xpathexpression
|
|
[Exposed=Window]
|
|
interface XPathExpression {
|
|
// XPathResult.ANY_TYPE = 0
|
|
XPathResult evaluate(Node contextNode, optional unsigned short type = 0, optional XPathResult? result = null);
|
|
};
|
|
|