| <p>Test that custom headers are not sent with OPTIONS preflight request.</p> |
| testRunner.waitUntilDone(); |
| var req = new XMLHttpRequest; |
| req.open("GET", "/resources/reset-temp-file.py?filename=access-control-preflight-headers-async-status", false); |
| var req = new XMLHttpRequest; |
| req.open("GET", "http://localhost:8000/xmlhttprequest/resources/no-custom-header.py?filename=access-control-preflight-headers-async-status"); |
| req.setRequestHeader("X-Custom-Header", "foobar"); |
| req.onerror = function() { |
| document.body.appendChild(document.createTextNode("FAIL: onerror called")); |
| req.onload = function() { |
| document.body.appendChild(document.createTextNode(req.responseText)); |