| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 const unsigned short BOOLEAN_TYPE = 3; | 25 const unsigned short BOOLEAN_TYPE = 3; |
| 26 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4; | 26 const unsigned short UNORDERED_NODE_ITERATOR_TYPE = 4; |
| 27 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5; | 27 const unsigned short ORDERED_NODE_ITERATOR_TYPE = 5; |
| 28 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6; | 28 const unsigned short UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
| 29 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7; | 29 const unsigned short ORDERED_NODE_SNAPSHOT_TYPE = 7; |
| 30 const unsigned short ANY_UNORDERED_NODE_TYPE = 8; | 30 const unsigned short ANY_UNORDERED_NODE_TYPE = 8; |
| 31 const unsigned short FIRST_ORDERED_NODE_TYPE = 9; | 31 const unsigned short FIRST_ORDERED_NODE_TYPE = 9; |
| 32 | 32 |
| 33 readonly attribute unsigned short resultType; | 33 readonly attribute unsigned short resultType; |
| 34 [GetterRaisesException] readonly attribute double numberValue; | 34 [GetterRaisesException] readonly attribute double numberValue; |
| 35 | 35 |
| 36 [GetterRaisesException] readonly attribute DOMString stringValue; | 36 [GetterRaisesException] readonly attribute DOMString stringValue; |
| 37 | 37 |
| 38 [GetterRaisesException] readonly attribute boolean booleanValue; | 38 [GetterRaisesException] readonly attribute boolean booleanValue; |
| 39 | 39 |
| 40 [GetterRaisesException] readonly attribute Node singleNodeValue; | 40 [GetterRaisesException] readonly attribute Node singleNodeValue; |
| 41 | 41 |
| 42 readonly attribute boolean invalidIteratorState; | 42 readonly attribute boolean invalidIteratorState; |
| 43 [GetterRaisesException] readonly attribute unsigned long snapshotLength; | 43 [GetterRaisesException] readonly attribute unsigned long snapshotLength; |
| 44 | 44 |
| 45 [RaisesException] Node iterateNext(); | 45 [RaisesException] Node iterateNext(); |
| 46 [RaisesException] Node snapshotItem([Default=Undefined] optional unsigned lo
ng index); | 46 [RaisesException] Node snapshotItem([Default=Undefined] optional unsigned lo
ng index); |
| 47 }; | 47 }; |
| 48 | 48 |
| OLD | NEW |