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

Side by Side Diff: polymer_0.5.4/bower_components/web-animations-js/History.md

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 months 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 unified diff | Download patch
OLDNEW
1 ### 1.0.5 - *January 6 2015*
2
3 * Fix loading the polyfill in an SVG document
4 * Fix a problem where groups didn't take effect in their first frame
5 * Don't rely on performance.now
6
7 ### 1.0.4 - *December 8 2014*
8
9 * Fix a critical bug where deprecation logic wasn't being loaded
10 when `web-animations-next` and `web-animations-next-lite` were
11 executed on top of a native `element.animate`.
12
13 ### 1.0.3 - *December 4 2014*
14
15 * Fix a critical bug on iOS 7 and Safari <= 6. Due to limitations,
16 inline style patching is not supported on these platforms.
17
18 ### 1.0.2 - *November 28 2014*
19
20 * Deprecated `AnimationTiming.playbackRate`.
21
22 For example, this is no longer supported:
23
24 var player = element.animate(
25 keyframes,
26 {duration: 1000, playbackRate: 2});
27
28 Use `AnimationPlayer.playbackRate` instead:
29
30 var player = element.animate(
31 keyframes,
32 {duration: 1000});
33 player.playbackRate = 2;
34
35 If you have any feedback on this change, please start a discussion
36 on the public-fx mailing list:
37 http://lists.w3.org/Archives/Public/public-fx/
38
39 Or file an issue against the specification on GitHub:
40 https://github.com/w3c/web-animations/issues/new
41
1 ### 1.0.1 - *November 26 2014* 42 ### 1.0.1 - *November 26 2014*
2 43
3 * Players should be constructed in idle state 44 * Players should be constructed in idle state
4 * `play()` and `reverse()` should not force a start times 45 * `play()` and `reverse()` should not force a start times
5 * Add `requestAnimationFrame` ids and `cancelAnimationFrame` 46 * Add `requestAnimationFrame` ids and `cancelAnimationFrame`
6 47
7 ### 1.0.0 — *November 21 2014* 48 ### 1.0.0 — *November 21 2014*
8 49
9 The web-animations-js hackers are pleased to announce the release of 50 The web-animations-js hackers are pleased to announce the release of
10 a new codebase for the Web Animations Polyfill: 51 a new codebase for the Web Animations Polyfill:
(...skipping 21 matching lines...) Expand all
32 73
33 `web-animations-next-lite.min.js` - A cut down version of 74 `web-animations-next-lite.min.js` - A cut down version of
34 web-animations-next, removes several lesser used property handlers 75 web-animations-next, removes several lesser used property handlers
35 and some of the larger and less used features such as matrix 76 and some of the larger and less used features such as matrix
36 interpolation/decomposition. 77 interpolation/decomposition.
37 78
38 Not all features of the previous polyfill have been ported to the 79 Not all features of the previous polyfill have been ported to the
39 new codebase; most notably mutation of Animations and Groups and 80 new codebase; most notably mutation of Animations and Groups and
40 Additive Animations are not yet supported. These features are still 81 Additive Animations are not yet supported. These features are still
41 important and will be implemented in the coming weeks. 82 important and will be implemented in the coming weeks.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698