Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / incognito / popup / popup.js
blob7740f2e1a7af13aa83a5283ffc3336b141838bf5
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 var pass = chrome.test.callbackPass;
6 var assertEq = chrome.test.assertEq;
7 var assertTrue = chrome.test.assertTrue;
9 chrome.test.runTests([
10   function getCurrentWindow() {
11     // With incognito enabled, we should get our current window (which should
12     // be incognito).
13     chrome.windows.getCurrent(pass(function(win) {
14       assertTrue(win.incognito);
15     }));
16   }
17 ]);