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

Unified Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Refactor test case, add {inline-,block-}size overrides width height Created 4 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
Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
index a3178b63a3d4268ce3a42b2ce514a918ff86b559..23eb4afa201d9ab38c7fd7dff1b13e1774b52468 100644
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
@@ -3343,6 +3343,12 @@ const CSSValue* ComputedStyleCSSValueMapping::get(
// Directional properties are resolved by resolveDirectionAwareProperty()
// before the switch.
+ case CSSPropertyBlockSize:
+ case CSSPropertyInlineSize:
+ case CSSPropertyMaxBlockSize:
+ case CSSPropertyMaxInlineSize:
+ case CSSPropertyMinBlockSize:
+ case CSSPropertyMinInlineSize:
case CSSPropertyWebkitBorderEnd:
case CSSPropertyWebkitBorderEndColor:
case CSSPropertyWebkitBorderEndStyle:

Powered by Google App Engine
This is Rietveld 408576698