Index: LayoutTests/dom/xhtml/level3/core/noderemovechild12.js |
diff --git a/LayoutTests/dom/xhtml/level3/core/noderemovechild12.js b/LayoutTests/dom/xhtml/level3/core/noderemovechild12.js |
index 4e18a2271e8ac9e869bc1f9af5d1711637898b85..6b41462dcbfded972b46e03053eb985c1493c908 100644 |
--- a/LayoutTests/dom/xhtml/level3/core/noderemovechild12.js |
+++ b/LayoutTests/dom/xhtml/level3/core/noderemovechild12.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,14 +68,13 @@ function loadComplete() { |
} |
} |
- |
/** |
-* |
- The method removeChild removes the child node indicated by oldChild from the list |
- of children, and returns it. |
+* |
+ The method removeChild removes the child node indicated by oldChild from the list |
+ of children, and returns it. |
- Using removeChild on a new DocumentFragment node attempt to remove a new EntityReference node. |
- Also attempt to remove the document fragment node from the EntityReference. Verify that a |
+ Using removeChild on a new DocumentFragment node attempt to remove a new EntityReference node. |
+ Also attempt to remove the document fragment node from the EntityReference. Verify that a |
NO_MODIFICATION_ALLOWED_ERR (EntityReference node is read-only) or a NOT_FOUND_ERR is thrown. |
* @author IBM |
@@ -96,7 +90,7 @@ function noderemovechild12() { |
var removedERef; |
var appendedChild; |
var removedChild; |
- |
+ |
var docRef = null; |
if (typeof(this.doc) != 'undefined') { |
docRef = this.doc; |
@@ -109,12 +103,12 @@ function noderemovechild12() { |
removedERef = docFrag.firstChild; |
assertNull("noderemovechild12",removedERef); |
- |
+ |
try { |
removedChild = eRef.removeChild(docFrag); |
- |
+ |
} catch (ex) { |
- if (typeof(ex.code) != 'undefined') { |
+ if (typeof(ex.code) != 'undefined') { |
switch(ex.code) { |
case /* NOT_FOUND_ERR */ 8 : |
break; |
@@ -123,15 +117,12 @@ function noderemovechild12() { |
default: |
throw ex; |
} |
- } else { |
+ } else { |
throw ex; |
} |
} |
- |
-} |
- |
- |
+} |
function runTest() { |
noderemovechild12(); |