| Index: third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| index 43984811f790d02e259b377824cc39143fe5ca25..d051e28daef460c09305c5dfa2c3b54c38c3f056 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| @@ -163,6 +163,11 @@ InspectorTest.waitUntilPaused = function(callback)
|
| InspectorTest._waitUntilPausedCallback = callback;
|
| };
|
|
|
| +InspectorTest.waitUntilPausedPromise = function()
|
| +{
|
| + return new Promise(resolve => InspectorTest.waitUntilPaused(resolve));
|
| +}
|
| +
|
| InspectorTest.waitUntilResumedNextTime = function(callback)
|
| {
|
| InspectorTest._waitUntilResumedCallback = InspectorTest.safeWrap(callback);
|
|
|