diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-05-18 00:27:49 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-05-18 17:13:15 +0200 |
commit | 94b4a32c1894e6e95776c350b4cbc3645837af64 (patch) | |
tree | abdba2be3491f9303741f2d061f646a5d0b3c7e1 /components/selectors/lib.rs | |
parent | c5e37f3d2cdcf8b53d4b5f5876d2091e5676efed (diff) | |
download | servo-94b4a32c1894e6e95776c350b4cbc3645837af64.tar.gz servo-94b4a32c1894e6e95776c350b4cbc3645837af64.zip |
Make some attr values case-insensitive in selectors
https://bugzilla.mozilla.org/show_bug.cgi?id=1363531
Diffstat (limited to 'components/selectors/lib.rs')
-rw-r--r-- | components/selectors/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/selectors/lib.rs b/components/selectors/lib.rs index 5e7b4c99ce8..3e413c0c08b 100644 --- a/components/selectors/lib.rs +++ b/components/selectors/lib.rs @@ -6,6 +6,7 @@ #[macro_use] extern crate cssparser; #[macro_use] extern crate matches; extern crate fnv; +extern crate phf; extern crate precomputed_hash; #[cfg(test)] #[macro_use] extern crate size_of_test; extern crate smallvec; |