| 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/extensions/extension_host.h" | 10 #include "chrome/browser/extensions/extension_host.h" |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools); | 346 RunTest("testPauseWhenLoadingDevTools", kPauseWhenLoadingDevTools); |
| 347 } | 347 } |
| 348 | 348 |
| 349 // Tests that pressing 'Pause' will pause script execution if the script | 349 // Tests that pressing 'Pause' will pause script execution if the script |
| 350 // is already running. | 350 // is already running. |
| 351 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenScriptIsRunning
) { | 351 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestPauseWhenScriptIsRunning
) { |
| 352 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); | 352 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); |
| 353 } | 353 } |
| 354 | 354 |
| 355 // Tests eval on call frame. | 355 // Tests eval on call frame. |
| 356 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEvalOnCallFrame) { | 356 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEvalOnCallFrame) { |
| 357 RunTest("testEvalOnCallFrame", kDebuggerTestPage); | 357 RunTest("testEvalOnCallFrame", kDebuggerTestPage); |
| 358 } | 358 } |
| 359 | 359 |
| 360 // Tests step over functionality in the debugger. | 360 // Tests step over functionality in the debugger. |
| 361 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestStepOver) { | 361 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestStepOver) { |
| 362 RunTest("testStepOver", kDebuggerStepTestPage); | 362 RunTest("testStepOver", kDebuggerStepTestPage); |
| 363 } | 363 } |
| 364 | 364 |
| 365 // Tests step out functionality in the debugger. | 365 // Tests step out functionality in the debugger. |
| 366 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestStepOut) { | 366 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestStepOut) { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 RunTest("testEvalGlobal", kEvalTestPage); | 413 RunTest("testEvalGlobal", kEvalTestPage); |
| 414 } | 414 } |
| 415 | 415 |
| 416 // Test that Storage panel can be shown. | 416 // Test that Storage panel can be shown. |
| 417 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestShowStoragePanel) { | 417 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestShowStoragePanel) { |
| 418 RunTest("testShowStoragePanel", kDebuggerTestPage); | 418 RunTest("testShowStoragePanel", kDebuggerTestPage); |
| 419 } | 419 } |
| 420 | 420 |
| 421 | 421 |
| 422 } // namespace | 422 } // namespace |
| OLD | NEW |