| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index 5757c0377c8c6f9ceeeffbe8908fc7e45d2b2d9a..c4c66c44640203716498a0af15118b321c3bc92b 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1471,6 +1471,15 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
|
| offsetPosition);
|
| }
|
|
|
| + // offset-rotate
|
| + static StyleOffsetRotation initialOffsetRotate() {
|
| + return initialOffsetRotation();
|
| + }
|
| + const StyleOffsetRotation& offsetRotate() const { return offsetRotation(); }
|
| + void setOffsetRotate(const StyleOffsetRotation& offsetRotate) {
|
| + setOffsetRotation(offsetRotate);
|
| + }
|
| +
|
| // offset-rotation
|
| static StyleOffsetRotation initialOffsetRotation() {
|
| return StyleOffsetRotation(0, OffsetRotationAuto);
|
|
|