mirror of
https://github.com/servo/servo.git
synced 2025-08-17 11:25:35 +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
|
@ -1030,7 +1030,7 @@ mod shorthand_serialization {
|
|||
let x = block.single_value_to_css("scroll-snap-type", &mut s);
|
||||
|
||||
assert_eq!(x.is_ok(), true);
|
||||
assert_eq!(s, "scroll-snap-type: ;");
|
||||
assert_eq!(s, "");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -1052,7 +1052,7 @@ mod shorthand_serialization {
|
|||
let x = block.single_value_to_css("scroll-snap-type", &mut s);
|
||||
|
||||
assert_eq!(x.is_ok(), true);
|
||||
assert_eq!(s, "scroll-snap-type: mandatory;");
|
||||
assert_eq!(s, "mandatory");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue