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

Issue 1771733002: Web Animations: Use of hyphens is no longer supported (Closed)

Created:
4 years, 9 months ago by Eric Willigers
Modified:
4 years ago
CC:
darktears, blink-reviews, blink-reviews-animation_chromium.org, chromium-reviews, rjwright, shans
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Web Animations: Use of hyphens is no longer supported Hyphenated names in Web Animations keyframes were deprecated in M50. camelCase is now required. BUG=588025 Committed: https://crrev.com/356ff3329424333a5dd0d8f971bbee648ed5d9ad Cr-Commit-Position: refs/heads/master@{#381541}

Patch Set 1 #

Total comments: 4

Patch Set 2 : reject-hyphen.html #

Patch Set 3 : warn if hyphenated property is present #

Total comments: 8

Patch Set 4 : names are ignored #

Patch Set 5 : rebase #

Patch Set 6 : lastIndexOf #

Patch Set 7 : Avoid Windows Release failure #

Unified diffs Side-by-side diffs Delta from patch set Stats (+72 lines, -16 lines) Patch
M third_party/WebKit/LayoutTests/animations/big-number-clamping.html View 1 chunk +10 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/css-animation-overrides-svg-presentation-attribute-animation-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js View 1 2 3 4 5 6 2 chunks +10 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/animations/responsive/resources/responsive-test.js View 2 chunks +10 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-d-composition-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-orient-composition-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-points-composition-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-transform-matrix-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-d-interpolation-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-startOffset-interpolation-expected.txt View 1 chunk +0 lines, -1 line 0 comments Download
A third_party/WebKit/LayoutTests/web-animations-api/deprecated-hyphen-expected.txt View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html View 1 2 3 1 chunk +22 lines, -0 lines 0 comments Download
A third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen-expected.txt View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationInputHelpers.cpp View 1 2 3 4 5 1 chunk +7 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/animation/AnimationInputHelpersTest.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/frame/Deprecation.cpp View 1 2 3 4 6 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 48 (21 generated)
Eric Willigers
4 years, 9 months ago (2016-03-07 01:58:02 UTC) #2
alancutter (OOO until 2018)
I would lean towards throwing an error/warning instead of just failing silently. +shans, WDYT? https://codereview.chromium.org/1771733002/diff/1/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js ...
4 years, 9 months ago (2016-03-07 03:08:53 UTC) #4
Eric Willigers
https://codereview.chromium.org/1771733002/diff/1/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js File third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js (right): https://codereview.chromium.org/1771733002/diff/1/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js#newcode74 third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js:74: On 2016/03/07 03:08:53, alancutter wrote: > This helper function ...
4 years, 9 months ago (2016-03-09 03:21:21 UTC) #5
Eric Willigers
On 2016/03/07 03:08:53, alancutter wrote: > I would lean towards throwing an error/warning instead of ...
4 years, 9 months ago (2016-03-10 01:18:06 UTC) #6
alancutter (OOO until 2018)
https://codereview.chromium.org/1771733002/diff/40001/third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html File third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html (right): https://codereview.chromium.org/1771733002/diff/40001/third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html#newcode23 third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html:23: } Why is there a try catch? This helper ...
4 years, 9 months ago (2016-03-10 01:26:50 UTC) #7
Eric Willigers
https://codereview.chromium.org/1771733002/diff/40001/third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html File third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html (right): https://codereview.chromium.org/1771733002/diff/40001/third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html#newcode23 third_party/WebKit/LayoutTests/web-animations-api/reject-hyphen.html:23: } On 2016/03/10 01:26:50, alancutter wrote: > Why is ...
4 years, 9 months ago (2016-03-10 01:56:04 UTC) #9
alancutter (OOO until 2018)
lgtm
4 years, 9 months ago (2016-03-10 02:11:22 UTC) #10
dstockwell
lgtm
4 years, 9 months ago (2016-03-10 02:16:25 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/50017 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/50017
4 years, 9 months ago (2016-03-10 02:19:10 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/137484)
4 years, 9 months ago (2016-03-10 02:58:48 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/50017 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/50017
4 years, 9 months ago (2016-03-10 03:30:24 UTC) #17
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/194346)
4 years, 9 months ago (2016-03-10 04:26:35 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/50017 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/50017
4 years, 9 months ago (2016-03-10 04:43:31 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/194391)
4 years, 9 months ago (2016-03-10 05:42:56 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/70001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/70001
4 years, 9 months ago (2016-03-10 13:11:46 UTC) #26
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/187147)
4 years, 9 months ago (2016-03-10 17:06:38 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/70001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/70001
4 years, 9 months ago (2016-03-10 20:32:03 UTC) #30
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/187397)
4 years, 9 months ago (2016-03-10 23:44:00 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/70001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/70001
4 years, 9 months ago (2016-03-11 03:30:17 UTC) #34
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/187720)
4 years, 9 months ago (2016-03-11 03:48:03 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/70001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/70001
4 years, 9 months ago (2016-03-13 22:28:39 UTC) #38
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/188474)
4 years, 9 months ago (2016-03-14 01:34:42 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1771733002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1771733002/100001
4 years, 9 months ago (2016-03-16 19:48:24 UTC) #43
commit-bot: I haz the power
Committed patchset #7 (id:100001)
4 years, 9 months ago (2016-03-16 21:03:20 UTC) #44
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/356ff3329424333a5dd0d8f971bbee648ed5d9ad Cr-Commit-Position: refs/heads/master@{#381541}
4 years, 9 months ago (2016-03-16 21:04:54 UTC) #46
foolip
ericwilligers@, when do you think it would make sense to remove this deprecation message? (I'm ...
4 years ago (2016-11-24 09:22:16 UTC) #47
Eric Willigers
4 years ago (2016-11-24 11:34:23 UTC) #48
Message was sent while issue was closed.
On 2016/11/24 09:22:16, foolip wrote:
> ericwilligers@, when do you think it would make sense to remove this
deprecation
> message? (I'm auditing deprecation messages with no removal date, and this
> appears to be an already-removed case.)

I think we can remove it now. I've uploaded
https://codereview.chromium.org/2526233002

Powered by Google App Engine
This is Rietveld 408576698