From 81f3239f69e70e7b2c0a0f375726222a567d6175 Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Wed, 20 Apr 2016 17:45:51 -0700 Subject: [PATCH] Stub out is_multicol for now. --- ports/geckolib/properties.mako.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/geckolib/properties.mako.rs b/ports/geckolib/properties.mako.rs index f04bb2bb93a..b7522cf4a08 100644 --- a/ports/geckolib/properties.mako.rs +++ b/ports/geckolib/properties.mako.rs @@ -96,8 +96,9 @@ impl ComputedValues for GeckoComputedValues { fn set_root_font_size(&mut self, s: Au) { self.root_font_size = s; } fn set_writing_mode(&mut self, mode: WritingMode) { self.writing_mode = mode; } + // FIXME(bholley): Implement this properly. #[inline] - fn is_multicol(&self) -> bool { unimplemented!() } + fn is_multicol(&self) -> bool { false } } <%def name="declare_style_struct(style_struct)">