Skip to content

Commit

Permalink
Merge pull request servo#239 from w3c/Moz_Bug_819051_test
Browse files Browse the repository at this point in the history
new test for setRequestHeader() and open()
  • Loading branch information
zcorpan committed Mar 2, 2014
2 parents b6f1bea + 5de28d4 commit ebd00c6
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions XMLHttpRequest/setrequestheader-open-setrequestheader.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<!--
Test from https://bugzilla.mozilla.org/show_bug.cgi?id=819051
-->
<head>
<title>XMLHttpRequest: setRequestHeader() and open()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#the-open()-method" data-tested-assertations="following::OL[1]/LI[14]/ul[1]/li[4]" />
<link rel="help" href="http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html#the-setrequestheader()-method" data-tested-assertations="following::OL[1]/LI[6] following::ol[1]/li[7]" />
</head>
<body>
<p id="log"></p>
<script type="text/javascript">
var test = async_test();

var url = "resources/inspect-headers.py?filter_name=x-appended-to-this";

var xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.setRequestHeader("X-appended-to-this", "False");
xhr.open("GET", url);
xhr.setRequestHeader("X-appended-to-this", "True");

xhr.onreadystatechange = function() {
if (this.readyState == 4) {
test.step(function (){
assert_equals(xhr.responseText, "x-appended-to-this: True\n", "Set headers record should have been cleared by open.");
test_standard_header();
});
}
}

xhr.send();

function test_standard_header () {
var header_tested = "Accept";
var xhr = new XMLHttpRequest();
xhr.open("GET", url);
xhr.setRequestHeader("Accept", "foo/bar");
xhr.open("GET", url);
xhr.setRequestHeader("Accept", "bar/foo");

xhr.onreadystatechange = function() {
if (this.readyState == 4) {
test.step(function (){
assert_equals(xhr.responseText, "accept: bar/foo\n", "Set headers record should have been cleared by open.");
test.done();
});
}
}

xhr.send();
}


</script>
</pre>
</body>
</html>

0 comments on commit ebd00c6

Please sign in to comment.