Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: LayoutTests/http/tests/inspector/debugger-test.js

Issue 60203007: DevTools: Fix disabling all pauses on reload. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/inspector/debugger/long-resume-vs-reload.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/debugger-test.js
diff --git a/LayoutTests/http/tests/inspector/debugger-test.js b/LayoutTests/http/tests/inspector/debugger-test.js
index b4654e839b9ae0573b4d2b1e122dd7331d935a2b..a258c951b36c3f648ecb15f005b41956a8b0a473 100644
--- a/LayoutTests/http/tests/inspector/debugger-test.js
+++ b/LayoutTests/http/tests/inspector/debugger-test.js
@@ -83,6 +83,11 @@ InspectorTest.runTestFunctionAndWaitUntilPaused = function(callback)
InspectorTest.waitUntilPaused(callback);
};
+InspectorTest.waitUntilPausedNextTime = function(callback)
+{
+ InspectorTest._waitUntilPausedCallback = InspectorTest.safeWrap(callback);
+};
+
InspectorTest.waitUntilPaused = function(callback)
{
callback = InspectorTest.safeWrap(callback);
@@ -93,6 +98,11 @@ InspectorTest.waitUntilPaused = function(callback)
InspectorTest._waitUntilPausedCallback = callback;
};
+InspectorTest.waitUntilResumedNextTime = function(callback)
+{
+ InspectorTest._waitUntilResumedCallback = InspectorTest.safeWrap(callback);
+};
+
InspectorTest.waitUntilResumed = function(callback)
{
callback = InspectorTest.safeWrap(callback);
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/inspector/debugger/long-resume-vs-reload.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698