summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/samesite/resources/echo-cookies.html
blob: a1b29b9b03c198c46c4b1e78094acc4a2f0d157e (plain)
1
2
3
4
5
6
7
8
<!DOCTYPE html>
<meta charset="utf-8">
<script>
  if (window.opener)
    window.opener.postMessage({ type: 'COOKIES_SET', cookies: document.cookie }, '*');
  if (window.parent !== window)
    window.parent.postMessage({ type: 'FRAME_COOKIES_SET', cookies: document.cookie }, '*');
</script>