Changeset 166747 in webkit


Ignore:
Timestamp:
Apr 3, 2014 3:34:34 PM (10 years ago)
Author:
zoltan@webkit.org
Message:

[CSS Shapes] LineSegment logicalLeft and logicalRight members should be floats
https://bugs.webkit.org/show_bug.cgi?id=116160

Reviewed by Andreas Kling.

LineSegment edges should not have been changed to LayoutUnit. These are
used only as floats. I modified them back to floats.

No new tests are needed, no behavior change.

  • rendering/shapes/Shape.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166746 r166747  
     12014-04-03  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        [CSS Shapes] LineSegment logicalLeft and logicalRight members should be floats
     4        https://bugs.webkit.org/show_bug.cgi?id=116160
     5
     6        Reviewed by Andreas Kling.
     7
     8        LineSegment edges should not have been changed to LayoutUnit. These are
     9        used only as floats. I modified them back to floats.
     10
     11        No new tests are needed, no behavior change.
     12
     13        * rendering/shapes/Shape.h:
     14
    1152014-04-03  Dirk Schulze  <krit@webkit.org>
    216
  • trunk/Source/WebCore/rendering/shapes/Shape.h

    r166489 r166747  
    4949    }
    5050
    51     LayoutUnit logicalLeft;
    52     LayoutUnit logicalRight;
     51    float logicalLeft;
     52    float logicalRight;
    5353};
    5454
Note: See TracChangeset for help on using the changeset viewer.