Title: [193048] branches/safari-601-branch/Source/WebInspectorUI

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193047 => 193048)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:05 UTC (rev 193047)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 18:35:10 UTC (rev 193048)
@@ -1,5 +1,27 @@
 2015-12-01  Timothy Hatcher  <[email protected]>
 
+        Merge r187730. rdar://problem/23221163
+
+    2015-08-02  Matt Baker  <[email protected]>
+
+            Web Inspector: REGRESSION (r187689): Timeline overview graph layout is broken
+            https://bugs.webkit.org/show_bug.cgi?id=147539
+
+            Reviewed by Brian Burg.
+
+            Removed timeline argument being passed to TimelineOverviewGraph constructor.
+
+            * UserInterface/Views/LayoutTimelineOverviewGraph.js:
+            (WebInspector.LayoutTimelineOverviewGraph):
+            * UserInterface/Views/NetworkTimelineOverviewGraph.js:
+            (WebInspector.NetworkTimelineOverviewGraph):
+            * UserInterface/Views/RenderingFrameTimelineOverviewGraph.js:
+            (WebInspector.RenderingFrameTimelineOverviewGraph):
+            * UserInterface/Views/ScriptTimelineOverviewGraph.js:
+            (WebInspector.ScriptTimelineOverviewGraph):
+
+2015-12-01  Timothy Hatcher  <[email protected]>
+
         Merge r187715. rdar://problem/23221163
 
     2015-08-01  Nikita Vasilyev  <[email protected]>

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LayoutTimelineOverviewGraph.js (193047 => 193048)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LayoutTimelineOverviewGraph.js	2015-12-03 18:35:05 UTC (rev 193047)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/LayoutTimelineOverviewGraph.js	2015-12-03 18:35:10 UTC (rev 193048)
@@ -27,7 +27,7 @@
 {
     constructor(timeline, timelineOverview)
     {
-        super(timeline, timelineOverview);
+        super(timelineOverview);
 
         this.element.classList.add("layout");
 

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTimelineOverviewGraph.js (193047 => 193048)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTimelineOverviewGraph.js	2015-12-03 18:35:05 UTC (rev 193047)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/NetworkTimelineOverviewGraph.js	2015-12-03 18:35:10 UTC (rev 193048)
@@ -28,7 +28,7 @@
 {
     constructor(timeline, timelineOverview)
     {
-        super(timeline, timelineOverview);
+        super(timelineOverview);
 
         this.element.classList.add("network");
 

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/RenderingFrameTimelineOverviewGraph.js (193047 => 193048)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/RenderingFrameTimelineOverviewGraph.js	2015-12-03 18:35:05 UTC (rev 193047)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/RenderingFrameTimelineOverviewGraph.js	2015-12-03 18:35:10 UTC (rev 193048)
@@ -27,7 +27,7 @@
 {
     constructor(timeline, timelineOverview)
     {
-        super(timeline, timelineOverview);
+        super(timelineOverview);
 
         this.element.classList.add("rendering-frame");
         this.element.addEventListener("click", this._mouseClicked.bind(this));

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineOverviewGraph.js (193047 => 193048)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineOverviewGraph.js	2015-12-03 18:35:05 UTC (rev 193047)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineOverviewGraph.js	2015-12-03 18:35:10 UTC (rev 193048)
@@ -27,7 +27,7 @@
 {
     constructor(timeline, timelineOverview)
     {
-        super(timeline, timelineOverview);
+        super(timelineOverview);
 
         this.element.classList.add("script");
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to