summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/TimelinePanel.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/TimelinePanel.js')
-rw-r--r--WebCore/inspector/front-end/TimelinePanel.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/WebCore/inspector/front-end/TimelinePanel.js b/WebCore/inspector/front-end/TimelinePanel.js
index 29efd79..1f12625 100644
--- a/WebCore/inspector/front-end/TimelinePanel.js
+++ b/WebCore/inspector/front-end/TimelinePanel.js
@@ -30,8 +30,7 @@
WebInspector.TimelinePanel = function()
{
- WebInspector.Panel.call(this);
- this.element.addStyleClass("timeline");
+ WebInspector.Panel.call(this, "timeline");
this.element.appendChild(this._createTopPane());
this.element.tabIndex = 0;
@@ -106,8 +105,6 @@ WebInspector.TimelinePanel.rowHeight = 18;
WebInspector.TimelinePanel.shortRecordThreshold = 0.015;
WebInspector.TimelinePanel.prototype = {
- toolbarItemClass: "timeline",
-
_createTopPane: function() {
var topPaneElement = document.createElement("div");
topPaneElement.id = "timeline-overview-panel";