blob: 6e181a9ab091169588543b723e4e2d165de172c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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 https://mozilla.org/MPL/2.0/. */
use style::properties::longhands::transition_duration;
use crate::parsing::parse;
#[test]
fn test_positive_transition_duration() {
assert!(parse(transition_duration::parse, "5s").is_ok());
assert!(parse(transition_duration::parse, "0s").is_ok());
}
#[test]
fn test_negative_transition_duration() {
assert!(parse(transition_duration::parse, "-5s").is_err());
}
|