Index: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
index da2f5e77e34015c4cb73dcea3ac66ceb7db467e1..828a94271401f28faef439815a40877e0f265391 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
+++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
@@ -213,7 +213,7 @@ WebInspector.ObjectPropertyTreeElement.prototype = { |
var propertyValue = /** @type {!WebInspector.RemoteObject} */ (this.property.value); |
console.assert(propertyValue); |
var skipProto = this.treeOutline ? this.treeOutline._skipProto : true; |
- var targetValue = this.property.name !== '__proto__' ? propertyValue : this.property.parentObject; |
+ var targetValue = this.property.name !== "__proto__" ? propertyValue : this.property.parentObject; |
WebInspector.ObjectPropertyTreeElement._populate(this, propertyValue, skipProto, undefined, undefined, undefined, targetValue); |
}, |