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

Issue 1587533002: Add composition support for SVG Web Animation of x, y, dx, dy attributes (Closed)

Created:
4 years, 11 months ago by alancutter (OOO until 2018)
Modified:
4 years, 11 months ago
Reviewers:
dstockwell, fs
CC:
darktears, blink-reviews, blink-reviews-animation_chromium.org, chromium-reviews, krit, Eric Willigers, f(malita), fs, gyuyoung2, kouhei+svg_chromium.org, pdr+svgwatchlist_chromium.org, rjwright, rwlbuis, Stephen Chennney, shans, suzyh_UTC10 (ex-contributor)
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add composition support for SVG Web Animation of x, y, dx, dy attributes This change adds SVGLengthListInterpolationType to enable additive and neutral Web Animation keyframes for SVG attributes: x, y, dx, dy This is a continuation of: https://codereview.chromium.org/1535523002 LayoutTests have been updated to test lengths, length lists and numbers separately on these attributes. BUG=530436 Committed: https://crrev.com/3c5fdeeaf0e31f0982e1f457b54067b8dc2348fa Cr-Commit-Position: refs/heads/master@{#369353}

Patch Set 1 #

Patch Set 2 : Remove expectation file #

Total comments: 8

Patch Set 3 : Review changes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+712 lines, -674 lines) Patch
A third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-dx-dy-length-list-composition.html View 1 chunk +135 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-dx-dy-number-composition.html View 5 chunks +22 lines, -72 lines 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-x-composition.html View 3 chunks +6 lines, -5 lines 0 comments Download
A third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-x-list-composition.html View 1 chunk +152 lines, -0 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-y-composition.html View 1 chunk +12 lines, -9 lines 0 comments Download
A third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-y-list-composition.html View 1 chunk +152 lines, -0 lines 0 comments Download
D third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-dx-dy-interpolation.html View 1 chunk +0 lines, -38 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-dx-dy-length-list-interpolation.html View 1 chunk +1 line, -1 line 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-dx-dy-number-interpolation.html View 2 chunks +14 lines, -13 lines 0 comments Download
D third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-interpolation.html View 1 chunk +0 lines, -28 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-list-interpolation.html View 1 chunk +26 lines, -27 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html View 2 chunks +7 lines, -5 lines 0 comments Download
D third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-y-interpolation.html View 1 chunk +0 lines, -57 lines 0 comments Download
A + third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-y-list-interpolation.html View 3 chunks +19 lines, -20 lines 0 comments Download
A third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-x-list-responsive.html View 1 chunk +26 lines, -0 lines 0 comments Download
D third_party/WebKit/Source/core/animation/LengthSVGInterpolation.h View 1 chunk +0 lines, -49 lines 0 comments Download
D third_party/WebKit/Source/core/animation/LengthSVGInterpolation.cpp View 1 2 1 chunk +0 lines, -176 lines 0 comments Download
D third_party/WebKit/Source/core/animation/ListSVGInterpolation.h View 1 chunk +0 lines, -132 lines 0 comments Download
M third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.h View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.cpp View 1 2 3 chunks +31 lines, -20 lines 0 comments Download
A + third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.h View 3 chunks +8 lines, -8 lines 0 comments Download
A third_party/WebKit/Source/core/animation/SVGLengthListInterpolationType.cpp View 1 1 chunk +83 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/StringKeyframe.cpp View 3 chunks +10 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 3 chunks +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGLengthList.h View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/svg/SVGLengthList.cpp View 1 chunk +0 lines, -2 lines 0 comments Download

Messages

Total messages: 21 (10 generated)
alancutter (OOO until 2018)
4 years, 11 months ago (2016-01-13 07:34:48 UTC) #4
fs
LGTM w/ ultra nits https://codereview.chromium.org/1587533002/diff/20001/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.cpp File third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.cpp (right): https://codereview.chromium.org/1587533002/diff/20001/third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.cpp#newcode102 third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.cpp:102: PassRefPtrWillBeRawPtr<SVGLength> SVGLengthInterpolationType::resolveInterpolableSVGLength(const InterpolableValue& interpolableValue, const ...
4 years, 11 months ago (2016-01-13 12:20:24 UTC) #5
suzyh_UTC10 (ex-contributor)
Thanks for taking over this patch for me, Alan! You did more than I expected ...
4 years, 11 months ago (2016-01-13 23:34:00 UTC) #7
suzyh_UTC10 (ex-contributor)
4 years, 11 months ago (2016-01-13 23:35:53 UTC) #9
alancutter (OOO until 2018)
Thanks for the reviews. > LGTM w/ ultra nits These are reasonable nits to me! ...
4 years, 11 months ago (2016-01-14 00:44:01 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1587533002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1587533002/40001
4 years, 11 months ago (2016-01-14 00:47:33 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_dbg_recipe on tryserver.chromium.android (JOB_TIMED_OUT, no build URL) android_chromium_gn_compile_dbg on ...
4 years, 11 months ago (2016-01-14 02:53:26 UTC) #15
dstockwell
lgtm
4 years, 11 months ago (2016-01-14 05:47:17 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1587533002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1587533002/40001
4 years, 11 months ago (2016-01-14 06:38:35 UTC) #18
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years, 11 months ago (2016-01-14 06:45:15 UTC) #19
commit-bot: I haz the power
4 years, 11 months ago (2016-01-14 06:46:20 UTC) #21
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/3c5fdeeaf0e31f0982e1f457b54067b8dc2348fa
Cr-Commit-Position: refs/heads/master@{#369353}

Powered by Google App Engine
This is Rietveld 408576698