OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * Checks visibility of tab handles against expectations, and navigates to all | 6 * Checks visibility of tab handles against expectations, and navigates to all |
7 * tabs with visible handles, validating visibility of all other tabs as it | 7 * tabs with visible handles, validating visibility of all other tabs as it |
8 * goes. | 8 * goes. |
9 */ | 9 */ |
10 netInternalsTest.test('netInternalsTourTabs', function() { | 10 netInternalsTest.test('netInternalsTourTabs', function() { |
(...skipping 12 matching lines...) Expand all Loading... |
23 timeline: true, | 23 timeline: true, |
24 dns: true, | 24 dns: true, |
25 sockets: true, | 25 sockets: true, |
26 spdy: true, | 26 spdy: true, |
27 httpCache: true, | 27 httpCache: true, |
28 httpThrottling: true, | 28 httpThrottling: true, |
29 serviceProviders: cr.isWindows, | 29 serviceProviders: cr.isWindows, |
30 tests: true, | 30 tests: true, |
31 hsts: true, | 31 hsts: true, |
32 logs: cr.isChromeOS, | 32 logs: cr.isChromeOS, |
33 prerender: true | 33 prerender: true, |
| 34 chromeos: cr.isChromeOS |
34 }; | 35 }; |
35 | 36 |
36 netInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); | 37 netInternalsTest.checkTabHandleVisibility(tabVisibilityState, true); |
37 | 38 |
38 testDone(); | 39 testDone(); |
39 }); | 40 }); |
OLD | NEW |