| Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| index 5d1a4dc1e628d2173c4aa40fc9da67f865e5281d..a7da0f04a8fe7ce16767db5c30c3b6f38f9eb0f0 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| @@ -2883,14 +2883,15 @@
|
| // Flexbox Items, which obviously should have a container.
|
| return false;
|
| }
|
| + const ComputedStyle* parent_style = IsAnonymous() ? cb->Style() : nullptr;
|
| if (cb->IsHorizontalWritingMode() != IsHorizontalWritingMode())
|
| return style
|
| .ResolvedAlignSelf(cb->SelfAlignmentNormalBehavior(this),
|
| - cb->Style())
|
| + parent_style)
|
| .GetPosition() == kItemPositionStretch;
|
| return style
|
| .ResolvedJustifySelf(cb->SelfAlignmentNormalBehavior(this),
|
| - cb->Style())
|
| + parent_style)
|
| .GetPosition() == kItemPositionStretch;
|
| }
|
|
|
|
|