Skip to content

Instantly share code, notes, and snippets.

@EArminjon
Created October 17, 2024 15:31
Show Gist options
  • Select an option

  • Save EArminjon/ed92b791f024aa66699491aa969514fc to your computer and use it in GitHub Desktop.

Select an option

Save EArminjon/ed92b791f024aa66699491aa969514fc to your computer and use it in GitHub Desktop.
<html>
<body>
<h1>Cookie issue reproductible example</h1>
<p>Open the console to see the logs</p>
<button onclick="createCookieAndSendMessage()">
Create cookie
</button>
<script>
function createCookieAndSendMessage() {
// Create the cookie
document.cookie = 'consent=true; expires=Fri, 31 Dec 9999 23:59:59 GMT';
// Send the post message
window.postMessage({ id: "cookieAccepted" }, '*');
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment