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

Side by Side Diff: chrome/test/data/extensions/api_test/isolated_apps/app2/main.html

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 Isolated App 2
4
5 <script>
6 // Set a cookie within the app.
7 var expire = new Date();
8 expire.setDate(expire.getDate() + 1); // tomorrow
9 document.cookie = "app2=4; path=/; expires=" + expire + ";"
10 </script>
11 </body>
12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698