Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/cookies/resources/post-cookies-onmessage.php

Issue 1783813002: SameSite: Strict/Lax behavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@strict-lax
Patch Set: OOPIF. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <script>
3
4 var from_http = <?php
5 echo json_encode($_COOKIE, JSON_PRETTY_PRINT);
Mike West 2016/03/21 11:03:13 I think our linux trybots don't support JSON_PRETT
6 ?>;
7
8 window.addEventListener("message", e => {
9 e.source.postMessage({
10 'http': from_http,
11 'document': document.cookie
12 }, "*");
13 });
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698