4 <title>XMLHttpRequest: open() - allowed case in/sensitive methods test
</title>
5 <script src=
"../resources/testharness.js"></script>
6 <script src=
"../resources/testharnessreport.js"></script>
9 <p>Valid methods per step-
5 of http://xhr.spec.whatwg.org/#the-open()-method.
</p>
10 <script type=
"text/javascript">
11 function testMethod(methodName
) {
12 var client
= new XMLHttpRequest();
13 client
.open(methodName
, "resources/echo-request-method.php");
14 client
.onreadystatechange = function(event
) {
15 if (event
.target
.readyState
== 4)
16 assert_equals(client
.getResponseHeader("x-custom-request-method"), methodName
.toUpperCase());
21 test(function() { testMethod("PUT"); });
22 test(function() { testMethod("Put"); });
23 test(function() { testMethod("DELETE"); });
24 test(function() { testMethod("DeLeTe"); });
25 test(function() { testMethod("HEAD"); });
26 test(function() { testMethod("hEAd"); });
27 test(function() { testMethod("OPTIONS"); });
28 test(function() { testMethod("OPtiOns"); });
29 test(function() { testMethod("POST"); });
30 test(function() { testMethod("post"); });
31 test(function() { testMethod("GET"); });
32 test(function() { testMethod("gEt"); });