Changeset 116946 in webkit


Ignore:
Timestamp:
May 14, 2012 7:49:18 AM (12 years ago)
Author:
apavlov@chromium.org
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116940 r116946  
     12012-05-14  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: [Styles] css properties copied into clipboard contain extra line breaks before color values
     4        https://bugs.webkit.org/show_bug.cgi?id=86372
     5
     6        Reviewed by Vsevolod Vlasov.
     7
     8        The "display: block" property found in the ".swatch-inner" CSS class was causing the issue
     9        (an additional \n was rendered in the plain text value).
     10
     11        * inspector/front-end/inspector.css:
     12        (.swatch-inner):
     13
    1142012-05-14  Pavel Feldman  <pfeldman@chromium.org>
    215
  • trunk/Source/WebCore/inspector/front-end/inspector.css

    r116852 r116946  
    14941494    width: 100%;
    14951495    height: 100%;
    1496     display: block;
     1496    display: inline-block;
     1497    margin-bottom: 1px;
    14971498}
    14981499
Note: See TracChangeset for help on using the changeset viewer.