mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
style: Drop frames() timing function.
frames() timing function was removed from the spec, so we drop it. Besides, some devtool tests are removed because they use frame(). I will add them back by using new step function later. Differential Revision: https://phabricator.services.mozilla.com/D9309
This commit is contained in:
parent
990f2c6bb9
commit
3a536f463c
4 changed files with 4 additions and 71 deletions
|
@ -92,7 +92,7 @@ pub struct TransformOrigin<H, V, Depth> {
|
|||
|
||||
/// A generic timing function.
|
||||
///
|
||||
/// <https://drafts.csswg.org/css-timing-1/#single-timing-function-production>
|
||||
/// https://drafts.csswg.org/css-easing-1/#timing-functions
|
||||
#[derive(Clone, Copy, Debug, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToCss)]
|
||||
#[value_info(ty = "TIMING_FUNCTION")]
|
||||
pub enum TimingFunction<Integer, Number> {
|
||||
|
@ -111,9 +111,6 @@ pub enum TimingFunction<Integer, Number> {
|
|||
#[css(comma, function)]
|
||||
#[value_info(other_values = "step-start,step-end")]
|
||||
Steps(Integer, #[css(skip_if = "is_end")] StepPosition),
|
||||
/// `frames(<integer>)`
|
||||
#[css(comma, function)]
|
||||
Frames(Integer),
|
||||
}
|
||||
|
||||
#[allow(missing_docs)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue