| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
|
| index 49d68663899e246b91c449bc7d33d2e64724ff3d..6ace3060bac30488af679cc46cb1a91b57642001 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
|
| @@ -41,9 +41,8 @@ var test = function()
|
| InspectorTest.RuntimeAgent.runScript(scriptId, contextId, "console", false, runCallback.bind(this));
|
| }
|
|
|
| - function runCallback(error, result, exceptionDetails)
|
| + function runCallback(error, result, wasThrown, exceptionDetails)
|
| {
|
| - var wasThrown = !!exceptionDetails;
|
| InspectorTest.assertTrue(!error);
|
| InspectorTest.assertTrue(!wasThrown);
|
| InspectorTest.addResult("Script result: " + result.value);
|
| @@ -66,9 +65,8 @@ var test = function()
|
| InspectorTest.RuntimeAgent.runScript(scriptId, contextId, "console", false, runCallback.bind(this));
|
| }
|
|
|
| - function runCallback(error, result, exceptionDetails)
|
| + function runCallback(error, result, wasThrown, exceptionDetails)
|
| {
|
| - var wasThrown = !!exceptionDetails;
|
| InspectorTest.assertTrue(!error);
|
| InspectorTest.assertTrue(wasThrown);
|
| printExceptionDetails(exceptionDetails);
|
|
|