/* * Copyright (C)2005-2013 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ // This file is generated, do not edit! package js.html; /** Refer to nsIDOMXPathResult for more detail.

Documentation for this class was provided by MDN. */ @:native("XPathResult") extern class XPathResult { /** A result set containing whatever type naturally results from evaluation of the expression. Note that if the result is a node-set then UNORDERED_NODE_ITERATOR_TYPE is always the resulting type. */ static inline var ANY_TYPE : Int = 0; /** A result node-set containing any single node that matches the expression. The node is not necessarily the first node in the document that matches the expression. */ static inline var ANY_UNORDERED_NODE_TYPE : Int = 8; /** A result containing a single boolean value. This is useful for example, in an XPath expression using the not() function. */ static inline var BOOLEAN_TYPE : Int = 3; /** A result node-set containing the first node in the document that matches the expression. */ static inline var FIRST_ORDERED_NODE_TYPE : Int = 9; /** A result containing a single number. This is useful for example, in an XPath expression using the count() function. */ static inline var NUMBER_TYPE : Int = 1; /** A result node-set containing all the nodes matching the expression. The nodes in the result set are in the same order that they appear in the document. */ static inline var ORDERED_NODE_ITERATOR_TYPE : Int = 5; /** A result node-set containing snapshots of all the nodes matching the expression. The nodes in the result set are in the same order that they appear in the document. */ static inline var ORDERED_NODE_SNAPSHOT_TYPE : Int = 7; /** A result containing a single string. */ static inline var STRING_TYPE : Int = 2; /** A result node-set containing all the nodes matching the expression. The nodes may not necessarily be in the same order that they appear in the document. */ static inline var UNORDERED_NODE_ITERATOR_TYPE : Int = 4; /** A result node-set containing snapshots of all the nodes matching the expression. The nodes may not necessarily be in the same order that they appear in the document. */ static inline var UNORDERED_NODE_SNAPSHOT_TYPE : Int = 6; /** readonly boolean Getter throws DOMException. */ var booleanValue(default,null) : Bool; /** readonly boolean */ var invalidIteratorState(default,null) : Bool; /** readonly float Getter throws DOMException. */ var numberValue(default,null) : Float; /** readonly integer (short) */ var resultType(default,null) : Int; /** readonly Node Getter throws DOMException. */ var singleNodeValue(default,null) : Node; /** readonly Integer Getter throws DOMException. */ var snapshotLength(default,null) : Int; /** readonly String Getter throws DOMException. */ var stringValue(default,null) : String; function iterateNext() : Node; function snapshotItem( index : Int ) : Node; }