From 452552cf683c3cdf846d5f0dc6da08a0ac72a213 Mon Sep 17 00:00:00 2001 From: Bram Stein Date: Tue, 12 Mar 2013 11:01:45 +0100 Subject: [PATCH] Remove Apple Color Emoji now that we no longer check the height. --- src/core/fontwatchrunner.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/core/fontwatchrunner.js b/src/core/fontwatchrunner.js index 41108753..b4e72ad7 100644 --- a/src/core/fontwatchrunner.js +++ b/src/core/fontwatchrunner.js @@ -41,16 +41,7 @@ webfont.FontWatchRunner = function(activeCallback, inactiveCallback, domHelper, webfont.FontWatchRunner.LastResortFonts = { SERIF: 'serif', SANS_SERIF: 'sans-serif', - MONOSPACE: 'monospace', - // Apple Color Emoji is the last character fallback on iOS. Since - // all iOS installations that support web fonts have this font it - // effectively means that Apple Color Emoji is the last resort - // font on iOS. The caveat is that it only has characters in the - // Emoji code range, and falls back to the real last resort font, - // which is the default sans-serif font. It however affects the - // height of the span we are monitoring, so we'll have to include - // it in our list of last resort fonts. - EMOJI: 'Apple Color Emoji' + MONOSPACE: 'monospace' }; /**