https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 822e9c88e5c38174de80ea6a822b32578d07fa94 authored by moz-wptsync-bot on 28 March 2018, 19:30:44 UTC
Correct readyState in WebSocket when worker goes away,
Tip revision: 822e9c8
set-from-dom.sub.html
<!doctype html>
<html>
<head>
  <meta charset=utf-8>
  <title>Set 'secure' cookie from `document.cookie` on a non-secure page</title>
  <meta name=help href="https://tools.ietf.org/html/draft-west-leave-secure-cookies-alone">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="/cookies/resources/testharness-helpers.js"></script>
</head>
<body>
<div id=log></div>
<script>
  var tests = [
    [
      "'secure' cookie not set in `document.cookie`",
      function () {
        var originalCookie = document.cookie;
        document.cookie = "secure_from_nonsecure_dom=1; secure; path=/";
        assert_equals(document.cookie, originalCookie);
        this.done();
      }
    ],
    [
      "'secure' cookie not sent in HTTP request",
      function () {
        document.cookie = "secure_from_nonsecure_dom=1; secure; path=/";
        fetch("https://{{host}}:{{ports[https][0]}}/cookies/resources/echo-json.py", { "credentials": "include" })
          .then(this.step_func(function (r) {
              return r.json();
          }))
          .then(this.step_func_done(function (j) {
              assert_equals(j["secure_from_nonsecure_dom"], undefined);
          }));
      }
    ]
  ];

  function clearKnownCookie() {
    document.cookie = "secure_from_nonsecure_dom=0; Secure; expires=Thu, 01 Jan 1970 00:00:01 GMT; path=/";
  }

  executeTestsSerially(tests, clearKnownCookie, clearKnownCookie);
</script>
</body>
</html>

back to top