Changeset 147103 in webkit


Ignore:
Timestamp:
Mar 28, 2013 6:07:43 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Heap snapshots retained size falls out of the grid if column is too narrow
https://bugs.webkit.org/show_bug.cgi?id=113497

Patch by Alexei Filippov <alph@chromium.org> on 2013-03-28
Reviewed by Pavel Feldman.

  • inspector/front-end/HeapSnapshotGridNodes.js:

(WebInspector.HeapSnapshotGridNode.prototype._createValueCell):

  • inspector/front-end/heapProfiler.css:

(.heap-snapshot-view .data-grid div.heap-snapshot-multiple-values):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147102 r147103  
     12013-03-28  Alexei Filippov  <alph@chromium.org>
     2
     3        Web Inspector: Heap snapshots retained size falls out of the grid if column is too narrow
     4        https://bugs.webkit.org/show_bug.cgi?id=113497
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * inspector/front-end/HeapSnapshotGridNodes.js:
     9        (WebInspector.HeapSnapshotGridNode.prototype._createValueCell):
     10        * inspector/front-end/heapProfiler.css:
     11        (.heap-snapshot-view .data-grid div.heap-snapshot-multiple-values):
     12
    1132013-03-28  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/Source/WebCore/inspector/front-end/HeapSnapshotGridNodes.js

    r147090 r147103  
    146146                percentSpan.textContent = this.data[percentColumn];
    147147                div.appendChild(percentSpan);
     148                div.addStyleClass("heap-snapshot-multiple-values");
    148149            }
    149150            cell.appendChild(div);
  • trunk/Source/WebCore/inspector/front-end/heapProfiler.css

    r127149 r147103  
    125125}
    126126
     127.heap-snapshot-view .data-grid div.heap-snapshot-multiple-values {
     128    float: right;
     129}
     130
    127131.heap-snapshot-view .data-grid span.percent-column {
    128132    color: grey;
Note: See TracChangeset for help on using the changeset viewer.