| Index: LayoutTests/dom/html/level1/core/hc_namednodemapnotfounderr.js
|
| diff --git a/LayoutTests/dom/html/level1/core/hc_namednodemapnotfounderr.js b/LayoutTests/dom/html/level1/core/hc_namednodemapnotfounderr.js
|
| index 67467c3989f40eaff1cbd30160a4e4f6333e4869..2c746b0dcce61a6c9ca11b71ae927cfaafc31920 100644
|
| --- a/LayoutTests/dom/html/level1/core/hc_namednodemapnotfounderr.js
|
| +++ b/LayoutTests/dom/html/level1/core/hc_namednodemapnotfounderr.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
|
| @@ -41,26 +38,24 @@ function setUpPage() {
|
| builder = createConfiguredBuilder();
|
|
|
| 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,
|
| @@ -72,17 +67,16 @@ function loadComplete() {
|
| }
|
| }
|
|
|
| -
|
| /**
|
| -*
|
| - The "removeNamedItem(name)" method raises a
|
| +*
|
| + The "removeNamedItem(name)" method raises a
|
| NOT_FOUND_ERR DOMException if there is not a node
|
| named "strong" in the map.
|
| -
|
| +
|
| Create a NamedNodeMap object from the attributes of the
|
| last child of the third employee and attempt to remove
|
| the "lang" attribute. There is not a node named
|
| - "lang" in the list and therefore the desired
|
| + "lang" in the list and therefore the desired
|
| exception should be raised.
|
|
|
| * @author Curt Arnold
|
| @@ -99,7 +93,7 @@ function hc_namednodemapnotfounderr() {
|
| var testEmployee;
|
| var attributes;
|
| var removedNode;
|
| -
|
| +
|
| var docRef = null;
|
| if (typeof(this.doc) != 'undefined') {
|
| docRef = this.doc;
|
| @@ -109,23 +103,19 @@ function hc_namednodemapnotfounderr() {
|
| testEmployee = elementList.item(2);
|
| attributes = testEmployee.attributes;
|
|
|
| -
|
| - {
|
| - success = false;
|
| - try {
|
| + {
|
| + success = false;
|
| + try {
|
| removedNode = attributes.removeNamedItem("lang");
|
| }
|
| - catch(ex) {
|
| + catch(ex) {
|
| success = (typeof(ex.code) != 'undefined' && ex.code == 8);
|
| - }
|
| - assertTrue("throw_NOT_FOUND_ERR",success);
|
| - }
|
| + }
|
| + assertTrue("throw_NOT_FOUND_ERR",success);
|
| + }
|
|
|
| }
|
|
|
| -
|
| -
|
| -
|
| function runTest() {
|
| hc_namednodemapnotfounderr();
|
| }
|
|
|