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

Side by Side Diff: chrome/test/data/extensions/api_test/incognito/popup/popup.js

Issue 8758008: Move another block of extension tests to manifest_version 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 // 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 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698