Remove style::values::HasViewportPercentage reexport

This commit is contained in:
Anthony Ramine 2017-05-20 22:00:05 +02:00
parent 4f0b24ac0c
commit cb2e04acf6
16 changed files with 22 additions and 27 deletions

View file

@ -14,7 +14,7 @@ use std::ascii::AsciiExt;
use std::borrow::Cow;
use std::collections::{HashMap, HashSet};
use std::fmt;
use style_traits::ToCss;
use style_traits::{HasViewportPercentage, ToCss};
use stylearc::Arc;
/// A custom property name is just an `Atom`.
@ -49,7 +49,7 @@ pub struct SpecifiedValue {
references: HashSet<Name>,
}
impl ::values::HasViewportPercentage for SpecifiedValue {
impl HasViewportPercentage for SpecifiedValue {
fn has_viewport_percentage(&self) -> bool {
panic!("has_viewport_percentage called before resolving!");
}