| Index: third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js b/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
|
| index 43cd3d1433566d0fb2eff433ed1d1d2016242a62..3721810b0816a55c14b4801b7b8f150b6d341bec 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/CustomPreviewSection.js
|
| @@ -32,7 +32,7 @@ WebInspector.CustomPreviewSection = function(object)
|
| }
|
|
|
| this._sectionElement.appendChild(this._header);
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -46,7 +46,7 @@ WebInspector.CustomPreviewComponent = function(object)
|
| var shadowRoot = WebInspector.createShadowRootWithCoreStyles(this.element, "components/customPreviewSection.css");
|
| this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), false);
|
| shadowRoot.appendChild(this._customPreviewSection.element());
|
| -}
|
| +};
|
|
|
| WebInspector.CustomPreviewComponent.prototype = {
|
| expandIfPossible: function()
|
| @@ -73,7 +73,7 @@ WebInspector.CustomPreviewComponent.prototype = {
|
| this._customPreviewSection = null;
|
| this.element.shadowRoot.appendChild(WebInspector.ObjectPropertiesSection.defaultObjectPresentation(this._object));
|
| }
|
| -}
|
| +};
|
|
|
| WebInspector.CustomPreviewSection._tagsWhiteList = new Set(["span", "div", "ol", "li","table", "tr", "td"]);
|
|
|
| @@ -248,4 +248,4 @@ WebInspector.CustomPreviewSection.prototype = {
|
| this._toggleExpand();
|
| }
|
| }
|
| -}
|
| +};
|
|
|