diff options
author | Clark Gaebel <cgaebel@mozilla.com> | 2014-11-03 16:46:21 -0800 |
---|---|---|
committer | Clark Gaebel <cgaebel@mozilla.com> | 2014-11-03 17:15:51 -0800 |
commit | d22a64884da5f83c9a34fb8841757053c2c1b36a (patch) | |
tree | d0cd310691f734e81ab282fc6491882b01b11a3c /components/util/lib.rs | |
parent | 39960f32e49c69977b185f91e587c9947b0b9a25 (diff) | |
download | servo-d22a64884da5f83c9a34fb8841757053c2c1b36a.tar.gz servo-d22a64884da5f83c9a34fb8841757053c2c1b36a.zip |
Implements case insensitive font family names.
One part (of 8!) of css font family disambiguation is that font families should
be matched case-insensitively.
This patch implements that. Once it lands, a bug needs to be filed to do lowercasing
properly (as a string, instead of char-by-char -- it's a unicode thing).
r? @gw
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 46e8b0b60df..3f4146eedfe 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -26,6 +26,7 @@ extern crate sync; extern crate task_info; extern crate "time" as std_time; extern crate string_cache; +extern crate unicode; extern crate url; #[phase(plugin)] |