Title: [198461] trunk/Source/WebInspectorUI
- Revision
- 198461
- Author
- [email protected]
- Date
- 2016-03-18 18:37:45 -0700 (Fri, 18 Mar 2016)
Log Message
Web Inspector: Bullet misaligned when expanding console log message
https://bugs.webkit.org/show_bug.cgi?id=155669
<rdar://problem/25250721>
Patch by Joseph Pecoraro <[email protected]> on 2016-03-18
Reviewed by Timothy Hatcher.
* UserInterface/Views/ObjectTreeView.css:
(.object-tree):
(.object-tree .object-tree): Deleted.
Make object tree's inline-block again.
* UserInterface/Views/ConsoleMessageView.css:
(.console-top-level-message .object-tree):
(.console-top-level-message .object-tree .object-tree):
Since the Console is the only place that requires a non-inline-block
object-tree, and only at the top level, have the console override
the styles of object trees as it needs.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (198460 => 198461)
--- trunk/Source/WebInspectorUI/ChangeLog 2016-03-19 01:31:05 UTC (rev 198460)
+++ trunk/Source/WebInspectorUI/ChangeLog 2016-03-19 01:37:45 UTC (rev 198461)
@@ -1,5 +1,25 @@
2016-03-18 Joseph Pecoraro <[email protected]>
+ Web Inspector: Bullet misaligned when expanding console log message
+ https://bugs.webkit.org/show_bug.cgi?id=155669
+ <rdar://problem/25250721>
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/ObjectTreeView.css:
+ (.object-tree):
+ (.object-tree .object-tree): Deleted.
+ Make object tree's inline-block again.
+
+ * UserInterface/Views/ConsoleMessageView.css:
+ (.console-top-level-message .object-tree):
+ (.console-top-level-message .object-tree .object-tree):
+ Since the Console is the only place that requires a non-inline-block
+ object-tree, and only at the top level, have the console override
+ the styles of object trees as it needs.
+
+2016-03-18 Joseph Pecoraro <[email protected]>
+
Uncaught Exception: TypeError: undefined is not an object (evaluating 'this._treeOutlineDataGridSynchronizer.treeElementForDataGridNode')
https://bugs.webkit.org/show_bug.cgi?id=155671
<rdar://problem/25249401>
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css (198460 => 198461)
--- trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css 2016-03-19 01:31:05 UTC (rev 198460)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css 2016-03-19 01:37:45 UTC (rev 198461)
@@ -275,3 +275,11 @@
.console-message .console-message-url::before {
content: ' ';
}
+
+.console-top-level-message .object-tree {
+ display: block;
+}
+
+.console-top-level-message .object-tree .object-tree {
+ display: inline-block;
+}
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css (198460 => 198461)
--- trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css 2016-03-19 01:31:05 UTC (rev 198460)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css 2016-03-19 01:37:45 UTC (rev 198461)
@@ -25,6 +25,7 @@
.object-tree {
position: relative;
+ display: inline-block;
color: black;
font-family: Menlo, monospace;
font-size: 11px;
@@ -69,10 +70,6 @@
width: 0px;
}
-.object-tree .object-tree {
- display: inline-block;
-}
-
.object-tree .tree-outline.object {
display: none;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes