Index: third_party/WebKit/Source/core/style/ComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h |
index 31573b94f4585262fd459c213041aa2e6016af2b..b22f0fe24c53a1eda5dea82b32e76542cad115c3 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
@@ -3900,7 +3900,8 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase, |
} |
static bool isDisplayReplacedType(EDisplay display) { |
- return display == EDisplay::InlineBlock || display == EDisplay::InlineBox || |
+ return display == EDisplay::InlineBlock || |
+ display == EDisplay::WebkitInlineBox || |
display == EDisplay::InlineFlex || |
display == EDisplay::InlineTable || display == EDisplay::InlineGrid; |
} |