-WebInspector.ResourcePanel.prototype = {
- show: function()
- {
- WebInspector.Panel.prototype.show.call(this);
- this.resource.listItem.select(true); // passing true prevents a cycle
- this.resource.listItem.reveal();
- },
+ this.contentElement = document.createElement("div");
+ this.contentElement.className = "resource-view-content";
+ this.element.appendChild(this.contentElement);
+}