3 testRunner.dumpAsText();
5 var oElement = document.createElement(
"s")
6 var oElementNS = document.createElementNS(
"http://example.com/",
"example");
7 oElementNS.setAttributeNS(
"http://example.com/",
"example",
"");
8 var oAttributeNS = oElementNS.getAttributeNodeNS(
"http://example.com/",
"example");
9 var oAttributeNSClone = oAttributeNS.cloneNode();
10 oElement.setAttributeNode(oAttributeNSClone);
13 This tests that an Attribute object is not downcasted to a MappedAttribute.
14 See http://bugs.webkit.org/show_bug.cgi?id=
21032 .