Index: Source/devtools/front_end/console/CustomPreviewSection.js |
diff --git a/Source/devtools/front_end/console/CustomPreviewSection.js b/Source/devtools/front_end/console/CustomPreviewSection.js |
index 3a4ebabda7089e151a4b235ea34ba7fe6e992b96..9d3121bcfafb32fe0ab71135529f39a57b508b71 100644 |
--- a/Source/devtools/front_end/console/CustomPreviewSection.js |
+++ b/Source/devtools/front_end/console/CustomPreviewSection.js |
@@ -98,7 +98,7 @@ WebInspector.CustomPreviewSection.prototype = { |
var array = /** @type {!Array.<*>} */(jsonML); |
if (array[0] === "object") |
- return this._renderObjectTag(array); |
+ return this._layoutObjectTag(array); |
else |
return this._renderElement(array); |
}, |
@@ -135,7 +135,7 @@ WebInspector.CustomPreviewSection.prototype = { |
* @param {!Array.<*>} objectTag |
* @return {!Node} |
*/ |
- _renderObjectTag: function(objectTag) |
+ _layoutObjectTag: function(objectTag) |
{ |
objectTag.shift(); |
var attributes = objectTag.shift(); |