Title: [166747] trunk/Source/WebCore
- Revision
- 166747
- Author
- zol...@webkit.org
- Date
- 2014-04-03 15:34:34 -0700 (Thu, 03 Apr 2014)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (166746 => 166747)
--- trunk/Source/WebCore/ChangeLog 2014-04-03 21:44:54 UTC (rev 166746)
+++ trunk/Source/WebCore/ChangeLog 2014-04-03 22:34:34 UTC (rev 166747)
@@ -1,3 +1,17 @@
+2014-04-03 Zoltan Horvath <zol...@webkit.org>
+
+ [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:
+
2014-04-03 Dirk Schulze <k...@webkit.org>
[CG] Canvas lineDashOffset does not handle negative numbers correctly
Modified: trunk/Source/WebCore/rendering/shapes/Shape.h (166746 => 166747)
--- trunk/Source/WebCore/rendering/shapes/Shape.h 2014-04-03 21:44:54 UTC (rev 166746)
+++ trunk/Source/WebCore/rendering/shapes/Shape.h 2014-04-03 22:34:34 UTC (rev 166747)
@@ -48,8 +48,8 @@
{
}
- LayoutUnit logicalLeft;
- LayoutUnit logicalRight;
+ float logicalLeft;
+ float logicalRight;
};
typedef Vector<LineSegment> SegmentList;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes