mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
67 lines
1.7 KiB
HTML
67 lines
1.7 KiB
HTML
<html>
|
|
<head><title>Synchronized GET 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 p = new XMLHttpRequest();
|
|
//netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
|
|
p.open("GET", "data.xml",false);
|
|
p.send(null);
|
|
|
|
var str;
|
|
try {
|
|
var s = new XMLSerializer();
|
|
var d = p.responseXML;
|
|
str = s.serializeToString(d);
|
|
} catch (e) {
|
|
str = e;
|
|
}
|
|
document.getElementById("id1").firstChild.nodeValue = p.responseText;
|
|
document.getElementById("id2").firstChild.nodeValue = str;
|
|
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 GET 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>
|