| Index: Source/core/style/ComputedStyle.h
|
| diff --git a/Source/core/style/ComputedStyle.h b/Source/core/style/ComputedStyle.h
|
| index 4099c5d08cd2cce6ec766e0924838a74652b6ed3..b19689301eb4bc0c49cad064fc8622ef0746de63 100644
|
| --- a/Source/core/style/ComputedStyle.h
|
| +++ b/Source/core/style/ComputedStyle.h
|
| @@ -466,7 +466,7 @@ public:
|
|
|
| EPosition position() const { return static_cast<EPosition>(noninherited_flags.position); }
|
| bool hasOutOfFlowPosition() const { return position() == AbsolutePosition || position() == FixedPosition; }
|
| - bool hasInFlowPosition() const { return position() == RelativePosition; }
|
| + bool hasInFlowPosition() const { return position() == RelativePosition || position() == StickyPosition; }
|
| bool hasViewportConstrainedPosition() const { return position() == FixedPosition; }
|
| EFloat floating() const { return static_cast<EFloat>(noninherited_flags.floating); }
|
|
|
|
|