Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/MapCoordinatesFlags.h |
| diff --git a/third_party/WebKit/Source/core/layout/MapCoordinatesFlags.h b/third_party/WebKit/Source/core/layout/MapCoordinatesFlags.h |
| index 23b2425d8cc2574beff1ebb207e98a3e15708747..2b248c2b5491ce826eea21c3e70e63bcc497a81a 100644 |
| --- a/third_party/WebKit/Source/core/layout/MapCoordinatesFlags.h |
| +++ b/third_party/WebKit/Source/core/layout/MapCoordinatesFlags.h |
| @@ -25,6 +25,10 @@ enum MapCoordinatesMode { |
| // disables view clipping and scroll offset adjustment. |
| // TODO(wangxianzhu): Remove this when root-layer-scrolls launches. |
| InputIsInFrameCoordinates = 1 << 4, |
| + |
| + // Ignore offset adjustments caused by position:sticky calculations when |
| + // walking the chain. |
| + IgnoreSticky = 1 << 5, |
|
flackr
2017/01/31 18:33:00
I'd prefer IgnoreStickyOffset.
smcgruer
2017/01/31 20:42:16
Done.
|
| }; |
| typedef unsigned MapCoordinatesFlags; |