OLD | NEW |
| 1 <!-- |
| 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. Use of this |
| 3 * source code is governed by a BSD-style license that can be found in the |
| 4 * LICENSE file. |
| 5 --> |
1 <script src="tabs_util.js"></script> | 6 <script src="tabs_util.js"></script> |
2 <script src="get_views_common.js"></script> | 7 <script src="get_views_common.js"></script> |
3 | 8 <script src="get_views_popup.js"></script> |
4 <script> | |
5 | |
6 chrome.test.runTests([ | |
7 function canGetViewsOfEmptyPopup() { | |
8 testGetNewWindowView({type: "popup"}, []); | |
9 }, | |
10 | |
11 function canGetViewsOfPopupWithUrl() { | |
12 var URLS = ["a.html"]; | |
13 testGetNewWindowView({type: "popup", url: URLS}, URLS); | |
14 } | |
15 ]); | |
16 </script> | |
OLD | NEW |