diff --git a/src/servo/text/native_font/quartz_native_font.rs b/src/servo/text/native_font/quartz_native_font.rs index 12a229a18d1..a101e089d19 100644 --- a/src/servo/text/native_font/quartz_native_font.rs +++ b/src/servo/text/native_font/quartz_native_font.rs @@ -39,12 +39,14 @@ class QuartzNativeFont/& { } fn glyph_index(_codepoint: char) -> option { - fail; + // FIXME + some(40u) } // FIXME: What unit is this returning? Let's have a custom type fn glyph_h_advance(_glyph: GlyphIndex) -> option { - fail; + // FIXME + some(15) } }