Title: [193249] branches/safari-601-branch/Source/WebInspectorUI
Revision
193249
Author
[email protected]
Date
2015-12-03 11:01:58 -0800 (Thu, 03 Dec 2015)

Log Message

Merge r190632. rdar://problem/23221163

Modified Paths

Diff

Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193248 => 193249)


--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 19:01:53 UTC (rev 193248)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog	2015-12-03 19:01:58 UTC (rev 193249)
@@ -1,5 +1,19 @@
 2015-12-02  Timothy Hatcher  <[email protected]>
 
+        Merge r190632. rdar://problem/23221163
+
+    2015-10-06  Joseph Pecoraro  <[email protected]>
+
+            Web Inspector: Simplify TimelineRecordBar a bit
+            https://bugs.webkit.org/show_bug.cgi?id=149733
+
+            Reviewed by Timothy Hatcher.
+
+            * UserInterface/Views/TimelineRecordBar.js:
+            (WebInspector.TimelineRecordBar.prototype.set records):
+
+2015-12-02  Timothy Hatcher  <[email protected]>
+
         Merge r190571. rdar://problem/23221163
 
     2015-10-05  Nikita Vasilyev  <[email protected]>

Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineRecordBar.js (193248 => 193249)


--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineRecordBar.js	2015-12-03 19:01:53 UTC (rev 193248)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineRecordBar.js	2015-12-03 19:01:58 UTC (rev 193249)
@@ -194,8 +194,7 @@
 
         records = records || [];
 
-        if (!(records instanceof Array))
-            records = [records];
+        console.assert(records instanceof Array, "records should be an array");
 
         this._records = records;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to