| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| index ed8ea6351f1d5c29a00287fe93b9e10f6a722457..c48243a26b3e2f51feaabd56581ff6e95d1552fc 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
|
| @@ -152,7 +152,7 @@ void V8RuntimeAgentImpl::getProperties(
|
|
|
| injectedScript->getProperties(errorString, objectId, ownProperties.fromMaybe(false), accessorPropertiesOnly.fromMaybe(false), generatePreview.fromMaybe(false), result, exceptionDetails);
|
|
|
| - if (!exceptionDetails->isJust() && !accessorPropertiesOnly.fromMaybe(false))
|
| + if (errorString->isEmpty() && !exceptionDetails->isJust() && !accessorPropertiesOnly.fromMaybe(false))
|
| injectedScript->getInternalProperties(errorString, objectId, internalProperties, exceptionDetails);
|
| }
|
|
|
|
|