summaryrefslogtreecommitdiffstats
path: root/dom/security/test/general/file_same_site_cookies_bug1748693.sjs
blob: 6890bafa173ef38e77bffdec6a9f713a49b5db25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const MESSAGE_PAGE = function (msg) {
  return `
<!DOCTYPE html>
<html>
  <body>
    <p id="msg">${msg}</p>
  <body>
</html>
`;
};

function handleRequest(request, response) {
  response.setHeader("Cache-Control", "no-store");
  response.setHeader("Content-Type", "text/html");

  if (request.queryString.includes("setcookies")) {
    response.setHeader(
      "Set-Cookie",
      "auth_secure=foo; SameSite=None; HttpOnly; Secure",
      true
    );
    response.setHeader("Set-Cookie", "auth=foo; HttpOnly;", true);
    response.write(MESSAGE_PAGE(request.queryString));
    return;
  }

  const cookies = request.hasHeader("Cookie")
    ? request.getHeader("Cookie")
    : "";
  response.write(MESSAGE_PAGE(cookies));
}