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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/cookies/resources/get-cookie.html

Issue 2623423002: Add console warning and tests for strict secure cookies.
Patch Set: Update comment Created 3 years, 11 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 <html>
3 <head>
4 <meta charset="utf-8">
5 <script>
6 var has_cookie = document.cookie.indexOf("test_cookie=1") >= 0;
7 window.parent.postMessage(has_cookie, '*');
8 </script>
9 </head>
10 <body onload="checkCookie()">
11 </body>
12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698