Title: [126682] trunk/Source/WebCore
Revision
126682
Author
[email protected]
Date
2012-08-25 06:33:27 -0700 (Sat, 25 Aug 2012)

Log Message

Web Inspector: missing time ruler in Timeline and Network panels
https://bugs.webkit.org/show_bug.cgi?id=95001

Reviewed by Pavel Feldman.

Fixed a call site for Calculator.boundarySpan(), which is now a function rather than a property.

* inspector/front-end/TimelineGrid.js:
(WebInspector.TimelineGrid.prototype.updateDividers):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (126681 => 126682)


--- trunk/Source/WebCore/ChangeLog	2012-08-25 09:23:44 UTC (rev 126681)
+++ trunk/Source/WebCore/ChangeLog	2012-08-25 13:33:27 UTC (rev 126682)
@@ -1,3 +1,15 @@
+2012-08-25  Andrey Kosyakov  <[email protected]>
+
+        Web Inspector: missing time ruler in Timeline and Network panels
+        https://bugs.webkit.org/show_bug.cgi?id=95001
+
+        Reviewed by Pavel Feldman.
+
+        Fixed a call site for Calculator.boundarySpan(), which is now a function rather than a property.
+
+        * inspector/front-end/TimelineGrid.js:
+        (WebInspector.TimelineGrid.prototype.updateDividers):
+
 2012-08-25  Michelangelo De Simone  <[email protected]>
 
         [Crash] Null pointer in CSSParser::parseMixFunction()

Modified: trunk/Source/WebCore/inspector/front-end/TimelineGrid.js (126681 => 126682)


--- trunk/Source/WebCore/inspector/front-end/TimelineGrid.js	2012-08-25 09:23:44 UTC (rev 126681)
+++ trunk/Source/WebCore/inspector/front-end/TimelineGrid.js	2012-08-25 13:33:27 UTC (rev 126682)
@@ -87,7 +87,7 @@
     {
         var dividersElementClientWidth = this._dividersElement.clientWidth;
         var dividerCount = Math.round(dividersElementClientWidth / 64);
-        var slice = calculator.boundarySpan / dividerCount;
+        var slice = calculator.boundarySpan() / dividerCount;
 
         this._currentDividerSlice = slice;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to