mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Fix single_value_to_css
This commit is contained in:
parent
1fff47586f
commit
c387eff065
2 changed files with 9 additions and 12 deletions
|
@ -214,16 +214,13 @@ impl PropertyDeclarationBlock {
|
|||
if !self.declarations.iter().all(|decl| decl.0.shorthands().contains(&shorthand)) {
|
||||
return Err(fmt::Error)
|
||||
}
|
||||
let success = try!(shorthand.serialize_shorthand_to_buffer(
|
||||
dest,
|
||||
self.declarations.iter()
|
||||
.map(get_declaration as fn(_) -> _),
|
||||
&mut true)
|
||||
);
|
||||
if success {
|
||||
Ok(())
|
||||
} else {
|
||||
Err(fmt::Error)
|
||||
let iter = self.declarations.iter().map(get_declaration as fn(_) -> _);
|
||||
match shorthand.get_shorthand_appendable_value(iter) {
|
||||
Some(AppendableValue::Css(css)) => dest.write_str(css),
|
||||
Some(AppendableValue::DeclarationsForShorthand(_, decls)) => {
|
||||
shorthand.longhands_to_css(decls, dest)
|
||||
}
|
||||
_ => Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue