https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 37940982e9e57da55d0bc3cfde5b699761406271 authored by Hwanseung Lee on 27 March 2018, 23:07:16 UTC
[css-typed-om] support r and rx and ry properties
Tip revision: 3794098
echo-cookie.html
<!doctype html>
<html>
<head>
  <meta charset=utf-8>
  <title>helper iframe for matching cookie path tests</title>
  <meta name=help href="http://tools.ietf.org/html/rfc6265#section-5.1.4">
</head>
<body>
<script>
window.setCookie = function (name, path) {
  document.cookie = name + '=1; Path=' + path + ';';
}
window.fetchCookieThen = function (name, path) {
  return fetch("/cookies/resources/set-cookie.py?name=" + encodeURIComponent(name) + "&path=" + encodeURIComponent(path), {'credentials': 'include'});
};
window.isCookieSet = function (name, path) {
  return document.cookie.match(name + '=1');
};
window.expireCookie = function (name, path) {
  document.cookie = name + '=0; expires=Thu, 01 Jan 1970 00:00:01 GMT; path=' + path + ';';
};
</script>
</body>
</html>
back to top