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] in 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.
9 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
12 // expose test function names
13 function exposeTestFunctionNames()
15 return ['XPathResult_numberValue'];
18 var docsLoaded = -1000000;
22 // This function is called by the testing framework before
23 // running the test suite.
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.
30 function setUpPage() {
31 setUpPageStatus = 'running';
34 // creates test document builder, may throw exception
36 builder = createConfiguredBuilder();
41 if (typeof(this.doc) != 'undefined') {
44 docsLoaded += preload(docRef, "doc", "staff");
46 if (docsLoaded == 1) {
47 setUpPageStatus = 'complete';
50 catchInitializationError(builder, ex);
51 setUpPageStatus = 'complete';
56 // This method is called on the completion of
57 // each asychronous load started in setUpTests.
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';
70 Create an XPathResult NUMBER_VALUE XPathResultType for expression
71 /staff/employee/salary[text() = '56,000'] checking that the
72 XPathResult.numberValue == 56.0
75 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResult-numberValue
76 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResult
77 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResultType
78 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator-createNSResolver
80 function XPathResult_numberValue() {
82 if(checkInitialization(builder, "XPathResult_numberValue") != null) return;
87 var UNORDERED_NODE_ITERATOR_TYPE = 4;
88 var ORDERED_NODE_ITERATOR_TYPE = 5;
89 var UNORDERED_NODE_SNAPSHOT_TYPE = 6;
90 var ORDERED_NODE_SNAPSHOT_TYPE = 7;
91 var ANY_UNORDERED_NODE_TYPE = 8;
92 var FIRST_ORDERED_NODE_TYPE = 9;
101 var expression = "substring-before(/staff/employee/salary[text() = '56,000'], ',')";
102 var xpathType = NUMBER_TYPE;
106 if (typeof(this.doc) != 'undefined') {
109 doc = load(docRef, "doc", "staff");
110 evaluator = createXPathEvaluator(doc);
111 resolver = evaluator.createNSResolver(doc);
113 outresult = evaluator.evaluate(expression,contextNode,resolver,xpathType,inresult);
114 numberValue = outresult.numberValue;
116 assertEquals("same",56.0,numberValue);
121 XPathResult_numberValue();