Title: [167787] trunk/Source/WebInspectorUI
Revision
167787
Author
[email protected]
Date
2014-04-24 17:54:05 -0700 (Thu, 24 Apr 2014)

Log Message

Web Inspector: Dashboard when paused in debugger shows some missing glyph boxes
https://bugs.webkit.org/show_bug.cgi?id=132113

Reviewed by Joseph Pecoraro.

* UserInterface/Views/DebuggerDashboardView.css:
(.dashboard.debugger > .location .function-name::after): Fix the codepoint for nbsp.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (167786 => 167787)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-04-25 00:53:01 UTC (rev 167786)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-04-25 00:54:05 UTC (rev 167787)
@@ -1,3 +1,13 @@
+2014-04-24  Timothy Hatcher  <[email protected]>
+
+        Web Inspector: Dashboard when paused in debugger shows some missing glyph boxes
+        https://bugs.webkit.org/show_bug.cgi?id=132113
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/DebuggerDashboardView.css:
+        (.dashboard.debugger > .location .function-name::after): Fix the codepoint for nbsp.
+
 2014-04-24  Jonathan Wells  <[email protected]>
 
         Web Inspector: Should update to CodeMirror 4.1

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css (167786 => 167787)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css	2014-04-25 00:53:01 UTC (rev 167786)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerDashboardView.css	2014-04-25 00:54:05 UTC (rev 167787)
@@ -110,7 +110,7 @@
 }
 
 .dashboard.debugger > .location .function-name::after {
-    content: '\0A00\2014\0A00'; /* &nbsp;&mdash;&nbsp; */
+    content: '\00A0\2014\00A0'; /* &nbsp;&mdash;&nbsp; */
 }
 
 .dashboard.debugger > .location .go-to-link {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to