| Index: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| index 87b4b97906a2c5031739e43b21a519270a0f2433..ff610fc7505eb5cb88eae2596ef7f27a8ba0df42 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| @@ -243,27 +243,6 @@ void StyleAdjuster::adjustComputedStyle(ComputedStyle& style, const ComputedStyl
|
| style.clearMultiCol();
|
| }
|
| adjustStyleForAlignment(style, parentStyle);
|
| -
|
| - if (element) {
|
| - if ((style.width().type() == Intrinsic)
|
| - | (style.minWidth().type() == Intrinsic)
|
| - | (style.maxWidth().type() == Intrinsic)
|
| - | (style.height().type() == Intrinsic)
|
| - | (style.minHeight().type() == Intrinsic)
|
| - | (style.maxHeight().type() == Intrinsic)
|
| - | (style.flexBasis().type() == Intrinsic)) {
|
| - UseCounter::countDeprecation(element->document(), UseCounter::LegacyCSSValueIntrinsic);
|
| - }
|
| - if ((style.width().type() == MinIntrinsic)
|
| - | (style.minWidth().type() == MinIntrinsic)
|
| - | (style.maxWidth().type() == MinIntrinsic)
|
| - | (style.height().type() == MinIntrinsic)
|
| - | (style.minHeight().type() == MinIntrinsic)
|
| - | (style.maxHeight().type() == MinIntrinsic)
|
| - | (style.flexBasis().type() == MinIntrinsic)) {
|
| - UseCounter::countDeprecation(element->document(), UseCounter::LegacyCSSValueMinIntrinsic);
|
| - }
|
| - }
|
| }
|
|
|
| void StyleAdjuster::adjustStyleForFirstLetter(ComputedStyle& style)
|
|
|