Title: [172650] trunk/Source/WebInspectorUI
- Revision
- 172650
- Author
- [email protected]
- Date
- 2014-08-15 14:12:06 -0700 (Fri, 15 Aug 2014)
Log Message
Web Inspector: Probe details sidebar data grids do not show data
https://bugs.webkit.org/show_bug.cgi?id=135992
Reviewed by Joseph Pecoraro.
* UserInterface/Views/ProbeSetDataGrid.js:
(WebInspector.ProbeSetDataGrid): Make the DataGrid be inline to show the data correctly.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (172649 => 172650)
--- trunk/Source/WebInspectorUI/ChangeLog 2014-08-15 21:09:13 UTC (rev 172649)
+++ trunk/Source/WebInspectorUI/ChangeLog 2014-08-15 21:12:06 UTC (rev 172650)
@@ -1,5 +1,15 @@
2014-08-15 Timothy Hatcher <[email protected]>
+ Web Inspector: Probe details sidebar data grids do not show data
+ https://bugs.webkit.org/show_bug.cgi?id=135992
+
+ Reviewed by Joseph Pecoraro.
+
+ * UserInterface/Views/ProbeSetDataGrid.js:
+ (WebInspector.ProbeSetDataGrid): Make the DataGrid be inline to show the data correctly.
+
+2014-08-15 Timothy Hatcher <[email protected]>
+
Web Inspector: Legacy Mac toolbar appearance looks wrong
https://bugs.webkit.org/show_bug.cgi?id=135962
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js (172649 => 172650)
--- trunk/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js 2014-08-15 21:09:13 UTC (rev 172649)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ProbeSetDataGrid.js 2014-08-15 21:12:06 UTC (rev 172650)
@@ -34,8 +34,11 @@
var probeTitle = probe._expression_ || WebInspector.UIString("(uninitialized)");
columnsData[probe.id] = { title: probeTitle };
}
+
WebInspector.DataGrid.call(this, columnsData);
+ this.element.classList.add("inline");
+
this._frameNodes = new Map;
this._nodesSinceLastNavigation = [];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes