Index: LayoutTests/fast/dom/attribute-downcast-right.html |
diff --git a/LayoutTests/fast/dom/attribute-downcast-right.html b/LayoutTests/fast/dom/attribute-downcast-right.html |
index a26d72bba6d52d2836e7f4dd11dedf1edb5df539..1a03005513669b42b666cc0b24d3f03629cfde51 100644 |
--- a/LayoutTests/fast/dom/attribute-downcast-right.html |
+++ b/LayoutTests/fast/dom/attribute-downcast-right.html |
@@ -4,8 +4,8 @@ if (window.testRunner) |
var oElement = document.createElement("s") |
var oElementNS = document.createElementNS("http://example.com/", "example"); |
-oElementNS.setAttributeNS(); |
-var oAttributeNS = oElementNS.getAttributeNodeNS(); |
+oElementNS.setAttributeNS("http://example.com/", "example", ""); |
+var oAttributeNS = oElementNS.getAttributeNodeNS("http://example.com/", "example"); |
var oAttributeNSClone = oAttributeNS.cloneNode(); |
oElement.setAttributeNode(oAttributeNSClone); |
</SCRIPT> |