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

Issue 2555543002: CSS Motion Path: Support offset-rotate in addition to offset-rotation (Closed)

Created:
4 years ago by Eric Willigers
Modified:
4 years ago
Reviewers:
sashab, Rick Byers
CC:
darktears, apavlov+blink_chromium.org, blink-reviews, blink-reviews-animation_chromium.org, blink-reviews-css, blink-reviews-style_chromium.org, chromium-reviews, dglazkov+blink, rjwright, rwlbuis, shans
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

CSS Motion Path: Support offset-rotate in addition to offset-rotation offset-rotation is being renamed to offset-rotate, but we will already have shipped offset-rotation. We 'alias' offset-rotate to offset-rotation, sharing storage in ComputedStyle. Spec discussion: https://github.com/w3c/fxtf-drafts/issues/70 Design Docs: https://goo.gl/XFvGR8 https://docs.google.com/document/d/1AHSyz3_Qu8hZK5czcQdfucVanoxpsUkBbzY16ti4_NY/edit?usp=sharing BUG=671333 Committed: https://crrev.com/af51f3582ab7798d8a58628c6975f7c08df8c8a2 Cr-Commit-Position: refs/heads/master@{#436835}

Patch Set 1 #

Total comments: 13

Patch Set 2 : comments #

Total comments: 2

Patch Set 3 : reformat #

Unified diffs Side-by-side diffs Delta from patch set Stats (+407 lines, -24 lines) Patch
A third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html View 1 1 chunk +94 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/animations/interpolation/offset-rotate-interpolation.html View 1 1 chunk +145 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/animations/responsive/offset-rotate-responsive.html View 1 1 chunk +43 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/css3/motion-path/offset-rotate.html View 1 1 chunk +70 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/android/fast/css/getComputedStyle/computed-style-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/android/fast/css/getComputedStyle/computed-style-without-renderer-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/android/svg/css/getComputedStyle-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/android/virtual/stable/webexposed/css-properties-as-js-properties-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/platform/android/webexposed/css-properties-as-js-properties-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/svg/css/getComputedStyle-listing-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/virtual/stable/webexposed/css-properties-as-js-properties-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/css-properties-as-js-properties-expected.txt View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/animation/PropertyInterpolationTypesMapping.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp View 1 2 1 chunk +22 lines, -22 lines 0 comments Download
M third_party/WebKit/Source/core/css/CSSProperties.in View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/resolver/AnimatedStyleBuilder.cpp View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/frame/UseCounter.cpp View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/style/ComputedStyle.h View 1 chunk +9 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 32 (16 generated)
Eric Willigers
4 years ago (2016-12-05 20:09:21 UTC) #3
Eric Willigers
https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/Source/core/frame/UseCounter.cpp File third_party/WebKit/Source/core/frame/UseCounter.cpp (right): https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/Source/core/frame/UseCounter.cpp#newcode1053 third_party/WebKit/Source/core/frame/UseCounter.cpp:1053: case CSSPropertyOffsetRotate: This CL is intended to be merged ...
4 years ago (2016-12-05 20:11:47 UTC) #5
Eric Willigers
4 years ago (2016-12-06 00:51:40 UTC) #9
sashab
https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html File third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html (right): https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html#newcode5 third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html:5: assertComposition({ Maybe add one-line comments above each of these ...
4 years ago (2016-12-06 04:16:34 UTC) #10
Eric Willigers
https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html File third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html (right): https://codereview.chromium.org/2555543002/diff/1/third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html#newcode5 third_party/WebKit/LayoutTests/animations/composition/offset-rotate-composition.html:5: assertComposition({ On 2016/12/06 04:16:34, sashab wrote: > Maybe add ...
4 years ago (2016-12-06 05:30:05 UTC) #11
sashab
Nice, looking much better! Just one more thing... Have you looked at the way we ...
4 years ago (2016-12-06 05:55:18 UTC) #12
Eric Willigers
On 2016/12/06 05:55:18, sashab wrote: > Nice, looking much better! > > Just one more ...
4 years ago (2016-12-06 06:06:46 UTC) #13
Eric Willigers
+rbyers@ for API owners
4 years ago (2016-12-06 06:13:21 UTC) #15
Rick Byers
webexposed LGTM Should we send deprecation warnings for offset-rotation saying to use offset-rotate instead now ...
4 years ago (2016-12-06 16:30:42 UTC) #16
Eric Willigers
https://codereview.chromium.org/2555543002/diff/20001/third_party/WebKit/Source/core/frame/UseCounter.cpp File third_party/WebKit/Source/core/frame/UseCounter.cpp (right): https://codereview.chromium.org/2555543002/diff/20001/third_party/WebKit/Source/core/frame/UseCounter.cpp#newcode1055 third_party/WebKit/Source/core/frame/UseCounter.cpp:1055: // TODO(ericwilligers): Distinct use counter for CSSPropertyOffsetRotate. On 2016/12/06 ...
4 years ago (2016-12-06 18:43:12 UTC) #17
Rick Byers
On 2016/12/06 18:43:12, Eric Willigers wrote: > https://codereview.chromium.org/2555543002/diff/20001/third_party/WebKit/Source/core/frame/UseCounter.cpp > File third_party/WebKit/Source/core/frame/UseCounter.cpp (right): > > https://codereview.chromium.org/2555543002/diff/20001/third_party/WebKit/Source/core/frame/UseCounter.cpp#newcode1055 ...
4 years ago (2016-12-06 19:01:35 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2555543002/20001
4 years ago (2016-12-06 19:23:45 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/319642)
4 years ago (2016-12-06 19:36:21 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2555543002/40001
4 years ago (2016-12-07 00:18:10 UTC) #28
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years ago (2016-12-07 02:09:44 UTC) #30
commit-bot: I haz the power
4 years ago (2016-12-07 02:13:16 UTC) #32
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/af51f3582ab7798d8a58628c6975f7c08df8c8a2
Cr-Commit-Position: refs/heads/master@{#436835}

Powered by Google App Engine
This is Rietveld 408576698