blob: 19848848e5356616e486f36ac84c09272f839ac9 [file] [log] [blame]
<html>
<body>
<p>Test for <a href="http://bugzilla.opendarwin.org/show_bug.cgi?id=3565">bug 3565</a>
- posting data via XMLHttpRequest doesn't work (wrong Content-Type).</p>
<p>Should be application/xml:</p>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
objXmlHttp = new XMLHttpRequest;
objXmlHttp.open("POST", "print-content-type.cgi", false);
objXmlHttp.send("");
document.write("<pre>" + objXmlHttp.responseText + "</pre>");
</script>
</body>
</html>