diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2014-12-18 12:57:58 -0800 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-03-02 13:28:51 -0800 |
commit | 09358b908d937a3dfbb74a5bdcc083dbf2b1df1c (patch) | |
tree | 626201327ab456f51b283a95f3319b11ec907dd7 /components/gfx/paint_task.rs | |
parent | fed878710c5697b49ccf5185ebe08a58be27073f (diff) | |
download | servo-09358b908d937a3dfbb74a5bdcc083dbf2b1df1c.tar.gz servo-09358b908d937a3dfbb74a5bdcc083dbf2b1df1c.zip |
layout: Implement `text-shadow` per CSS-TEXT-DECORATION-3 § 4.
Diffstat (limited to 'components/gfx/paint_task.rs')
-rw-r--r-- | components/gfx/paint_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/paint_task.rs b/components/gfx/paint_task.rs index 5c9008bb009..731842d3f89 100644 --- a/components/gfx/paint_task.rs +++ b/components/gfx/paint_task.rs @@ -536,7 +536,7 @@ impl WorkerThread { // Build the paint context. let mut paint_context = PaintContext { draw_target: draw_target.clone(), - font_ctx: &mut self.font_context, + font_context: &mut self.font_context, page_rect: tile.page_rect, screen_rect: tile.screen_rect, clip_rect: None, |