| Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| index db51ceb6751378e0f7129ebb7f900e52d43fcecb..c55db95b238e21818a63efe71bb5bc54e78b11c0 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -340,19 +340,19 @@ bool PaintLayer::sticksToViewport() const {
|
| ->view()
|
| ->paintProperties()
|
| ->localBorderBoxProperties()
|
| - ->propertyTreeState.scroll();
|
| + ->scroll();
|
| } else {
|
| ancestorTargetScrollNode = layoutObject()
|
| ->view()
|
| ->paintProperties()
|
| ->contentsProperties()
|
| - .propertyTreeState.scroll();
|
| + .scroll();
|
| }
|
|
|
| return layoutObject()
|
| ->paintProperties()
|
| ->localBorderBoxProperties()
|
| - ->propertyTreeState.scroll() == ancestorTargetScrollNode;
|
| + ->scroll() == ancestorTargetScrollNode;
|
| }
|
|
|
| return (layoutObject()->style()->position() == FixedPosition &&
|
|
|