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

Unified Diff: chrome/test/data/extensions/platform_apps/isolation/set_cookie.html

Issue 10349015: Make platform apps get isolated storage by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/platform_apps/isolation/set_cookie.html
diff --git a/chrome/test/data/extensions/platform_apps/isolation/set_cookie.html b/chrome/test/data/extensions/platform_apps/isolation/set_cookie.html
new file mode 100644
index 0000000000000000000000000000000000000000..3868f04693ee486d1ee4c679f9c4fc63214ae989
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/isolation/set_cookie.html
@@ -0,0 +1,9 @@
+<html>
+<body>
+<script>
+ // Tomorrow.
+ var expire = new Date(Date.now() + 24 * 60 * 60 * 1000);
+ document.cookie = 'testCookie=1; path=/; expires=' + expire + ';'
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698