| <script type="text/javascript"> |
| var doc = document.implementation.createDocument("foo", "x", null); |
| var parent = doc.firstChild; |
| var kid = doc.createElementNS(null, "y"); |
| var serializer = new XMLSerializer(); |
| var xmlString = serializer.serializeToString(doc); |
| var outputText = document.getElementById("output"); |
| outputText.textContent = xmlString; |
| <body onload="runTest()"> |
| This tests that XMLSerializer.serializeToString() correctly writes out an empty default namespace declaration if the element is not in any namespace. |