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); |