Title: [193077] branches/safari-601-branch/Source/WebInspectorUI
- Revision
- 193077
- Author
- [email protected]
- Date
- 2015-12-03 10:43:44 -0800 (Thu, 03 Dec 2015)
Log Message
Merge r188221. rdar://problem/23221163
Modified Paths
Diff
Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193076 => 193077)
--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog 2015-12-03 18:43:38 UTC (rev 193076)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog 2015-12-03 18:43:44 UTC (rev 193077)
@@ -1,5 +1,20 @@
2015-12-02 Timothy Hatcher <[email protected]>
+ Merge r188221. rdar://problem/23221163
+
+ 2015-08-10 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: TDZ in ProbeSetDataGrid construction
+ https://bugs.webkit.org/show_bug.cgi?id=147834
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/ProbeSetDataGrid.js:
+ (WebInspector.ProbeSetDataGrid):
+ Do not use "this" before calling super.
+
+2015-12-02 Timothy Hatcher <[email protected]>
+
Merge r188192. rdar://problem/23221163
2015-08-08 Devin Rousso <[email protected]>
Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js (193076 => 193077)
--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js 2015-12-03 18:43:38 UTC (rev 193076)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js 2015-12-03 18:43:44 UTC (rev 193077)
@@ -29,7 +29,6 @@
constructor(probeSet)
{
console.assert(probeSet instanceof WebInspector.ProbeSet, "Invalid ProbeSet argument: ", probeSet);
- this.probeSet = probeSet;
var columns = {};
for (var probe of probeSet.probes) {
@@ -39,6 +38,8 @@
super(columns);
+ this.probeSet = probeSet;
+
this.element.classList.add("inline");
this._frameNodes = new Map;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes