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