Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html b/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html |
| index 8fe5ce8e72571ec6f53b7cef7061c2daa8940b9c..5d7af0d59d938ff3edbe721947159e2493c756bd 100644 |
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/injected-script-discard.html |
| @@ -27,7 +27,7 @@ function test() |
| { |
| InspectorTest.RuntimeAgent.evaluate("window.objectId", dispatch); |
| - function dispatch(error, result, wasThrown) |
|
dgozman
2016/08/11 01:54:34
While you are here, let's add exceptionDetails sec
kozy
2016/08/11 21:04:21
Done.
|
| + function dispatch(error, result) |
| { |
| if (result.type !== "string") { |
| InspectorTest.evaluateInPage("console.log('Opening front-end for the first time')"); |
| @@ -42,7 +42,7 @@ function test() |
| { |
| InspectorTest.RuntimeAgent.evaluate("({ handle : \"handle\" })", storeIdInTargetWindow); |
| - function storeIdInTargetWindow(error, result, wasThrown) |
| + function storeIdInTargetWindow(error, result) |
|
dgozman
2016/08/11 01:54:34
While you are here, let's add exceptionDetails sec
kozy
2016/08/11 21:04:21
Done.
|
| { |
| checkHandleInInjectedScript(result.objectId, reopenInspector); |