mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
95 lines
2.7 KiB
HTML
95 lines
2.7 KiB
HTML
<html>
|
|
<head><title>POST test</title>
|
|
<style type="text/css">
|
|
.box {
|
|
display: box;
|
|
border: 1px solid black;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
.boxheader {
|
|
font-weight: bold;
|
|
color: maroon;
|
|
}
|
|
pre {
|
|
margin-left: 2em;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
const WSTRING_CONTRACTID = "@mozilla.org/supports-wstring;1";
|
|
|
|
// You can only create the text string if you can bybass security, like in chrome
|
|
var sendPlainTextData = false;
|
|
|
|
var x;
|
|
if (!sendPlainTextData) {
|
|
x = document.implementation.createDocument("", "test", null);
|
|
x.documentElement.appendChild(document.createElement("Foo"));
|
|
x.documentElement.appendChild(document.createElement("Bar"));
|
|
x.documentElement.firstChild.appendChild(document.createTextNode("My Stuff\nYeah"));
|
|
}
|
|
|
|
var p = new XMLHttpRequest();
|
|
|
|
function myfunc(e)
|
|
{
|
|
document.getElementById("id1").firstChild.nodeValue = p.responseText;
|
|
if (p.responseXML) {
|
|
var s = new XMLSerializer();
|
|
var d = p.responseXML;
|
|
var str = s.serializeToString(d);
|
|
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;
|
|
var eventProperties = "";
|
|
for (prop in e) {
|
|
eventProperties += prop + " : '" + e[prop] + "'\n";
|
|
}
|
|
document.getElementById("id7").firstChild.nodeValue =
|
|
"Event object: " + e + "\n" +
|
|
"Event properties:\n" + eventProperties;
|
|
}
|
|
|
|
p.onload = myfunc;
|
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
|
|
p.open("POST", "http://green/cgi-bin/this.handler.does.not.exist.xgfrsjfrsgdfr.cgi");
|
|
|
|
if (!sendPlainTextData) {
|
|
p.send(x);
|
|
} else {
|
|
var mystr = Components.classes[WSTRING_CONTRACTID].createInstance(Components.interfaces.nsISupportsWString);
|
|
mystr.data = "Heikki's data";
|
|
p.send(mystr);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>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>
|
|
<div class="box"><span class="boxheader">Event information</span>
|
|
<pre id="id7">@@No result@@</pre>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|