mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Move specified and computed time values to submodules
This commit is contained in:
parent
1bd12bf91a
commit
4ebeaa599b
4 changed files with 210 additions and 182 deletions
|
@ -51,6 +51,7 @@ pub use self::percentage::Percentage;
|
||||||
pub use self::position::Position;
|
pub use self::position::Position;
|
||||||
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint, SVGPaintKind, SVGStrokeDashArray, SVGWidth};
|
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint, SVGPaintKind, SVGStrokeDashArray, SVGWidth};
|
||||||
pub use self::text::{InitialLetter, LetterSpacing, LineHeight, WordSpacing};
|
pub use self::text::{InitialLetter, LetterSpacing, LineHeight, WordSpacing};
|
||||||
|
pub use self::time::Time;
|
||||||
pub use self::transform::{TimingFunction, TransformOrigin};
|
pub use self::transform::{TimingFunction, TransformOrigin};
|
||||||
|
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
|
@ -71,6 +72,7 @@ pub mod position;
|
||||||
pub mod rect;
|
pub mod rect;
|
||||||
pub mod svg;
|
pub mod svg;
|
||||||
pub mod text;
|
pub mod text;
|
||||||
|
pub mod time;
|
||||||
pub mod transform;
|
pub mod transform;
|
||||||
|
|
||||||
/// A `Context` is all the data a specified value could ever need to compute
|
/// A `Context` is all the data a specified value could ever need to compute
|
||||||
|
@ -326,41 +328,6 @@ impl<T> ToComputedValue for T
|
||||||
impl ComputedValueAsSpecified for Atom {}
|
impl ComputedValueAsSpecified for Atom {}
|
||||||
impl ComputedValueAsSpecified for bool {}
|
impl ComputedValueAsSpecified for bool {}
|
||||||
|
|
||||||
/// A computed `<time>` value.
|
|
||||||
#[derive(Clone, PartialEq, PartialOrd, Copy, Debug)]
|
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf, Deserialize, Serialize))]
|
|
||||||
pub struct Time {
|
|
||||||
seconds: CSSFloat,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Time {
|
|
||||||
/// Construct a computed `Time` value from a seconds amount.
|
|
||||||
pub fn from_seconds(seconds: CSSFloat) -> Self {
|
|
||||||
Time {
|
|
||||||
seconds: seconds,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Construct a computed `Time` value that represents zero seconds.
|
|
||||||
pub fn zero() -> Self {
|
|
||||||
Self::from_seconds(0.0)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Return the amount of seconds this time represents.
|
|
||||||
#[inline]
|
|
||||||
pub fn seconds(&self) -> CSSFloat {
|
|
||||||
self.seconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToCss for Time {
|
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result
|
|
||||||
where W: fmt::Write,
|
|
||||||
{
|
|
||||||
write!(dest, "{}s", self.seconds())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ComputedValueAsSpecified for specified::BorderStyle {}
|
impl ComputedValueAsSpecified for specified::BorderStyle {}
|
||||||
|
|
||||||
/// A `<number>` value.
|
/// A `<number>` value.
|
||||||
|
|
46
components/style/values/computed/time.rs
Normal file
46
components/style/values/computed/time.rs
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
//! Computed time values.
|
||||||
|
|
||||||
|
use std::fmt;
|
||||||
|
use style_traits::ToCss;
|
||||||
|
use values::CSSFloat;
|
||||||
|
|
||||||
|
/// A computed `<time>` value.
|
||||||
|
#[derive(Clone, PartialEq, PartialOrd, Copy, Debug)]
|
||||||
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf, Deserialize, Serialize))]
|
||||||
|
pub struct Time {
|
||||||
|
seconds: CSSFloat,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Time {
|
||||||
|
/// Creates a time value from a seconds amount.
|
||||||
|
pub fn from_seconds(seconds: CSSFloat) -> Self {
|
||||||
|
Time {
|
||||||
|
seconds: seconds,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns `0s`.
|
||||||
|
pub fn zero() -> Self {
|
||||||
|
Self::from_seconds(0.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the amount of seconds this time represents.
|
||||||
|
#[inline]
|
||||||
|
pub fn seconds(&self) -> CSSFloat {
|
||||||
|
self.seconds
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ToCss for Time {
|
||||||
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result
|
||||||
|
where
|
||||||
|
W: fmt::Write,
|
||||||
|
{
|
||||||
|
self.seconds().to_css(dest)?;
|
||||||
|
dest.write_str("s")
|
||||||
|
}
|
||||||
|
}
|
|
@ -17,7 +17,7 @@ use std::fmt;
|
||||||
use style_traits::{ToCss, ParseError, StyleParseError};
|
use style_traits::{ToCss, ParseError, StyleParseError};
|
||||||
use style_traits::values::specified::AllowedNumericType;
|
use style_traits::values::specified::AllowedNumericType;
|
||||||
use super::{Auto, CSSFloat, CSSInteger, Either, None_};
|
use super::{Auto, CSSFloat, CSSInteger, Either, None_};
|
||||||
use super::computed::{self, Context, ToComputedValue};
|
use super::computed::{Context, ToComputedValue};
|
||||||
use super::generics::{GreaterThanOrEqualToOne, NonNegative};
|
use super::generics::{GreaterThanOrEqualToOne, NonNegative};
|
||||||
use super::generics::grid::{TrackBreadth as GenericTrackBreadth, TrackSize as GenericTrackSize};
|
use super::generics::grid::{TrackBreadth as GenericTrackBreadth, TrackSize as GenericTrackSize};
|
||||||
use super::generics::grid::TrackList as GenericTrackList;
|
use super::generics::grid::TrackList as GenericTrackList;
|
||||||
|
@ -49,6 +49,7 @@ pub use self::percentage::Percentage;
|
||||||
pub use self::position::{Position, PositionComponent};
|
pub use self::position::{Position, PositionComponent};
|
||||||
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint, SVGPaintKind, SVGStrokeDashArray, SVGWidth};
|
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint, SVGPaintKind, SVGStrokeDashArray, SVGWidth};
|
||||||
pub use self::text::{InitialLetter, LetterSpacing, LineHeight, WordSpacing};
|
pub use self::text::{InitialLetter, LetterSpacing, LineHeight, WordSpacing};
|
||||||
|
pub use self::time::Time;
|
||||||
pub use self::transform::{TimingFunction, TransformOrigin};
|
pub use self::transform::{TimingFunction, TransformOrigin};
|
||||||
pub use super::generics::grid::GridLine;
|
pub use super::generics::grid::GridLine;
|
||||||
pub use super::generics::grid::GridTemplateComponent as GenericGridTemplateComponent;
|
pub use super::generics::grid::GridTemplateComponent as GenericGridTemplateComponent;
|
||||||
|
@ -73,6 +74,7 @@ pub mod position;
|
||||||
pub mod rect;
|
pub mod rect;
|
||||||
pub mod svg;
|
pub mod svg;
|
||||||
pub mod text;
|
pub mod text;
|
||||||
|
pub mod time;
|
||||||
pub mod transform;
|
pub mod transform;
|
||||||
|
|
||||||
/// Common handling for the specified value CSS url() values.
|
/// Common handling for the specified value CSS url() values.
|
||||||
|
@ -178,152 +180,6 @@ impl BorderStyle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Time unit.
|
|
||||||
#[derive(Clone, Copy, Debug, HasViewportPercentage, PartialEq, Eq)]
|
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
|
||||||
pub enum TimeUnit {
|
|
||||||
/// `s`
|
|
||||||
Second,
|
|
||||||
/// `ms`
|
|
||||||
Millisecond,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A time in seconds according to CSS-VALUES § 6.2.
|
|
||||||
#[derive(Clone, Copy, Debug, HasViewportPercentage, PartialEq)]
|
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
|
||||||
pub struct Time {
|
|
||||||
seconds: CSSFloat,
|
|
||||||
unit: TimeUnit,
|
|
||||||
was_calc: bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Time {
|
|
||||||
/// Return a `<time>` value that represents `seconds` seconds.
|
|
||||||
pub fn from_seconds(seconds: CSSFloat) -> Self {
|
|
||||||
Time {
|
|
||||||
seconds: seconds,
|
|
||||||
unit: TimeUnit::Second,
|
|
||||||
was_calc: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns a time that represents a duration of zero.
|
|
||||||
pub fn zero() -> Self {
|
|
||||||
Self::from_seconds(0.0)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns the time in fractional seconds.
|
|
||||||
pub fn seconds(self) -> CSSFloat {
|
|
||||||
self.seconds
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Parses a time according to CSS-VALUES § 6.2.
|
|
||||||
pub fn parse_dimension(
|
|
||||||
value: CSSFloat,
|
|
||||||
unit: &str,
|
|
||||||
from_calc: bool)
|
|
||||||
-> Result<Time, ()>
|
|
||||||
{
|
|
||||||
let (seconds, unit) = match_ignore_ascii_case! { unit,
|
|
||||||
"s" => (value, TimeUnit::Second),
|
|
||||||
"ms" => (value / 1000.0, TimeUnit::Millisecond),
|
|
||||||
_ => return Err(())
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(Time {
|
|
||||||
seconds: seconds,
|
|
||||||
unit: unit,
|
|
||||||
was_calc: from_calc,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns a `Time` value from a CSS `calc()` expression.
|
|
||||||
pub fn from_calc(seconds: CSSFloat) -> Self {
|
|
||||||
Time {
|
|
||||||
seconds: seconds,
|
|
||||||
unit: TimeUnit::Second,
|
|
||||||
was_calc: true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn parse_with_clamping_mode<'i, 't>(context: &ParserContext,
|
|
||||||
input: &mut Parser<'i, 't>,
|
|
||||||
clamping_mode: AllowedNumericType)
|
|
||||||
-> Result<Self, ParseError<'i>> {
|
|
||||||
use style_traits::PARSING_MODE_DEFAULT;
|
|
||||||
|
|
||||||
// FIXME: remove early returns when lifetimes are non-lexical
|
|
||||||
match input.next() {
|
|
||||||
// Note that we generally pass ParserContext to is_ok() to check
|
|
||||||
// that the ParserMode of the ParserContext allows all numeric
|
|
||||||
// values for SMIL regardless of clamping_mode, but in this Time
|
|
||||||
// value case, the value does not animate for SMIL at all, so we use
|
|
||||||
// PARSING_MODE_DEFAULT directly.
|
|
||||||
Ok(&Token::Dimension { value, ref unit, .. }) if clamping_mode.is_ok(PARSING_MODE_DEFAULT, value) => {
|
|
||||||
return Time::parse_dimension(value, unit, /* from_calc = */ false)
|
|
||||||
.map_err(|()| StyleParseError::UnspecifiedError.into())
|
|
||||||
}
|
|
||||||
Ok(&Token::Function(ref name)) if name.eq_ignore_ascii_case("calc") => {}
|
|
||||||
Ok(t) => return Err(BasicParseError::UnexpectedToken(t.clone()).into()),
|
|
||||||
Err(e) => return Err(e.into())
|
|
||||||
}
|
|
||||||
match input.parse_nested_block(|i| CalcNode::parse_time(context, i)) {
|
|
||||||
Ok(time) if clamping_mode.is_ok(PARSING_MODE_DEFAULT, time.seconds) => Ok(time),
|
|
||||||
_ => Err(StyleParseError::UnspecifiedError.into()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Parse <time> that values are non-negative.
|
|
||||||
pub fn parse_non_negative<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>)
|
|
||||||
-> Result<Self, ParseError<'i>> {
|
|
||||||
Self::parse_with_clamping_mode(context, input, AllowedNumericType::NonNegative)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToComputedValue for Time {
|
|
||||||
type ComputedValue = computed::Time;
|
|
||||||
|
|
||||||
fn to_computed_value(&self, _context: &Context) -> Self::ComputedValue {
|
|
||||||
computed::Time::from_seconds(self.seconds())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn from_computed_value(computed: &Self::ComputedValue) -> Self {
|
|
||||||
Time {
|
|
||||||
seconds: computed.seconds(),
|
|
||||||
unit: TimeUnit::Second,
|
|
||||||
was_calc: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Parse for Time {
|
|
||||||
fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
|
||||||
Self::parse_with_clamping_mode(context, input, AllowedNumericType::All)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToCss for Time {
|
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
|
||||||
if self.was_calc {
|
|
||||||
dest.write_str("calc(")?;
|
|
||||||
}
|
|
||||||
match self.unit {
|
|
||||||
TimeUnit::Second => {
|
|
||||||
self.seconds.to_css(dest)?;
|
|
||||||
dest.write_str("s")?;
|
|
||||||
}
|
|
||||||
TimeUnit::Millisecond => {
|
|
||||||
(self.seconds * 1000.).to_css(dest)?;
|
|
||||||
dest.write_str("ms")?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if self.was_calc {
|
|
||||||
dest.write_str(")")?;
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
|
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
||||||
#[allow(missing_docs)]
|
#[allow(missing_docs)]
|
||||||
|
|
159
components/style/values/specified/time.rs
Normal file
159
components/style/values/specified/time.rs
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
//! Specified time values.
|
||||||
|
|
||||||
|
use cssparser::{Parser, Token, BasicParseError};
|
||||||
|
use parser::{ParserContext, Parse};
|
||||||
|
use std::ascii::AsciiExt;
|
||||||
|
use std::fmt;
|
||||||
|
use style_traits::{ToCss, ParseError, StyleParseError};
|
||||||
|
use style_traits::values::specified::AllowedNumericType;
|
||||||
|
use values::CSSFloat;
|
||||||
|
use values::computed::{Context, ToComputedValue};
|
||||||
|
use values::computed::time::Time as ComputedTime;
|
||||||
|
use values::specified::calc::CalcNode;
|
||||||
|
|
||||||
|
/// A time value according to CSS-VALUES § 6.2.
|
||||||
|
#[derive(Clone, Copy, Debug, HasViewportPercentage, PartialEq)]
|
||||||
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
||||||
|
pub struct Time {
|
||||||
|
seconds: CSSFloat,
|
||||||
|
unit: TimeUnit,
|
||||||
|
was_calc: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A time unit.
|
||||||
|
#[derive(Clone, Copy, Debug, HasViewportPercentage, PartialEq, Eq)]
|
||||||
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
||||||
|
pub enum TimeUnit {
|
||||||
|
/// `s`
|
||||||
|
Second,
|
||||||
|
/// `ms`
|
||||||
|
Millisecond,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Time {
|
||||||
|
/// Returns a time value that represents `seconds` seconds.
|
||||||
|
pub fn from_seconds(seconds: CSSFloat) -> Self {
|
||||||
|
Time { seconds, unit: TimeUnit::Second, was_calc: false }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns `0s`.
|
||||||
|
pub fn zero() -> Self {
|
||||||
|
Self::from_seconds(0.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the time in fractional seconds.
|
||||||
|
pub fn seconds(self) -> CSSFloat {
|
||||||
|
self.seconds
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parses a time according to CSS-VALUES § 6.2.
|
||||||
|
pub fn parse_dimension(
|
||||||
|
value: CSSFloat,
|
||||||
|
unit: &str,
|
||||||
|
was_calc: bool
|
||||||
|
) -> Result<Time, ()> {
|
||||||
|
let (seconds, unit) = match_ignore_ascii_case! { unit,
|
||||||
|
"s" => (value, TimeUnit::Second),
|
||||||
|
"ms" => (value / 1000.0, TimeUnit::Millisecond),
|
||||||
|
_ => return Err(())
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(Time { seconds, unit, was_calc })
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns a `Time` value from a CSS `calc()` expression.
|
||||||
|
pub fn from_calc(seconds: CSSFloat) -> Self {
|
||||||
|
Time {
|
||||||
|
seconds: seconds,
|
||||||
|
unit: TimeUnit::Second,
|
||||||
|
was_calc: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_with_clamping_mode<'i, 't>(
|
||||||
|
context: &ParserContext,
|
||||||
|
input: &mut Parser<'i, 't>,
|
||||||
|
clamping_mode: AllowedNumericType
|
||||||
|
) -> Result<Self, ParseError<'i>> {
|
||||||
|
use style_traits::PARSING_MODE_DEFAULT;
|
||||||
|
|
||||||
|
// FIXME: remove early returns when lifetimes are non-lexical
|
||||||
|
match input.next() {
|
||||||
|
// Note that we generally pass ParserContext to is_ok() to check
|
||||||
|
// that the ParserMode of the ParserContext allows all numeric
|
||||||
|
// values for SMIL regardless of clamping_mode, but in this Time
|
||||||
|
// value case, the value does not animate for SMIL at all, so we use
|
||||||
|
// PARSING_MODE_DEFAULT directly.
|
||||||
|
Ok(&Token::Dimension { value, ref unit, .. }) if clamping_mode.is_ok(PARSING_MODE_DEFAULT, value) => {
|
||||||
|
return Time::parse_dimension(value, unit, /* from_calc = */ false)
|
||||||
|
.map_err(|()| StyleParseError::UnspecifiedError.into())
|
||||||
|
}
|
||||||
|
Ok(&Token::Function(ref name)) if name.eq_ignore_ascii_case("calc") => {}
|
||||||
|
Ok(t) => return Err(BasicParseError::UnexpectedToken(t.clone()).into()),
|
||||||
|
Err(e) => return Err(e.into())
|
||||||
|
}
|
||||||
|
match input.parse_nested_block(|i| CalcNode::parse_time(context, i)) {
|
||||||
|
Ok(time) if clamping_mode.is_ok(PARSING_MODE_DEFAULT, time.seconds) => Ok(time),
|
||||||
|
_ => Err(StyleParseError::UnspecifiedError.into()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parses a non-negative time value.
|
||||||
|
pub fn parse_non_negative<'i, 't>(
|
||||||
|
context: &ParserContext,
|
||||||
|
input: &mut Parser<'i, 't>
|
||||||
|
) -> Result<Self, ParseError<'i>> {
|
||||||
|
Self::parse_with_clamping_mode(context, input, AllowedNumericType::NonNegative)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ToComputedValue for Time {
|
||||||
|
type ComputedValue = ComputedTime;
|
||||||
|
|
||||||
|
fn to_computed_value(&self, _context: &Context) -> Self::ComputedValue {
|
||||||
|
ComputedTime::from_seconds(self.seconds())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn from_computed_value(computed: &Self::ComputedValue) -> Self {
|
||||||
|
Time {
|
||||||
|
seconds: computed.seconds(),
|
||||||
|
unit: TimeUnit::Second,
|
||||||
|
was_calc: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Parse for Time {
|
||||||
|
fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
||||||
|
Self::parse_with_clamping_mode(context, input, AllowedNumericType::All)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ToCss for Time {
|
||||||
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result
|
||||||
|
where
|
||||||
|
W: fmt::Write,
|
||||||
|
{
|
||||||
|
if self.was_calc {
|
||||||
|
dest.write_str("calc(")?;
|
||||||
|
}
|
||||||
|
match self.unit {
|
||||||
|
TimeUnit::Second => {
|
||||||
|
self.seconds.to_css(dest)?;
|
||||||
|
dest.write_str("s")?;
|
||||||
|
}
|
||||||
|
TimeUnit::Millisecond => {
|
||||||
|
(self.seconds * 1000.).to_css(dest)?;
|
||||||
|
dest.write_str("ms")?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if self.was_calc {
|
||||||
|
dest.write_str(")")?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue