mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
* Add XPath parser/evaluator Signed-off-by: Ville Lindholm <ville@lindholm.dev> * Correctly annotate XPathEvaluator IDL Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: have bindings pass in `can_gc` Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: add docstrings Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: implement PartialEq for Value for readability Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: add docstrings for CoreFunctions Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: simplify node test code Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: add unit tests for string handling xpath functions Signed-off-by: Ville Lindholm <ville@lindholm.dev> * put xpath features behind dom.xpath.enabled pref Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review] remove rstest and insta dev-deps Signed-off-by: Ville Lindholm <ville@lindholm.dev> * update wpt test expectations Signed-off-by: Ville Lindholm <ville@lindholm.dev> * [PR review]: tweak metadata files Signed-off-by: Ville Lindholm <ville@lindholm.dev> * update wpt test expectations AGAIN Signed-off-by: Ville Lindholm <ville@lindholm.dev> --------- Signed-off-by: Ville Lindholm <ville@lindholm.dev>
29 lines
1.3 KiB
Text
29 lines
1.3 KiB
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://dom.spec.whatwg.org/#interface-xpathresult
|
|
[Exposed=Window, Pref="dom.xpath.enabled"]
|
|
interface XPathResult {
|
|
const unsigned short ANY_TYPE = 0;
|
|
const unsigned short NUMBER_TYPE = 1;
|
|
const unsigned short STRING_TYPE = 2;
|
|
const unsigned short BOOLEAN_TYPE = 3;
|
|
const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4;
|
|
const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5;
|
|
const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6;
|
|
const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7;
|
|
const unsigned short ANY_UNORDERED_NODE_TYPE = 8;
|
|
const unsigned short FIRST_ORDERED_NODE_TYPE = 9;
|
|
|
|
readonly attribute unsigned short resultType;
|
|
[Throws] readonly attribute unrestricted double numberValue;
|
|
[Throws] readonly attribute DOMString stringValue;
|
|
[Throws] readonly attribute boolean booleanValue;
|
|
[Throws] readonly attribute Node? singleNodeValue;
|
|
[Throws] readonly attribute boolean invalidIteratorState;
|
|
[Throws] readonly attribute unsigned long snapshotLength;
|
|
|
|
[Throws] Node? iterateNext();
|
|
[Throws] Node? snapshotItem(unsigned long index);
|
|
};
|