Index: LayoutTests/dom/xhtml/level3/core/nodeisdefaultnamespace02.js |
diff --git a/LayoutTests/dom/xhtml/level3/core/nodeisdefaultnamespace02.js b/LayoutTests/dom/xhtml/level3/core/nodeisdefaultnamespace02.js |
index 1a2c4d69a85d5f7cbe346a75ed044a25278d3f92..8a747930b18eb7a16063e2bf3af55264b8f95e73 100644 |
--- a/LayoutTests/dom/xhtml/level3/core/nodeisdefaultnamespace02.js |
+++ b/LayoutTests/dom/xhtml/level3/core/nodeisdefaultnamespace02.js |
@@ -1,17 +1,14 @@ |
- |
/* |
-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. |
+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 |
*/ |
- |
- |
/** |
* Gets URI that identifies the test. |
* @return uri identifier of test |
@@ -42,26 +39,24 @@ function setUpPage() { |
setImplementationAttribute("namespaceAware", true); |
docsLoaded = 0; |
- |
+ |
var docRef = null; |
if (typeof(this.doc) != 'undefined') { |
docRef = this.doc; |
} |
docsLoaded += preload(docRef, "doc", "hc_staff"); |
- |
+ |
if (docsLoaded == 1) { |
setUpPageStatus = 'complete'; |
} |
} catch(ex) { |
- catchInitializationError(builder, ex); |
+ catchInitializationError(builder, ex); |
setUpPageStatus = 'complete'; |
} |
} |
- |
- |
// |
-// This method is called on the completion of |
+// This method is called on the completion of |
// each asychronous load started in setUpTests. |
// |
// When every synchronous loaded document has completed, |
@@ -73,12 +68,11 @@ function loadComplete() { |
} |
} |
- |
/** |
-* |
- Using isDefaultNamespace on on a new Document node with the value of the namespaceURI |
- parameter equal to the namespaceURI of the newly created Document and check if the |
- value returned is false. |
+* |
+ Using isDefaultNamespace on on a new Document node with the value of the namespaceURI |
+ parameter equal to the namespaceURI of the newly created Document and check if the |
+ value returned is false. |
* @author IBM |
* @author Neil Delima |
@@ -98,7 +92,7 @@ function nodeisdefaultnamespace02() { |
var docElem; |
var rootNS; |
var rootName; |
- |
+ |
var docRef = null; |
if (typeof(this.doc) != 'undefined') { |
docRef = this.doc; |
@@ -119,9 +113,6 @@ isDefault = newDoc.isDefaultNamespace(nullNSURI); |
} |
- |
- |
- |
function runTest() { |
nodeisdefaultnamespace02(); |
} |