blob: 270c61ea2054ba3fa20ccc90ccdd3d0dd6975b85 [file] [log] [blame]
/*
Copyright © 2001-2004 World Wide Web Consortium,
(Massachusetts Institute of Technology, European Research Consortium
for Informatics and Mathematics, Keio University). All
Rights Reserved. This work is distributed under the W3C® Software License [1] in the
hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
*/
// expose test function names
function exposeTestFunctionNames()
{
return ['Text_Nodes'];
}
var docsLoaded = -1000000;
var builder = null;
//
// This function is called by the testing framework before
// running the test suite.
//
// If there are no configuration exceptions, asynchronous
// document loading is started. Otherwise, the status
// is set to complete and the exception is immediately
// raised when entering the body of the test.
//
function setUpPage() {
setUpPageStatus = 'running';
try {
//
// creates test document builder, may throw exception
//
builder = createConfiguredBuilder();
docsLoaded = 0;
var docRef = null;
if (typeof(this.doc) != 'undefined') {
docRef = this.doc;
}
docsLoaded += preload(docRef, "doc", "staff");
if (docsLoaded == 1) {
setUpPageStatus = 'complete';
}
} catch(ex) {
catchInitializationError(builder, ex);
setUpPageStatus = 'complete';
}
}
//
// This method is called on the completion of
// each asychronous load started in setUpTests.
//
// When every synchronous loaded document has completed,
// the page status is changed which allows the
// body of the test to be executed.
function loadComplete() {
if (++docsLoaded == 1) {
setUpPageStatus = 'complete';
}
}
/**
*
1.2.4 Text Nodes -
Create ANY_TYPE XPathResult matching //text(),
check that each matching Node is a Text Node, and
that no pair of nodes in the result are siblings.
* @author Bob Clary
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#Mapping
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator-createNSResolver
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvaluator-evaluate
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathNSResolver
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResult
* @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathResult-iterateNext
*/
function Text_Nodes() {
var success;
if(checkInitialization(builder, "Text_Nodes") != null) return;
var ANY_TYPE = 0;
var NUMBER_TYPE = 1;
var STRING_TYPE = 2;
var BOOLEAN_TYPE = 3;
var UNORDERED_NODE_ITERATOR_TYPE = 4;
var ORDERED_NODE_ITERATOR_TYPE = 5;
var UNORDERED_NODE_SNAPSHOT_TYPE = 6;
var ORDERED_NODE_SNAPSHOT_TYPE = 7;
var ANY_UNORDERED_NODE_TYPE = 8;
var FIRST_ORDERED_NODE_TYPE = 9;
var doc;
var resolver;
var evaluator;
var contextNode;
var inresult = null;
var outresult = null;
var expression = "//text()";
var xpathType = ANY_TYPE;
var currNode;
var nextNode;
var currNodeNextSibling;
var nextNodePrevSibling;
var nodeType;
var isTextNode;
var docRef = null;
if (typeof(this.doc) != 'undefined') {
docRef = this.doc;
}
doc = load(docRef, "doc", "staff");
evaluator = createXPathEvaluator(doc);
resolver = evaluator.createNSResolver(doc);
contextNode = doc;
outresult = evaluator.evaluate(expression,contextNode,resolver,xpathType,inresult);
currNode = outresult.iterateNext();
while(
(currNode != null)
) {
nodeType = currNode.nodeType;
isTextNode = "true";
if(
(!(3 == nodeType) && !(4 == nodeType))
) {
isTextNode = "false";
}
assertEquals("S1.2.4-Text-Nodes-nodeType","true".toLowerCase(),isTextNode.toLowerCase());
nextNode = outresult.iterateNext();
if(
(nextNode != null)
) {
currNodeNextSibling = currNode.nextSibling;
// WebKit fix: inverted the condition: <http://bugs.webkit.org/show_bug.cgi?id=12560>.
if(
same(nextNode,currNodeNextSibling)
) {
assertTrue("S1.2.4-Text-Nodes-Adjacent-Next",false);
}
nextNodePrevSibling = nextNode.previousSibling;
// WebKit fix: inverted the condition: <http://bugs.webkit.org/show_bug.cgi?id=12560>.
if(
same(nextNodePrevSibling,currNode)
) {
assertTrue("S1.2.4-Text-Nodes-Adjacent-Prev",false);
}
}
currNode = nextNode;
}
}
function runTest() {
Text_Nodes();
}