Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / uitest / window_open / newtab.js
blob7721a9714e66aa2d519461c7d0215492c560c5dd
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 function testExtensionApi() {
6   try {
7     chrome.tabs.getAllInWindow(null, function() {
8       window.domAutomationController.send(
9           !chrome.runtime.lastError);
10     });
11   } catch (e) {
12     window.domAutomationController.send(false);
13   }