blob: 973b95e779900bbf8cc6f3eb7158485b91c9bdca [file] [log] [blame]
<!DOCTYPE html>
<p>Test for <a href="http://crbug.com/172802">bug 172802</a>
- Wrong default Content-Type set in XMLHttpRequest.send(DOMString)</p>
<p>Should be text/plain;charset=UTF-8:</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
objXmlHttp = new XMLHttpRequest;
objXmlHttp.open("POST", "print-content-type.cgi", false);
objXmlHttp.send("");
document.write("<pre>" + objXmlHttp.responseText + "</pre>");
</script>