andersca | 42ff937 | 2006-05-08 21:30:14 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | Copyright © 2001-2004 World Wide Web Consortium, |
| 4 | (Massachusetts Institute of Technology, European Research Consortium |
| 5 | for Informatics and Mathematics, Keio University). All |
| 6 | Rights Reserved. This work is distributed under the W3C® Software License [1] in the |
| 7 | hope that it will be useful, but WITHOUT ANY WARRANTY; without even |
| 8 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 9 | |
| 10 | [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 |
| 11 | */ |
| 12 | |
| 13 | |
| 14 | // expose test function names |
| 15 | function exposeTestFunctionNames() |
| 16 | { |
| 17 | return ['Conformance_ID']; |
| 18 | } |
| 19 | |
| 20 | var docsLoaded = -1000000; |
| 21 | var builder = null; |
| 22 | |
| 23 | // |
| 24 | // This function is called by the testing framework before |
| 25 | // running the test suite. |
| 26 | // |
| 27 | // If there are no configuration exceptions, asynchronous |
| 28 | // document loading is started. Otherwise, the status |
| 29 | // is set to complete and the exception is immediately |
| 30 | // raised when entering the body of the test. |
| 31 | // |
| 32 | function setUpPage() { |
| 33 | setUpPageStatus = 'running'; |
| 34 | try { |
| 35 | // |
| 36 | // creates test document builder, may throw exception |
| 37 | // |
| 38 | builder = createConfiguredBuilder(); |
| 39 | |
| 40 | docsLoaded = 0; |
| 41 | |
| 42 | var docRef = null; |
| 43 | if (typeof(this.doc) != 'undefined') { |
| 44 | docRef = this.doc; |
| 45 | } |
| 46 | docsLoaded += preload(docRef, "doc", "internaldtd"); |
| 47 | |
| 48 | if (docsLoaded == 1) { |
ap@webkit.org | 32a2593 | 2009-02-23 13:27:32 +0000 | [diff] [blame] | 49 | setUpPageStatus = 'complete'; |
andersca | 42ff937 | 2006-05-08 21:30:14 +0000 | [diff] [blame] | 50 | } |
| 51 | } catch(ex) { |
| 52 | catchInitializationError(builder, ex); |
ap@webkit.org | 32a2593 | 2009-02-23 13:27:32 +0000 | [diff] [blame] | 53 | setUpPageStatus = 'complete'; |
andersca | 42ff937 | 2006-05-08 21:30:14 +0000 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | |
| 57 | |
| 58 | |
| 59 | // |
| 60 | // This method is called on the completion of |
| 61 | // each asychronous load started in setUpTests. |
| 62 | // |
| 63 | // When every synchronous loaded document has completed, |
| 64 | // the page status is changed which allows the |
| 65 | // body of the test to be executed. |
| 66 | function loadComplete() { |
| 67 | if (++docsLoaded == 1) { |
| 68 | setUpPageStatus = 'complete'; |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | |
| 73 | /** |
| 74 | * |
| 75 | 1.3 Conformance - Check that the element returned by XPath id() function |
| 76 | returns the same element as Document.getElementById |
| 77 | |
| 78 | * @author Bob Clary |
| 79 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#Conformance |
| 80 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator |
| 81 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator-createNSResolver |
| 82 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathNSResolver |
| 83 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator-evaluate |
| 84 | * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResult-iterateNext |
| 85 | */ |
| 86 | function Conformance_ID() { |
| 87 | var success; |
| 88 | if(checkInitialization(builder, "Conformance_ID") != null) return; |
| 89 | var ANY_TYPE = 0; |
| 90 | var NUMBER_TYPE = 1; |
| 91 | var STRING_TYPE = 2; |
| 92 | var BOOLEAN_TYPE = 3; |
| 93 | var UNORDERED_NODE_ITERATOR_TYPE = 4; |
| 94 | var ORDERED_NODE_ITERATOR_TYPE = 5; |
| 95 | var UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
| 96 | var ORDERED_NODE_SNAPSHOT_TYPE = 7; |
| 97 | var ANY_UNORDERED_NODE_TYPE = 8; |
| 98 | var FIRST_ORDERED_NODE_TYPE = 9; |
| 99 | var doc; |
| 100 | var resolver; |
| 101 | var evaluator; |
| 102 | var contextNode; |
| 103 | var inresult = null; |
| 104 | |
| 105 | var outresult = null; |
| 106 | |
| 107 | var expression = "id('child1')"; |
| 108 | var xpathType = ANY_TYPE; |
| 109 | var outNode; |
| 110 | var child1Element; |
| 111 | |
| 112 | var docRef = null; |
| 113 | if (typeof(this.doc) != 'undefined') { |
| 114 | docRef = this.doc; |
| 115 | } |
| 116 | doc = load(docRef, "doc", "internaldtd"); |
| 117 | evaluator = createXPathEvaluator(doc); |
| 118 | resolver = evaluator.createNSResolver(doc); |
| 119 | contextNode = doc; |
| 120 | outresult = evaluator.evaluate(expression,contextNode,resolver,xpathType,inresult); |
| 121 | outNode = outresult.iterateNext(); |
| 122 | child1Element = doc.getElementById("child1"); |
| 123 | assertSame("S1.3-Conformance-ID",child1Element,outNode); |
| 124 | |
| 125 | } |
| 126 | |
| 127 | |
| 128 | |
| 129 | |
| 130 | function runTest() { |
| 131 | Conformance_ID(); |
| 132 | } |