| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/debugger/devtools_client_host.h" | 9 #include "chrome/browser/debugger/devtools_client_host.h" |
| 10 #include "chrome/browser/debugger/devtools_manager.h" | 10 #include "chrome/browser/debugger/devtools_manager.h" |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 } | 277 } |
| 278 | 278 |
| 279 // Tests that scripts are not duplicated after Scripts Panel switch. | 279 // Tests that scripts are not duplicated after Scripts Panel switch. |
| 280 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, | 280 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, |
| 281 TestNoScriptDuplicatesOnPanelSwitch) { | 281 TestNoScriptDuplicatesOnPanelSwitch) { |
| 282 RunTest("testNoScriptDuplicatesOnPanelSwitch", kDebuggerTestPage); | 282 RunTest("testNoScriptDuplicatesOnPanelSwitch", kDebuggerTestPage); |
| 283 } | 283 } |
| 284 | 284 |
| 285 // Tests that debugger works correctly if pause event occurs when DevTools | 285 // Tests that debugger works correctly if pause event occurs when DevTools |
| 286 // frontend is being loaded. | 286 // frontend is being loaded. |
| 287 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestPauseWhenLoadingDevTools) { | 287 // Disabled in http://crbug.com/70639 |
| 288 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenLoadingDevTools
) { |
| 288 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools); | 289 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools); |
| 289 } | 290 } |
| 290 | 291 |
| 291 // Tests that pressing 'Pause' will pause script execution if the script | 292 // Tests that pressing 'Pause' will pause script execution if the script |
| 292 // is already running. | 293 // is already running. |
| 293 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestPauseWhenScriptIsRunning) { | 294 // Disabled in http://crbug.com/70639 |
| 295 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenScriptIsRunning
) { |
| 294 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); | 296 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); |
| 295 } | 297 } |
| 296 | 298 |
| 297 } // namespace | 299 } // namespace |
| OLD | NEW |