| Index: third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html
|
| index a83679110fb697a7e695f64e8a7c904e6313df53..7298b6464f1ffc7f3e9e3ddc7783933c21451bdd 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html
|
| @@ -28,13 +28,13 @@ function test()
|
| InspectorTest.RuntimeAgent.evaluate("object1", step1);
|
| }
|
|
|
| - function step1(error, result, wasThrown)
|
| + function step1(error, result, exceptionDetails)
|
| {
|
| obj1 = InspectorTest.runtimeModel.createRemoteObject(result);
|
| InspectorTest.RuntimeAgent.evaluate("symbol1", step2);
|
| }
|
|
|
| - function step2(error, result, wasThrown)
|
| + function step2(error, result, exceptionDetails)
|
| {
|
| name = WebInspector.RemoteObject.toCallArgument(InspectorTest.runtimeModel.createRemoteObject(result));
|
| next();
|
|
|