moved css longhand counter-reset out of mako

This commit is contained in:
Jonas Reinwald 2017-12-08 19:08:22 +01:00 committed by Emilio Cobos Álvarez
parent dcd13b857c
commit d24301b7a0
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
11 changed files with 240 additions and 151 deletions

View file

@ -0,0 +1,102 @@
/* 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 types for counter properties.
use cssparser::Parser;
use parser::{Parse, ParserContext};
use style_traits::ParseError;
use values::CustomIdent;
use values::generics::counters::CounterIntegerList;
use values::specified::Integer;
/// A specified value for the `counter-increment` and `counter-reset` property.
type SpecifiedIntegerList = CounterIntegerList<Integer>;
impl SpecifiedIntegerList {
fn parse_with_default<'i, 't>(
context: &ParserContext,
input: &mut Parser<'i, 't>,
default_value: i32
) -> Result<SpecifiedIntegerList, ParseError<'i>> {
use cssparser::Token;
use style_traits::StyleParseErrorKind;
if input.try(|input| input.expect_ident_matching("none")).is_ok() {
return Ok(CounterIntegerList::new(Vec::new()))
}
let mut counters: Vec<(CustomIdent, Integer)> = Vec::new();
loop {
let location = input.current_source_location();
let counter_name = match input.next() {
Ok(&Token::Ident(ref ident)) => CustomIdent::from_ident(location, ident, &["none"])?,
Ok(t) => return Err(location.new_unexpected_token_error(t.clone())),
Err(_) => break,
};
let counter_delta = input.try(|input| Integer::parse(context, input))
.unwrap_or(Integer::new(default_value));
counters.push((counter_name, counter_delta))
}
if !counters.is_empty() {
Ok(CounterIntegerList::new(counters))
} else {
Err(input.new_custom_error(StyleParseErrorKind::UnspecifiedError))
}
}
}
/// A specified value for the `counter-increment` property.
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
#[derive(Clone, Debug, PartialEq, ToCss)]
pub struct CounterIncrement(pub SpecifiedIntegerList);
impl CounterIncrement {
/// Returns a new specified `counter-increment` object with the given values.
pub fn new(vec: Vec<(CustomIdent, Integer)>) -> CounterIncrement {
CounterIncrement(SpecifiedIntegerList::new(vec))
}
/// Returns the values of the specified `counter-increment` object.
pub fn get_values(&self) -> &[(CustomIdent, Integer)] {
self.0.get_values()
}
}
impl Parse for CounterIncrement {
fn parse<'i, 't>(
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<CounterIncrement, ParseError<'i>> {
Ok(CounterIncrement(SpecifiedIntegerList::parse_with_default(context, input, 1)?))
}
}
/// A specified value for the `counter-reset` property.
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
#[derive(Clone, Debug, PartialEq, ToCss)]
pub struct CounterReset(pub SpecifiedIntegerList);
impl CounterReset {
/// Returns a new specified `counter-reset` object with the given values.
pub fn new(vec: Vec<(CustomIdent, Integer)>) -> CounterReset {
CounterReset(SpecifiedIntegerList::new(vec))
}
/// Returns the values of the specified `counter-reset` object.
pub fn get_values(&self) -> &[(CustomIdent, Integer)] {
self.0.get_values()
}
}
impl Parse for CounterReset {
fn parse<'i, 't>(
context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<CounterReset, ParseError<'i>> {
Ok(CounterReset(SpecifiedIntegerList::parse_with_default(context, input, 0)?))
}
}

View file

@ -40,6 +40,7 @@ pub use self::font::{MozScriptLevel, MozScriptMinSize, MozScriptSizeMultiplier,
pub use self::box_::{AnimationIterationCount, AnimationName, Display, OverscrollBehavior, Contain};
pub use self::box_::{OverflowClipBox, ScrollSnapType, TouchAction, VerticalAlign, WillChange};
pub use self::color::{Color, ColorPropertyValue, RGBAColor};
pub use self::counters::{CounterIncrement, CounterReset};
pub use self::effects::{BoxShadow, Filter, SimpleShadow};
pub use self::flex::FlexBasis;
#[cfg(feature = "gecko")]
@ -85,6 +86,7 @@ pub mod border;
pub mod box_;
pub mod calc;
pub mod color;
pub mod counters;
pub mod effects;
pub mod flex;
pub mod font;