Title: [196074] trunk/Source/WebInspectorUI
Revision
196074
Author
[email protected]
Date
2016-02-03 12:15:05 -0800 (Wed, 03 Feb 2016)

Log Message

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

Patch by Joseph Pecoraro <[email protected]> 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.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (196073 => 196074)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-02-03 20:14:36 UTC (rev 196073)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-02-03 20:15:05 UTC (rev 196074)
@@ -1,3 +1,14 @@
+2016-02-03  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Uncaught exception TimelineRuler.prototype.resize no longer exists
+        https://bugs.webkit.org/show_bug.cgi?id=153839
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/MemoryTimelineView.js:
+        (WebInspector.MemoryTimelineView.prototype.shown):
+        After r195995 the resize method was eliminated in favor of this approach.
+
 2016-02-02  Joseph Pecoraro  <[email protected]>
 
         Uncaught Exception: TypeError: undefined is not an object (evaluating 'highlightedRange.from')

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/MemoryTimelineView.js (196073 => 196074)


--- trunk/Source/WebInspectorUI/UserInterface/Views/MemoryTimelineView.js	2016-02-03 20:14:36 UTC (rev 196073)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/MemoryTimelineView.js	2016-02-03 20:15:05 UTC (rev 196074)
@@ -120,7 +120,7 @@
     {
         super.shown();
 
-        this._timelineRuler.resize();
+        this._timelineRuler.updateLayout(WebInspector.View.LayoutReason.Resize);
     }
 
     hidden()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to