Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: LayoutTests/http/tests/xmlhttprequest/access-control-preflight-request-headers-origin.html

Issue 18595008: Prevents sending of 'orgin' in the "Access-Control-Request-Headers" when preflight requests are mad… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/access-control-preflight-request-headers-origin-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <body>
3 <p>Test that 'Origin' is not included in Access-Control-Request-Headers in a pre flight request. Should print PASS.</p>
4 <div id="log"></div>
5 <script>
6 function log(message) {
7 document.getElementById("log").innerHTML += message + "<br>";
8 }
9
10 if (window.layoutTestController) {
11 layoutTestController.dumpAsText();
12 layoutTestController.waitUntilDone();
13 }
14
15 var xhr = new XMLHttpRequest();
16 xhr.open("GET", "http://localhost:8000/xmlhttprequest/resources/access-control-p reflight-request-headers-origin.php");
17 xhr.setRequestHeader("X-Custom-Header", "PASS");
18 xhr.onerror = function () {
19 log("FAIL");
20 if (window.layoutTestController)
21 layoutTestController.notifyDone();
22 };
23 xhr.onreadystatechange = function () {
24 if (xhr.readyState == 4) {
25 log(xhr.responseText);
26 if (window.layoutTestController)
27 layoutTestController.notifyDone();
28 }
29 };
30 xhr.send();
31
32 </script>
33 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/access-control-preflight-request-headers-origin-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698