Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <HTML>
2 <HEAD>
3 <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
4 <script>
5 var xmlDoc;
7 function createDoc()
8 {
9 var xmlDoc = document.implementation.createDocument("", "", null);
10 var xmlElem = xmlDoc.firstChild;
11 xmlElem.appendChild(document.createTextNode("blabla"));
12 xmlElem.firstChild.nodeValue;
13 }
14 </script>
16 </HEAD>
17 <BODY onload="createDoc();">
18 </BODY>
19 </HTML>