| Index: LayoutTests/dom/html/level1/core/hc_elementchangeattributevalue.js
|
| diff --git a/LayoutTests/dom/html/level1/core/hc_elementchangeattributevalue.js b/LayoutTests/dom/html/level1/core/hc_elementchangeattributevalue.js
|
| index 2777f222edf1ae1e6d459f153a21a8edc9baa656..d29969f1938a05e80381367a33accef91ad18696 100644
|
| --- a/LayoutTests/dom/html/level1/core/hc_elementchangeattributevalue.js
|
| +++ b/LayoutTests/dom/html/level1/core/hc_elementchangeattributevalue.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,18 +67,17 @@ function loadComplete() {
|
| }
|
| }
|
|
|
| -
|
| /**
|
| -*
|
| +*
|
| The "setAttribute(name,value)" method adds a new attribute
|
| to the Element. If the "strong" is already present, then
|
| its value should be changed to the new one that is in
|
| - the "value" parameter.
|
| -
|
| - Retrieve the last child of the fourth employee, then add
|
| - an attribute to it by invoking the
|
| + the "value" parameter.
|
| +
|
| + Retrieve the last child of the fourth employee, then add
|
| + an attribute to it by invoking the
|
| "setAttribute(name,value)" method. Since the name of the
|
| - used attribute("class") is already present in this
|
| + used attribute("class") is already present in this
|
| element, then its value should be changed to the new one
|
| of the "value" parameter.
|
|
|
| @@ -97,7 +91,7 @@ function hc_elementchangeattributevalue() {
|
| var elementList;
|
| var testEmployee;
|
| var attrValue;
|
| -
|
| +
|
| var docRef = null;
|
| if (typeof(this.doc) != 'undefined') {
|
| docRef = this.doc;
|
| @@ -108,11 +102,8 @@ function hc_elementchangeattributevalue() {
|
| testEmployee.setAttribute("class","Neither");
|
| attrValue = testEmployee.getAttribute("class");
|
| assertEquals("elementChangeAttributeValueAssert","Neither",attrValue);
|
| -
|
| -}
|
| -
|
| -
|
|
|
| +}
|
|
|
| function runTest() {
|
| hc_elementchangeattributevalue();
|
|
|