Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / cookies / api / background.js
blob25b5c6c84855911c41389591f478be09c4e67fae
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Ensure we started with an empty profile.
6 chrome.test.assertEq(document.cookie, "");
8 // Set some cookies with a few different modifiers.
9 var expire = new Date();
10 expire.setDate(expire.getDate() + 1);  // tomorrow
11 document.cookie = "a=1";
12 document.cookie = "b=2; path=/; domain=" + location.host;
13 document.cookie = "c=3; path=/; expires=" + expire +
14                   "; domain=" + location.host;
16 // Open a tab. This doesn't really prove we're writing to disk, but it is
17 // difficult to prove that without shutting down the process.
18 chrome.tabs.create({url: "tab.html"});