Add failing test for FontCacheTask::add_web_font

This test tries to add a web font to the `FontCacheTask`. The added web font
corresponds to the following CSS font definition:

```
@font-face {
  font-family: "test family";
  src: local(test font face);
}
```

This test fails, since `FontCacheTask` tries to get the value for the key
"test font face" from `self.web_families`, but previously initialized
a value for the key "test family".
This commit is contained in:
Adrian Heine 2016-01-04 10:36:14 +01:00
parent 5ad9207a99
commit 3f61d63e72
4 changed files with 32 additions and 0 deletions

View file

@ -3,5 +3,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
extern crate gfx;
extern crate ipc_channel;
extern crate style;
#[cfg(test)] mod font_cache_task;
#[cfg(test)] mod text_util;