- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / incognito / popup / popup.js
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.
4
5 var pass = chrome.test.callbackPass;
6 var assertEq = chrome.test.assertEq;
7 var assertTrue = chrome.test.assertTrue;
8
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 ]);