Title: [162660] trunk/Source/WebCore
Revision
162660
Author
mmaxfi...@apple.com
Date
2014-01-23 16:23:19 -0800 (Thu, 23 Jan 2014)

Log Message

Turn text-decoration-skip: ink on for all underlines
https://bugs.webkit.org/show_bug.cgi?id=127331

Reviewed by Antti Koivisto.

No new tests are necessary because tests already exist

* rendering/style/RenderStyle.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (162659 => 162660)


--- trunk/Source/WebCore/ChangeLog	2014-01-24 00:06:45 UTC (rev 162659)
+++ trunk/Source/WebCore/ChangeLog	2014-01-24 00:23:19 UTC (rev 162660)
@@ -1,3 +1,14 @@
+2014-01-20  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+       Turn text-decoration-skip: ink on for all underlines
+       https://bugs.webkit.org/show_bug.cgi?id=127331
+
+       Reviewed by Antti Koivisto.
+
+       No new tests are necessary because tests already exist
+
+       * rendering/style/RenderStyle.h:
+
 2014-01-23  Hans Muller  <hmul...@adobe.com>
 
         [CSS Shapes] Image valued shape size and position should conform to the spec

Modified: trunk/Source/WebCore/rendering/style/RenderStyle.h (162659 => 162660)


--- trunk/Source/WebCore/rendering/style/RenderStyle.h	2014-01-24 00:06:45 UTC (rev 162659)
+++ trunk/Source/WebCore/rendering/style/RenderStyle.h	2014-01-24 00:23:19 UTC (rev 162660)
@@ -1685,7 +1685,7 @@
     static TextJustify initialTextJustify() { return TextJustifyAuto; }
 #endif // CSS3_TEXT
     static TextDecorationStyle initialTextDecorationStyle() { return TextDecorationStyleSolid; }
-    static TextDecorationSkip initialTextDecorationSkip() { return TextDecorationSkipNone; }
+    static TextDecorationSkip initialTextDecorationSkip() { return TextDecorationSkipInk; }
     static TextUnderlinePosition initialTextUnderlinePosition() { return TextUnderlinePositionAuto; }
     static float initialZoom() { return 1.0f; }
     static int initialOutlineOffset() { return 0; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to