-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from w3c/Moz_Bug_819051_test
new test for setRequestHeader() and open()
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |