Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(992)

Unified Diff: Source/core/platform/graphics/GraphicsContext.cpp

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated css-properties-as-js-properties.html layout test expectations to match new properties. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/platform/graphics/GraphicsContext.cpp
diff --git a/Source/core/platform/graphics/GraphicsContext.cpp b/Source/core/platform/graphics/GraphicsContext.cpp
index b0d0653c78c10f1e44e3be732776ff42a9b1ae96..42dbf9a3fb7fbcebff1a979ca46179c357844e63 100644
--- a/Source/core/platform/graphics/GraphicsContext.cpp
+++ b/Source/core/platform/graphics/GraphicsContext.cpp
@@ -743,10 +743,8 @@ float GraphicsContext::setupPaintForStroking(SkPaint* paint, SkRect* rect, int l
switch (m_skiaState->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 = m_skiaState->m_dashRatio * width;

Powered by Google App Engine
This is Rietveld 408576698