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

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

Issue 686633002: First pass at removing position:fixed. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | sky/engine/core/css/resolver/StyleAdjuster.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 ca9709a2b6ab1b86fd07c9f3ca01c0591a5ed62b..f34c1cb829b53b2e272784a68781050e98fb6531 100644
--- a/sky/engine/core/css/CSSPrimitiveValueMappings.h
+++ b/sky/engine/core/css/CSSPrimitiveValueMappings.h
@@ -1721,9 +1721,6 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EPosition e)
case AbsolutePosition:
m_value.valueID = CSSValueAbsolute;
break;
- case FixedPosition:
- m_value.valueID = CSSValueFixed;
- break;
}
}
@@ -1737,8 +1734,6 @@ template<> inline CSSPrimitiveValue::operator EPosition() const
return RelativePosition;
case CSSValueAbsolute:
return AbsolutePosition;
- case CSSValueFixed:
- return FixedPosition;
default:
break;
}
« no previous file with comments | « no previous file | sky/engine/core/css/resolver/StyleAdjuster.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698