Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2555543002: CSS Motion Path: Support offset-rotate in addition to offset-rotation (Closed)
Patch Set: reformat Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b72f5ac2cdecab92c4c883c4eefc9e887840fc82..d6802608cb30a669561c95a77673deeadc7f95bf 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1467,6 +1467,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);
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.cpp ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698