| Index: LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
|
| diff --git a/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js b/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
|
| index dd5ff86d907689e8955c7478585f1d95abe54827..75b6b89264687f0f45c9d8413131ae5c7305182d 100644
|
| --- a/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
|
| +++ b/LayoutTests/dom/xhtml/level3/core/nodesettextcontent06.js
|
| @@ -100,8 +100,8 @@ function nodesettextcontent06() {
|
| }
|
| doc = load(docRef, "doc", "hc_staff");
|
| elem = doc.createElementNS("http://www.w3.org/1999/xhtml","p");
|
| - attr = doc.createAttribute("xml:lang");
|
| - attrNode = elem.setAttributeNode(attr);
|
| + attr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
|
| + attrNode = elem.setAttributeNodeNS(attr);
|
| attr.textContent = "NA";
|
|
|
| textContent = attr.textContent;
|
|
|