| Index: Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| index e453d56f796bcfd04b28ac44b47d2be2911d5039..e71f4197ed1dd30eaf2ac3170df733ca6396b477 100644
|
| --- a/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -1063,7 +1063,7 @@ WebInspector.ObjectPropertiesSection.valueTextForFunctionDescription = function(
|
| WebInspector.ObjectPropertiesSection.createValueElementWithCustomSupport = function(value, wasThrown, parentElement)
|
| {
|
| if (value.customPreview()) {
|
| - var result = WebInspector.CustomPreviewSection.createInShadow(value);
|
| + var result = (new WebInspector.CustomPreviewComponent(value)).element;
|
| result.classList.add("object-properties-section-custom-section");
|
| return result
|
| }
|
|
|