mirror of
https://github.com/servo/servo.git
synced 2025-06-14 19:34:29 +00:00
parent
f39faaf994
commit
73314ab10c
3 changed files with 37 additions and 3 deletions
|
@ -21,7 +21,7 @@ use std::mem;
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use string_cache::{Atom, Namespace};
|
use string_cache::{Atom, Namespace};
|
||||||
use style::values::specified::Length;
|
use style::values::specified::Length;
|
||||||
use util::str::{DOMString, parse_unsigned_integer, parse_legacy_color};
|
use util::str::{DOMString, LengthOrPercentageOrAuto, parse_unsigned_integer, parse_legacy_color, parse_length};
|
||||||
use util::str::{split_html_space_chars, str_join};
|
use util::str::{split_html_space_chars, str_join};
|
||||||
|
|
||||||
#[derive(JSTraceable, PartialEq, Clone, HeapSizeOf)]
|
#[derive(JSTraceable, PartialEq, Clone, HeapSizeOf)]
|
||||||
|
@ -32,6 +32,7 @@ pub enum AttrValue {
|
||||||
Atom(Atom),
|
Atom(Atom),
|
||||||
Length(DOMString, Option<Length>),
|
Length(DOMString, Option<Length>),
|
||||||
Color(DOMString, Option<RGBA>),
|
Color(DOMString, Option<RGBA>),
|
||||||
|
Dimension(DOMString, LengthOrPercentageOrAuto),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AttrValue {
|
impl AttrValue {
|
||||||
|
@ -83,6 +84,11 @@ impl AttrValue {
|
||||||
AttrValue::Color(string, parsed)
|
AttrValue::Color(string, parsed)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn from_dimension(string: DOMString) -> AttrValue {
|
||||||
|
let parsed = parse_length(&string);
|
||||||
|
AttrValue::Dimension(string, parsed)
|
||||||
|
}
|
||||||
|
|
||||||
/// Assumes the `AttrValue` is a `TokenList` and returns its tokens
|
/// Assumes the `AttrValue` is a `TokenList` and returns its tokens
|
||||||
///
|
///
|
||||||
/// ## Panics
|
/// ## Panics
|
||||||
|
@ -131,6 +137,18 @@ impl AttrValue {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Assumes the `AttrValue` is a `Dimension` and returns its value
|
||||||
|
///
|
||||||
|
/// ## Panics
|
||||||
|
///
|
||||||
|
/// Panics if the `AttrValue` is not a `Dimension`
|
||||||
|
pub fn as_dimension(&self) -> &LengthOrPercentageOrAuto {
|
||||||
|
match *self {
|
||||||
|
AttrValue::Dimension(_, ref l) => l,
|
||||||
|
_ => panic!("Dimension not found"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Return the AttrValue as its integer representation, if any.
|
/// Return the AttrValue as its integer representation, if any.
|
||||||
/// This corresponds to attribute values returned as `AttrValue::UInt(_)`
|
/// This corresponds to attribute values returned as `AttrValue::UInt(_)`
|
||||||
/// by `VirtualMethods::parse_plain_attribute()`.
|
/// by `VirtualMethods::parse_plain_attribute()`.
|
||||||
|
@ -156,7 +174,8 @@ impl Deref for AttrValue {
|
||||||
AttrValue::TokenList(ref value, _) |
|
AttrValue::TokenList(ref value, _) |
|
||||||
AttrValue::UInt(ref value, _) |
|
AttrValue::UInt(ref value, _) |
|
||||||
AttrValue::Length(ref value, _) |
|
AttrValue::Length(ref value, _) |
|
||||||
AttrValue::Color(ref value, _) => &value,
|
AttrValue::Color(ref value, _) |
|
||||||
|
AttrValue::Dimension(ref value, _) => &value,
|
||||||
AttrValue::Atom(ref value) => &value,
|
AttrValue::Atom(ref value) => &value,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -230,6 +230,21 @@ macro_rules! make_legacy_color_setter(
|
||||||
);
|
);
|
||||||
);
|
);
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
|
macro_rules! make_dimension_setter(
|
||||||
|
( $attr:ident, $htmlname:expr ) => (
|
||||||
|
fn $attr(&self, value: DOMString) {
|
||||||
|
use dom::bindings::inheritance::Castable;
|
||||||
|
use dom::element::Element;
|
||||||
|
use string_cache::Atom;
|
||||||
|
let element = self.upcast::<Element>();
|
||||||
|
let value = AttrValue::parse_dimension(value);
|
||||||
|
// FIXME(pcwalton): Do this at compile time, not at runtime.
|
||||||
|
element.set_attribute(&Atom::from_slice($htmlname), value)
|
||||||
|
}
|
||||||
|
);
|
||||||
|
);
|
||||||
|
|
||||||
/// For use on non-jsmanaged types
|
/// For use on non-jsmanaged types
|
||||||
/// Use #[derive(JSTraceable)] on JS managed types
|
/// Use #[derive(JSTraceable)] on JS managed types
|
||||||
macro_rules! no_jsmanaged_fields(
|
macro_rules! no_jsmanaged_fields(
|
||||||
|
|
|
@ -173,7 +173,7 @@ pub fn parse_unsigned_integer<T: Iterator<Item=char>>(input: T) -> Option<u32> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
||||||
pub enum LengthOrPercentageOrAuto {
|
pub enum LengthOrPercentageOrAuto {
|
||||||
Auto,
|
Auto,
|
||||||
Percentage(f32),
|
Percentage(f32),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue