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

Unified Diff: sky/engine/core/css/CSSComputedStyleDeclaration.cpp

Issue 731863003: Remove CSSCompositing (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: preland Created 6 years, 1 month 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: sky/engine/core/css/CSSComputedStyleDeclaration.cpp
diff --git a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
index cdbc960a60836e048275345dd72284363ac0d816..ec1160cb0414186c6a748dc018e142c193eb63e9 100644
--- a/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
+++ b/sky/engine/core/css/CSSComputedStyleDeclaration.cpp
@@ -76,7 +76,6 @@ static const CSSPropertyID staticComputableProperties[] = {
CSSPropertyAnimationPlayState,
CSSPropertyAnimationTimingFunction,
CSSPropertyBackgroundAttachment,
- CSSPropertyBackgroundBlendMode,
CSSPropertyBackgroundClip,
CSSPropertyBackgroundColor,
CSSPropertyBackgroundImage,
@@ -126,7 +125,6 @@ static const CSSPropertyID staticComputableProperties[] = {
CSSPropertyFontWeight,
CSSPropertyHeight,
CSSPropertyImageRendering,
- CSSPropertyIsolation,
CSSPropertyLeft,
CSSPropertyLetterSpacing,
CSSPropertyLineHeight,
@@ -141,7 +139,6 @@ static const CSSPropertyID staticComputableProperties[] = {
CSSPropertyMaxWidth,
CSSPropertyMinHeight,
CSSPropertyMinWidth,
- CSSPropertyMixBlendMode,
CSSPropertyObjectFit,
CSSPropertyObjectPosition,
CSSPropertyOpacity,
@@ -1571,8 +1568,6 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
return cssValuePool().createValue(style->hyphenationString(), CSSPrimitiveValue::CSS_STRING);
case CSSPropertyImageRendering:
return CSSPrimitiveValue::create(style->imageRendering());
- case CSSPropertyIsolation:
- return cssValuePool().createValue(style->isolation());
case CSSPropertyLeft:
return valueForPositionOffset(*style, CSSPropertyLeft, renderer);
case CSSPropertyLetterSpacing:
@@ -2171,15 +2166,7 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert
return cssValuePool().createIdentifierValue(CSSValueNone);
case CSSPropertyWebkitFilter:
return valueForFilter(renderer, *style);
- case CSSPropertyMixBlendMode:
- return cssValuePool().createValue(style->blendMode());
- case CSSPropertyBackgroundBlendMode: {
- RefPtr<CSSValueList> list = CSSValueList::createCommaSeparated();
- for (const FillLayer* currLayer = &style->backgroundLayers(); currLayer; currLayer = currLayer->next())
- list->append(cssValuePool().createValue(currLayer->blendMode()));
- return list.release();
- }
case CSSPropertyBackground:
return valuesForBackgroundShorthand();
case CSSPropertyBorder: {
« no previous file with comments | « sky/engine/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl ('k') | sky/engine/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698