Add CSS.supports()

This commit is contained in:
Manish Goregaokar 2017-01-02 00:11:27 -08:00
parent 56731dc6b5
commit 62bea28031
3 changed files with 34 additions and 4 deletions

View file

@ -161,9 +161,9 @@ impl ToCss for SupportsCondition {
/// A possibly-invalid property declaration
pub struct Declaration {
/// The property name
prop: String,
pub prop: String,
/// The property value
val: String,
pub val: String,
}
impl ToCss for Declaration {