Changeset 147412 in webkit


Ignore:
Timestamp:
Apr 2, 2013 2:52:29 AM (11 years ago)
Author:
eustas@chromium.org
Message:

Web Inspector: [HeapProfiler] Table rows do not appear when resizing.
https://bugs.webkit.org/show_bug.cgi?id=113760

Reviewed by Yury Semikhatsky.

Analysis: custom-made split-view doesn't notify content panes about
resizing.

  • inspector/front-end/HeapSnapshotView.js:

(WebInspector.HeapSnapshotView.prototype._updateRetainmentViewHeight):
Notify content pane about resize.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147411 r147412  
     12013-04-02  Eugene Klyuchnikov  <eustas@chromium.org>
     2
     3        Web Inspector: [HeapProfiler] Table rows do not appear when resizing.
     4        https://bugs.webkit.org/show_bug.cgi?id=113760
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        Analysis: custom-made split-view doesn't notify content panes about
     9        resizing.
     10
     11        * inspector/front-end/HeapSnapshotView.js:
     12        (WebInspector.HeapSnapshotView.prototype._updateRetainmentViewHeight):
     13        Notify content pane about resize.
     14
    1152013-04-02  Mihnea Ovidenie  <mihnea@adobe.com>
    216
  • trunk/Source/WebCore/inspector/front-end/HeapSnapshotView.js

    r146757 r147412  
    687687        this.retainmentView.element.style.height = height + "px";
    688688        this.retainmentViewHeader.style.bottom = height + "px";
     689        this.currentView.doResize();
    689690    },
    690691
Note: See TracChangeset for help on using the changeset viewer.