aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/animation.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-5/+4
| | | | This merges import blocks that were reported by tidy as unmerged.
* CSS 'transformation: skew()' should take <angle> type as parametersJinwoo Song2015-09-121-1/+8
| | | | | | | | Current implementation is taking <number> type as parameter so skew() does not work properly. Let the skew() to get <angle> as specification described. Fixes #6237.
* Various fixes in styleManish Goregaokar2015-09-031-7/+7
|
* Upgrade to rustc 1.4.0-dev (cb9323ec0 2015-09-01)Simon Sapin2015-09-021-1/+1
|
* sort all usesJohann Tuffe2015-08-201-13/+13
|
* Fix existing syntactics nits.Josh Matthews2015-08-161-1/+1
|
* Replace uses of `for foo in bar.iter()` and `for foo in bar.iter_mut()`João Oliveira2015-08-151-3/+2
| | | | closes #7197
* style: Switch animation timestamps to be doubles instead of floats.Patrick Walton2015-08-011-35/+37
| | | | | 32-bit floats are not enough to hold timestamps since the epoch and result in jank.
* style: Fix misdirected animation properties.Patrick Walton2015-08-011-18/+18
| | | | left redirected to top, and padding redirected to margin.
* Implement getComputedStyleDavid Zbarsky2015-07-291-11/+32
|
* Change transforms to use LengthOrPercentage.Glenn Watson2015-07-281-14/+3
| | | | | | This simplifies an upcoming PR to support serializing transform values for css style declarations. Related to issue #6643.
* Partial implementation of transform animations spec.Glenn Watson2015-06-101-1/+176
| | | | Also tidy up some of the ComputedMatrix code.
* Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.Simon Sapin2015-05-051-36/+53
|
* Animate many more CSS propertiesJoseph Seaton2015-04-161-49/+497
|
* layout: Implement CSS transitions per CSS-TRANSITIONS § 2.Patrick Walton2015-03-311-0/+221
Transition events are not yet supported, and the only animatable properties are `top`, `right`, `bottom`, and `left`. However, all other features of transitions are supported. There are no automated tests at present because I'm not sure how best to test it, but three manual tests are included.