Changeset 196074 in webkit


Ignore:
Timestamp:
Feb 3, 2016 12:15:05 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Uncaught exception TimelineRuler.prototype.resize no longer exists
https://bugs.webkit.org/show_bug.cgi?id=153839

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-02-03
Reviewed by Brian Burg.

  • UserInterface/Views/MemoryTimelineView.js:

(WebInspector.MemoryTimelineView.prototype.shown):
After r195995 the resize method was eliminated in favor of this approach.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196018 r196074  
     12016-02-03  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Uncaught exception TimelineRuler.prototype.resize no longer exists
     4        https://bugs.webkit.org/show_bug.cgi?id=153839
     5
     6        Reviewed by Brian Burg.
     7
     8        * UserInterface/Views/MemoryTimelineView.js:
     9        (WebInspector.MemoryTimelineView.prototype.shown):
     10        After r195995 the resize method was eliminated in favor of this approach.
     11
    1122016-02-02  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/MemoryTimelineView.js

    r195999 r196074  
    121121        super.shown();
    122122
    123         this._timelineRuler.resize();
     123        this._timelineRuler.updateLayout(WebInspector.View.LayoutReason.Resize);
    124124    }
    125125
Note: See TracChangeset for help on using the changeset viewer.