OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "base/command_line.h" | 5 #include "base/command_line.h" |
6 #include "chrome/browser/browser.h" | 6 #include "chrome/browser/browser.h" |
7 #include "chrome/browser/debugger/devtools_client_host.h" | 7 #include "chrome/browser/debugger/devtools_client_host.h" |
8 #include "chrome/browser/debugger/devtools_manager.h" | 8 #include "chrome/browser/debugger/devtools_manager.h" |
9 #include "chrome/browser/debugger/devtools_window.h" | 9 #include "chrome/browser/debugger/devtools_window.h" |
10 #include "chrome/browser/renderer_host/render_view_host.h" | 10 #include "chrome/browser/renderer_host/render_view_host.h" |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEnableResourcesTab) { | 147 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEnableResourcesTab) { |
148 RunTest("testEnableResourcesTab", kSimplePage); | 148 RunTest("testEnableResourcesTab", kSimplePage); |
149 } | 149 } |
150 | 150 |
151 // Tests resource headers. | 151 // Tests resource headers. |
152 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestResourceHeaders) { | 152 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestResourceHeaders) { |
153 RunTest("testResourceHeaders", kResourceTestPage); | 153 RunTest("testResourceHeaders", kResourceTestPage); |
154 } | 154 } |
155 | 155 |
156 // Tests profiler panel. | 156 // Tests profiler panel. |
157 // Flaky: http://code.google.com/p/chromium/issues/detail?id=23768 | 157 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestProfilerTab) { |
158 // TODO(mnaganov): fix the problem in V8 and roll it out. | |
159 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestProfilerTab) { | |
160 RunTest("testProfilerTab", kJsPage); | 158 RunTest("testProfilerTab", kJsPage); |
161 } | 159 } |
162 | 160 |
163 // Tests scripts panel showing. | 161 // Tests scripts panel showing. |
164 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) { | 162 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) { |
165 RunTest("testShowScriptsTab", kDebuggerTestPage); | 163 RunTest("testShowScriptsTab", kDebuggerTestPage); |
166 } | 164 } |
167 | 165 |
168 // Tests that scripts are not duplicated after Scripts Panel switch. | 166 // Tests that scripts are not duplicated after Scripts Panel switch. |
169 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, | 167 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestConsoleLog) { | 225 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestConsoleLog) { |
228 RunTest("testConsoleLog", kConsoleTestPage); | 226 RunTest("testConsoleLog", kConsoleTestPage); |
229 } | 227 } |
230 | 228 |
231 // Tests eval global values. | 229 // Tests eval global values. |
232 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalGlobal) { | 230 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalGlobal) { |
233 RunTest("testEvalGlobal", kEvalTestPage); | 231 RunTest("testEvalGlobal", kEvalTestPage); |
234 } | 232 } |
235 | 233 |
236 } // namespace | 234 } // namespace |
OLD | NEW |