aboutsummaryrefslogtreecommitdiffstats
path: root/components/gfx/paint_task.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2014-12-18 12:57:58 -0800
committerPatrick Walton <pcwalton@mimiga.net>2015-03-02 13:28:51 -0800
commit09358b908d937a3dfbb74a5bdcc083dbf2b1df1c (patch)
tree626201327ab456f51b283a95f3319b11ec907dd7 /components/gfx/paint_task.rs
parentfed878710c5697b49ccf5185ebe08a58be27073f (diff)
downloadservo-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.rs2
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,