Index: Source/core/platform/graphics/GraphicsContext.cpp |
diff --git a/Source/core/platform/graphics/GraphicsContext.cpp b/Source/core/platform/graphics/GraphicsContext.cpp |
index 61370dfbd9e72907b03d236ee9ea522fe11723a6..db16b3211b9d387543c47d007bfd456c37adb2ad 100644 |
--- a/Source/core/platform/graphics/GraphicsContext.cpp |
+++ b/Source/core/platform/graphics/GraphicsContext.cpp |
@@ -500,10 +500,8 @@ float GraphicsContext::setupPaintForStroking(SkPaint* paint, SkRect* rect, int l |
switch (m_state->m_strokeStyle) { |
case NoStroke: |
case SolidStroke: |
-#if ENABLE(CSS3_TEXT) |
case DoubleStroke: |
- case WavyStroke: // FIXME: https://bugs.webkit.org/show_bug.cgi?id=93509 - Needs platform support. |
-#endif // CSS3_TEXT |
+ case WavyStroke: // FIXME: https://code.google.com/p/chromium/issues/detail?id=229574 |
break; |
case DashedStroke: |
width = dashRatio * width; |
@@ -817,10 +815,8 @@ void GraphicsContext::drawLineForText(const FloatPoint& pt, float width, bool pr |
switch (strokeStyle()) { |
case NoStroke: |
case SolidStroke: |
-#if ENABLE(CSS3_TEXT) |
case DoubleStroke: |
case WavyStroke: |
-#endif // CSS3_TEXT |
setupPaintForFilling(&paint); |
break; |
case DottedStroke: |