Title: [274656] trunk/Source/WebInspectorUI
Revision
274656
Author
nvasil...@apple.com
Date
2021-03-18 11:45:16 -0700 (Thu, 18 Mar 2021)

Log Message

Web Inspector: REGRESSION(r271348): Console: message source code location is not vertically aligned with containing function name
https://bugs.webkit.org/show_bug.cgi?id=223288
<rdar://problem/75498577>

Reviewed by Devin Rousso.

WebKit inline-block behavior changed in r271348 to match the spec more closely.

* UserInterface/Views/ConsoleMessageView.css:
(.console-message-location.call-frame > .title):
Explicitly set `vertical-align` to match the behavior prior r271348.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (274655 => 274656)


--- trunk/Source/WebInspectorUI/ChangeLog	2021-03-18 18:36:38 UTC (rev 274655)
+++ trunk/Source/WebInspectorUI/ChangeLog	2021-03-18 18:45:16 UTC (rev 274656)
@@ -1,3 +1,17 @@
+2021-03-18  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: REGRESSION(r271348): Console: message source code location is not vertically aligned with containing function name
+        https://bugs.webkit.org/show_bug.cgi?id=223288
+        <rdar://problem/75498577>
+
+        Reviewed by Devin Rousso.
+
+        WebKit inline-block behavior changed in r271348 to match the spec more closely.
+
+        * UserInterface/Views/ConsoleMessageView.css:
+        (.console-message-location.call-frame > .title):
+        Explicitly set `vertical-align` to match the behavior prior r271348.
+
 2021-03-17  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: use native datetime-local picker for changing `expires` value in cookie popover

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css (274655 => 274656)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css	2021-03-18 18:36:38 UTC (rev 274655)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ConsoleMessageView.css	2021-03-18 18:45:16 UTC (rev 274656)
@@ -281,6 +281,7 @@
     overflow: hidden;
     text-overflow: ellipsis;
     display: inline-block;
+    vertical-align: text-top;
 }
 
 .console-message-location.call-frame > .subtitle > .source-link {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to