Index: LayoutTests/dom/xhtml/level3/core/documentadoptnode03.js |
diff --git a/LayoutTests/dom/xhtml/level3/core/documentadoptnode03.js b/LayoutTests/dom/xhtml/level3/core/documentadoptnode03.js |
index f786ae7d3cb275bb081cc1a7ef53d2b278ddc01a..3893883b976210b981355438ec30e633289acd29 100644 |
--- a/LayoutTests/dom/xhtml/level3/core/documentadoptnode03.js |
+++ b/LayoutTests/dom/xhtml/level3/core/documentadoptnode03.js |
@@ -101,7 +101,7 @@ function documentadoptnode03() { |
docRef = this.doc; |
} |
doc = load(docRef, "doc", "hc_staff"); |
- newAttr = doc.createAttributeNS(xmlNS,"xml:lang"); |
+ newAttr = doc.createAttribute("xml:lang"); |
adoptedAttr = doc.adoptNode(newAttr); |
if( |
@@ -120,7 +120,6 @@ function documentadoptnode03() { |
isSpecified = adoptedAttr.specified; |
assertEquals("documentadoptode03_nodeName","xml:lang",nodeName); |
- assertEquals("documentadoptNode03_namespaceURI",xmlNS,nodeNamespaceURI); |
assertEquals("documentadoptnode03_prefix","xml",nodePrefix); |
assertNull("documentadoptnode03_ownerDoc",attrOwnerElem); |
assertTrue("documentadoptnode03_specified",isSpecified); |