diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2014-12-07 22:59:38 -0800 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2014-12-15 17:41:44 -0800 |
commit | 14bafb11bec973cd1362ff38a8e4aa2385c6ff37 (patch) | |
tree | e1dd41c6f1a2829e2be800cb27e7bdd4ee5f0a4f /components/util/lib.rs | |
parent | 10f1ed5e311e7092d3e24b58c4960f5e8a511ac0 (diff) | |
download | servo-14bafb11bec973cd1362ff38a8e4aa2385c6ff37.tar.gz servo-14bafb11bec973cd1362ff38a8e4aa2385c6ff37.zip |
style: Parse the legacy `bgcolor` attribute per the HTML5 specification.
Additionally, this patch cleans up some miscellaneous formatting issues.
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index f556dda6eb9..b0e4cff8c62 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -13,6 +13,7 @@ extern crate log; extern crate alloc; extern crate collections; +extern crate cssparser; extern crate geom; extern crate getopts; extern crate layers; |