Changeset 55806 in webkit


Ignore:
Timestamp:
Mar 10, 2010 2:09:35 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-10 Ilya Tikhonovsky <loislo@loislo-macbookpro.local>

Reviewed by Pavel Feldman.

Sidebar resize element height was adjusted.
Display name for Function Call details was adjusted.

https://bugs.webkit.org/show_bug.cgi?id=35939

  • inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel.prototype._refreshRecords): (WebInspector.TimelinePanel.FormattedRecord.prototype._getRecordDetails):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r55802 r55806  
     12010-03-10  Ilya Tikhonovsky  <loislo@loislo-macbookpro.local>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Sidebar resize element height was adjusted.
     6        Display name for Function Call details was adjusted.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=35939
     9
     10        * inspector/front-end/TimelinePanel.js:
     11        (WebInspector.TimelinePanel.prototype._refreshRecords):
     12        (WebInspector.TimelinePanel.FormattedRecord.prototype._getRecordDetails):
     13
    1142010-03-10  Charles Wei  <charles.wei@torchmobile.com.cn>
    215
  • trunk/WebCore/inspector/front-end/TimelinePanel.js

    r55627 r55806  
    384384
    385385        this._itemsGraphsElement.insertBefore(this._graphRowsElement, this._bottomGapElement);
     386        this.sidebarResizeElement.style.height = this.sidebarElement.clientHeight + "px";
    386387        // Reserve some room for expand / collapse controls to the left for records that start at 0ms.
    387388        var timelinePaddingLeft = this._calculator.windowLeft === 0 ? expandOffset : 0;
     
    747748        switch (record.type) {
    748749            case WebInspector.TimelineAgent.RecordType.FunctionCall:
    749                 return WebInspector.displayNameForURL(record.data.scriptName + ":" + record.data.scriptLine);
     750                return WebInspector.displayNameForURL(record.data.scriptName) + ":" + record.data.scriptLine;
    750751            case WebInspector.TimelineAgent.RecordType.EventDispatch:
    751752                return record.data ? record.data.type : "";
Note: See TracChangeset for help on using the changeset viewer.