Title: [116946] trunk/Source/WebCore
Revision
116946
Author
[email protected]
Date
2012-05-14 07:49:18 -0700 (Mon, 14 May 2012)

Log Message

Web Inspector: [Styles] css properties copied into clipboard contain extra line breaks before color values
https://bugs.webkit.org/show_bug.cgi?id=86372

Reviewed by Vsevolod Vlasov.

The "display: block" property found in the ".swatch-inner" CSS class was causing the issue
(an additional \n was rendered in the plain text value).

* inspector/front-end/inspector.css:
(.swatch-inner):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116945 => 116946)


--- trunk/Source/WebCore/ChangeLog	2012-05-14 14:05:50 UTC (rev 116945)
+++ trunk/Source/WebCore/ChangeLog	2012-05-14 14:49:18 UTC (rev 116946)
@@ -1,3 +1,16 @@
+2012-05-14  Alexander Pavlov  <[email protected]>
+
+        Web Inspector: [Styles] css properties copied into clipboard contain extra line breaks before color values
+        https://bugs.webkit.org/show_bug.cgi?id=86372
+
+        Reviewed by Vsevolod Vlasov.
+
+        The "display: block" property found in the ".swatch-inner" CSS class was causing the issue
+        (an additional \n was rendered in the plain text value).
+
+        * inspector/front-end/inspector.css:
+        (.swatch-inner):
+
 2012-05-14  Pavel Feldman  <[email protected]>
 
         [Qt] REGRESSION (r116789): inspector/debugger/script-formatter-console.html fails

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (116945 => 116946)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2012-05-14 14:05:50 UTC (rev 116945)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2012-05-14 14:49:18 UTC (rev 116946)
@@ -1493,7 +1493,8 @@
 .swatch-inner {
     width: 100%;
     height: 100%;
-    display: block;
+    display: inline-block;
+    margin-bottom: 1px;
 }
 
 .swatch:hover {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to