Reviewed by @emilio in [bug 1329088](https://bugzilla.mozilla.org/show_bug.cgi?id=1329088). r? @emilio --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors Source-Repo: https://github.com/servo/servo Source-Revision: 5c56640508b4f24a67fe92c5d3179d89d030e959
36 lines
1.7 KiB
Rust
36 lines
1.7 KiB
Rust
/* 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
use app_units::Au;
|
|
use parsing::parse;
|
|
use style::values::HasViewportPercentage;
|
|
use style::values::specified::{AbsoluteLength, NoCalcLength, ViewportPercentageLength};
|
|
use style::values::specified::length::{CalcLengthOrPercentage, CalcUnit};
|
|
|
|
#[test]
|
|
fn length_has_viewport_percentage() {
|
|
let l = NoCalcLength::ViewportPercentage(ViewportPercentageLength::Vw(100.));
|
|
assert!(l.has_viewport_percentage());
|
|
let l = NoCalcLength::Absolute(AbsoluteLength::Px(Au(100).to_f32_px()));
|
|
assert!(!l.has_viewport_percentage());
|
|
}
|
|
|
|
#[test]
|
|
fn calc_top_level_number_with_unit() {
|
|
fn parse_value(text: &str, unit: CalcUnit) -> Result<CalcLengthOrPercentage, ()> {
|
|
parse(|context, input| CalcLengthOrPercentage::parse(context, input, unit), text)
|
|
}
|
|
assert_eq!(parse_value("1", CalcUnit::Length), Err(()));
|
|
assert_eq!(parse_value("1", CalcUnit::LengthOrPercentage), Err(()));
|
|
assert_eq!(parse_value("1", CalcUnit::Angle), Err(()));
|
|
assert_eq!(parse_value("1", CalcUnit::Time), Err(()));
|
|
assert_eq!(parse_value("1px + 1", CalcUnit::Length), Err(()));
|
|
assert_eq!(parse_value("1em + 1", CalcUnit::Length), Err(()));
|
|
assert_eq!(parse_value("1px + 1", CalcUnit::LengthOrPercentage), Err(()));
|
|
assert_eq!(parse_value("1% + 1", CalcUnit::LengthOrPercentage), Err(()));
|
|
assert_eq!(parse_value("1rad + 1", CalcUnit::Angle), Err(()));
|
|
assert_eq!(parse_value("1deg + 1", CalcUnit::Angle), Err(()));
|
|
assert_eq!(parse_value("1s + 1", CalcUnit::Time), Err(()));
|
|
}
|