RetroZilla/extensions/xmlextras/tests/syncpost.html
2015-10-20 23:03:22 -04:00

74 lines
2.2 KiB
HTML

<html>
<head><title>Synchronized POST test</title>
<style type="text/css">
.box {
display: block;
border: 1px solid black;
margin-bottom: 0.5em;
}
.boxheader {
font-weight: bold;
color: maroon;
}
pre {
margin-left: 2em;
}
</style>
<script type="text/javascript">
function execute()
{
var x = document.implementation.createDocument("", "test", null);
x.documentElement.appendChild(document.createTextNode("Foo"));
x.documentElement.appendChild(x.createElementNS("http://www.w3.org/1999/xhtml","h1"));
x.documentElement.lastChild.appendChild(document.createTextNode("My Document Header"));
x.documentElement.lastChild.setAttribute("id","id1")
var p = new XMLHttpRequest();
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
p.open("POST", "http://green/cgi-bin/echo_xml.cgi", false);
p.send(x);
document.getElementById("id1").firstChild.nodeValue = p.responseText;
if (p.responseXML) {
try {
var s = new XMLSerializer();
var d = p.responseXML;
var str = s.serializeToString(d);
document.getElementById("id2").firstChild.nodeValue = str;
} catch (e) {
document.getElementById("id2").firstChild.nodeValue = e;
}
}
document.getElementById("id3").firstChild.nodeValue = p.getAllResponseHeaders();
document.getElementById("id4").firstChild.nodeValue = p.status;
document.getElementById("id5").firstChild.nodeValue = p.statusText;
document.getElementById("id6").firstChild.nodeValue = p.readyState;
}
</script>
</head>
<body onload="execute();">
<h1>Synchronized POST test</h1>
<div class="box"><span class="boxheader">responseText</span>
<pre id="id1">@@No result@@</pre>
</div>
<div class="box"><span class="boxheader">responseXML serialized</span>
<pre id="id2">@@No result@@</pre>
</div>
<div class="box"><span class="boxheader">getAllResponseHeaders()</span>
<pre id="id3">@@No result@@</pre>
</div>
<div class="box"><span class="boxheader">status</span>
<pre id="id4">@@No result@@</pre>
</div>
<div class="box"><span class="boxheader">statusText</span>
<pre id="id5">@@No result@@</pre>
</div>
<div class="box"><span class="boxheader">readyState</span>
<pre id="id6">@@No result@@</pre>
</div>
</body>
</html>