https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 378530000a7140ccfc83c2df6ef4bb92543103db authored by Sandra Sun on 19 March 2018, 16:31:26 UTC
scroll-snap-align should specify inline and block.
Tip revision: 3785300
meta-blocked.html
<!DOCTYPE html>
<head>
  <meta http-equiv="set-cookie" content="meta-set-cookie=1">
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
</head>
<body>
  <script>
    test(t => {
      assert_equals(document.cookie.indexOf('meta-set-cookie'), -1);
    }, "Cookie is not set from `<meta>`.");
  </script>
</body>
back to top