CSSOM bits for @supports: CSSConditionRule and CSSSupportsRule, with conditionText attribute

This commit is contained in:
Manish Goregaokar 2017-01-03 11:10:12 -08:00
parent 1b0842e228
commit b4a83b6cec
12 changed files with 199 additions and 5 deletions

View file

@ -185,3 +185,9 @@ impl Index<Range<Position>> for ServoUrl {
&self.0[range]
}
}
impl From<Url> for ServoUrl {
fn from(url: Url) -> Self {
ServoUrl::from_url(url)
}
}