Merge pull request #260 from snshn/ie-css-hack-fix
Remove optional trailing space from CSS idents
This commit is contained in:
commit
d7a82a008b
2 changed files with 28 additions and 0 deletions
|
@ -66,6 +66,7 @@ pub fn enquote(input: String, double: bool) -> String {
|
||||||
pub fn format_ident(ident: &str) -> String {
|
pub fn format_ident(ident: &str) -> String {
|
||||||
let mut res: String = String::new();
|
let mut res: String = String::new();
|
||||||
let _ = serialize_identifier(ident, &mut res);
|
let _ = serialize_identifier(ident, &mut res);
|
||||||
|
res = res.trim_end().to_string();
|
||||||
res
|
res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -340,4 +340,31 @@ mod passing {
|
||||||
CSS_OUT
|
CSS_OUT
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn ie_css_hack() {
|
||||||
|
let cache = &mut HashMap::new();
|
||||||
|
let client = Client::new();
|
||||||
|
let document_url: Url = Url::parse("data:,").unwrap();
|
||||||
|
let mut options = Options::default();
|
||||||
|
options.silent = true;
|
||||||
|
|
||||||
|
const CSS: &str = "\
|
||||||
|
div#p>svg>foreignObject>section:not(\\9) {\n\
|
||||||
|
width: 300px;\n\
|
||||||
|
width: 500px\\9;\n\
|
||||||
|
}\n\
|
||||||
|
";
|
||||||
|
const CSS_OUT: &str = "\
|
||||||
|
div#p>svg>foreignObject>section:not(\\9) {\n\
|
||||||
|
width: 300px;\n\
|
||||||
|
width: 500px\t;\n\
|
||||||
|
}\n\
|
||||||
|
";
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
css::embed_css(cache, &client, &document_url, &CSS, &options, 0,),
|
||||||
|
CSS_OUT
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue