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

Unified Diff: sky/engine/core/css/CSSPrimitiveValueMappings.h

Issue 756183004: Get rid of background-clip:text and PaintBehaviorForceBlackText. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove forceBlackText Created 6 years 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
« no previous file with comments | « no previous file | sky/engine/core/rendering/EllipsisBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/CSSPrimitiveValueMappings.h
diff --git a/sky/engine/core/css/CSSPrimitiveValueMappings.h b/sky/engine/core/css/CSSPrimitiveValueMappings.h
index c5ddf956737b6eebc174592a659c11b40c5d886c..34c26fdd8ec841db9960b3170ada889ba0a4e2ad 100644
--- a/sky/engine/core/css/CSSPrimitiveValueMappings.h
+++ b/sky/engine/core/css/CSSPrimitiveValueMappings.h
@@ -348,9 +348,6 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EFillBox e)
case ContentFillBox:
m_value.valueID = CSSValueContentBox;
break;
- case TextFillBox:
- m_value.valueID = CSSValueText;
- break;
}
}
@@ -367,8 +364,6 @@ template<> inline CSSPrimitiveValue::operator EFillBox() const
case CSSValueContent:
case CSSValueContentBox:
return ContentFillBox;
- case CSSValueText:
- return TextFillBox;
default:
break;
}
« no previous file with comments | « no previous file | sky/engine/core/rendering/EllipsisBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698