https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 42a98283681188744c47f2bba33ad818a5b8d585 authored by Stephen Chenney on 20 December 2018, 17:40:54 UTC
Fix table cell background painting under zoom and min-width
Tip revision: 42a9828
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