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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestProfilerTab) { | 148 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestProfilerTab) { |
149 RunTest("testProfilerTab", kJsPage); | 149 RunTest("testProfilerTab", kJsPage); |
150 } | 150 } |
151 | 151 |
152 // Tests scripts panel showing. | 152 // Tests scripts panel showing. |
153 // http://crbug.com/16767 | 153 // http://crbug.com/16767 |
154 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) { | 154 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) { |
155 RunTest("testShowScriptsTab", kDebuggerTestPage); | 155 RunTest("testShowScriptsTab", kDebuggerTestPage); |
156 } | 156 } |
157 | 157 |
| 158 // Tests that scripts are not duplicated after Scripts Panel switch. |
| 159 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, |
| 160 TestNoScriptDuplicatesOnPanelSwitch) { |
| 161 RunTest("testNoScriptDuplicatesOnPanelSwitch", kDebuggerTestPage); |
| 162 } |
| 163 |
158 // Tests set breakpoint. | 164 // Tests set breakpoint. |
159 // http://crbug.com/16767 | 165 // http://crbug.com/16767 |
160 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestSetBreakpoint) { | 166 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestSetBreakpoint) { |
161 RunTest("testSetBreakpoint", kDebuggerTestPage); | 167 RunTest("testSetBreakpoint", kDebuggerTestPage); |
162 } | 168 } |
163 | 169 |
164 // Tests that 'Pause' button works for eval. | 170 // Tests that 'Pause' button works for eval. |
165 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseInEval) { | 171 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseInEval) { |
166 RunTest("testPauseInEval", kDebuggerTestPage); | 172 RunTest("testPauseInEval", kDebuggerTestPage); |
167 } | 173 } |
(...skipping 12 matching lines...) Expand all Loading... |
180 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEvalGlobal) { | 186 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEvalGlobal) { |
181 RunTest("testEvalGlobal", kEvalTestPage); | 187 RunTest("testEvalGlobal", kEvalTestPage); |
182 } | 188 } |
183 | 189 |
184 // Tests eval on call frame. | 190 // Tests eval on call frame. |
185 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalCallFrame) { | 191 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalCallFrame) { |
186 RunTest("testEvalCallFrame", kEvalTestPage); | 192 RunTest("testEvalCallFrame", kEvalTestPage); |
187 } | 193 } |
188 | 194 |
189 } // namespace | 195 } // namespace |
OLD | NEW |