Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / tabs / incognito_disabled / background.js
blobb15d7706b04264699afc7476032fec6b33d851c4
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 chrome.test.runTests([
6 function createIncognitoWindow() {
7 chrome.windows.create({ url: "about:blank", incognito: true },
8 function(window) {
9 chrome.test.assertEq(window, undefined);
10 chrome.test.notifyPass();
11 });
13 ]);