<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript/CSS Font Detector</title>
	<atom:link href="http://www.lalit.org/lab/javascript-css-font-detect/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lalit.org/lab/javascript-css-font-detect</link>
	<description>Personal page of Lalit Patel, an engineer, entrepreneur, geek from Bhubaneswar, India.</description>
	<lastBuildDate>Sat, 28 Aug 2010 20:42:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Lalit</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6784</link>
		<dc:creator>Lalit</dc:creator>
		<pubDate>Thu, 03 Jun 2010 05:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6784</guid>
		<description>Thanks Lemmi for the Prototype version of the script.
Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks Lemmi for the Prototype version of the script.<br />
Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viplog</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6781</link>
		<dc:creator>viplog</dc:creator>
		<pubDate>Wed, 02 Jun 2010 18:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6781</guid>
		<description>&lt;strong&gt;&#8216;JavaScript / CSS Font Detector&#8217;-Add-On for Prototype...&lt;/strong&gt;

Today I want to show you a little class for detecting fonts on the users operation system based on the great idea of Lalit Patel. As you can read in his detailed article it&#8217;s a small script based on CSS and JavaScript. &#8216;Merde! This looks si...</description>
		<content:encoded><![CDATA[<p><strong>&#8216;JavaScript / CSS Font Detector&#8217;-Add-On for Prototype&#8230;</strong></p>
<p>Today I want to show you a little class for detecting fonts on the users operation system based on the great idea of Lalit Patel. As you can read in his detailed article it&#8217;s a small script based on CSS and JavaScript. &#8216;Merde! This looks si&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lemmi</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6776</link>
		<dc:creator>Lemmi</dc:creator>
		<pubDate>Sun, 30 May 2010 16:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6776</guid>
		<description>First, your script is a great idea to find out which font is installed. Keep going!
I often work with the Framework Prototype, so here is a class based on the Prototype methods.

&lt;pre lang=&quot;javascript&quot;&gt;
var Checkfont = Class.create({
    checkedFonts: new Hash(),
    testString: &#039;mmmmmmmmmmlilg&#039;,
    testFontSize: &#039;72px&#039;,
    standardFont: &#039;serif&#039;,
    
    initialize: function() {
        this.body = document.body;
        this.span = new Element(&#039;span&#039;).hide();
        
        this.body.insert(this.span);
        this.defaultDimensions = this._getFontDimensions(this.standardFont);
    },

    test: function(font) {
        font = font.toLowerCase();
        
        var alreadyChecked = this.checkedFonts.get(font);
        if (!Object.isUndefined(alreadyChecked)) {
            return alreadyChecked;
        }
        
        this.testDimensions = this._getFontDimensions(font);

        var test = true;
        if (font != this.standardFont) {
            test = (this.testDimensions.width != this.defaultDimensions.width
                &#124;&#124; this.testDimensions.height != this.defaultDimensions.height);
        }
        this.checkedFonts.set(font, test);
        return test;
    },

    _getFontDimensions: function(font) {
        this.span.setStyle({
            fontFamily: font,
            fontSize: this.testFontSize
        }).update(this.testString);
        var fontDimensions = this.span.getDimensions();
        this.span.update();
        return fontDimensions;
    }
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>First, your script is a great idea to find out which font is installed. Keep going!<br />
I often work with the Framework Prototype, so here is a class based on the Prototype methods.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><ol><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #003366; font-weight: bold;">var</span> Checkfont <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">Class</span>.<span style="color: #660066;">create</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    checkedFonts<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">new</span> Hash<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    testString<span style="color: #339933;">:</span> <span style="color: #3366CC;">'mmmmmmmmmmlilg'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    testFontSize<span style="color: #339933;">:</span> <span style="color: #3366CC;">'72px'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    standardFont<span style="color: #339933;">:</span> <span style="color: #3366CC;">'serif'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    initialize<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">body</span> <span style="color: #339933;">=</span> document.<span style="color: #660066;">body</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Element<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'span'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">body</span>.<span style="color: #660066;">insert</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span> <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>._getFontDimensions<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">standardFont</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    test<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        font <span style="color: #339933;">=</span> font.<span style="color: #660066;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> alreadyChecked <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">checkedFonts</span>.<span style="color: #660066;">get</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>Object.<span style="color: #660066;">isUndefined</span><span style="color: #009900;">&#40;</span>alreadyChecked<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            <span style="color: #000066; font-weight: bold;">return</span> alreadyChecked<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span> <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>._getFontDimensions<span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> test <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>font <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">standardFont</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            test <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span>.<span style="color: #660066;">width</span> <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span>.<span style="color: #660066;">width</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">                <span style="color: #339933;">||</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span>.<span style="color: #660066;">height</span> <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">checkedFonts</span>.<span style="color: #660066;">set</span><span style="color: #009900;">&#40;</span>font<span style="color: #339933;">,</span> test<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">return</span> test<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    _getFontDimensions<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">setStyle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            fontFamily<span style="color: #339933;">:</span> font<span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            fontSize<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testFontSize</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">update</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testString</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> fontDimensions <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">getDimensions</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">update</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">return</span> fontDimensions<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li></ol></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: ¿Y quién diablos es @font-face? &#124; Todowebhosting.com - ..::HOSTING - DISEÑO WEB - FACTURACIÓN ELECTRÓNICA</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6758</link>
		<dc:creator>¿Y quién diablos es @font-face? &#124; Todowebhosting.com - ..::HOSTING - DISEÑO WEB - FACTURACIÓN ELECTRÓNICA</dc:creator>
		<pubDate>Mon, 24 May 2010 22:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6758</guid>
		<description>[...] Flash (sIFR), Canvas/VML (Cufón), la librería GD de PHP (FLIR), etc. así como sistemas de detección de fuentes instaladas entre otros muchos inventos que han funcionado más o menos bien, pero que finalmente no dejan de [...]</description>
		<content:encoded><![CDATA[<p>[...] Flash (sIFR), Canvas/VML (Cufón), la librería GD de PHP (FLIR), etc. así como sistemas de detección de fuentes instaladas entre otros muchos inventos que han funcionado más o menos bien, pero que finalmente no dejan de [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charley Segalla</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6581</link>
		<dc:creator>Charley Segalla</dc:creator>
		<pubDate>Fri, 05 Mar 2010 01:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6581</guid>
		<description>Hi, I came across this article while searching for help with JavaScript. I&#039;ve recently changed browsers from Safari to Microsoft IE 6. Now I seem to have a problem with loading JavaScript. Every time I browse page that needs Javascript, the page freezes and I get a &quot;runtime error javascript.JSException: Unknown name&quot;. I cannot seem to find out how to fix it. Any help is very appreciated! Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I came across this article while searching for help with JavaScript. I&#8217;ve recently changed browsers from Safari to Microsoft IE 6. Now I seem to have a problem with loading JavaScript. Every time I browse page that needs Javascript, the page freezes and I get a &#8220;runtime error javascript.JSException: Unknown name&#8221;. I cannot seem to find out how to fix it. Any help is very appreciated! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woodrow</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6531</link>
		<dc:creator>Woodrow</dc:creator>
		<pubDate>Fri, 12 Feb 2010 13:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6531</guid>
		<description>great ... (-.-&#039; )

I was talking about this line:

if (font == &quot;serif&quot;)</description>
		<content:encoded><![CDATA[<p>great &#8230; (-.-&#8217; )</p>
<p>I was talking about this line:</p>
<p>if (font == &#8220;serif&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woodrow</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6530</link>
		<dc:creator>Woodrow</dc:creator>
		<pubDate>Fri, 12 Feb 2010 13:36:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6530</guid>
		<description>Great stuff! But:

the detector faultily detects that &quot;Times New Roman&quot; is not installed. This is because you use &quot;serif&quot; as a comparison-font (which is basically the same as TNR) but only check for one of these two fonts here:
&lt;&gt;

Based on the comment that can be found there (&quot;to set arial and sans-serif true&quot;) I bet that a) you used &quot;Arial&quot; as a comparison-font for some time and b) you had the same issue then as well. So I guess you know what I mean ;^)</description>
		<content:encoded><![CDATA[<p>Great stuff! But:</p>
<p>the detector faultily detects that &#8220;Times New Roman&#8221; is not installed. This is because you use &#8220;serif&#8221; as a comparison-font (which is basically the same as TNR) but only check for one of these two fonts here:<br />
&lt;&gt;</p>
<p>Based on the comment that can be found there (&#8221;to set arial and sans-serif true&#8221;) I bet that a) you used &#8220;Arial&#8221; as a comparison-font for some time and b) you had the same issue then as well. So I guess you know what I mean ;^)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emlyn</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6448</link>
		<dc:creator>Emlyn</dc:creator>
		<pubDate>Thu, 14 Jan 2010 18:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6448</guid>
		<description>OS X 10.5 using FF 3.5.7 and all testing works fine (including Calibri).

Great temp fix until CSS3 is in play--tx.</description>
		<content:encoded><![CDATA[<p>OS X 10.5 using FF 3.5.7 and all testing works fine (including Calibri).</p>
<p>Great temp fix until CSS3 is in play&#8211;tx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: _asterix_</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6365</link>
		<dc:creator>_asterix_</dc:creator>
		<pubDate>Mon, 23 Nov 2009 19:49:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6365</guid>
		<description>Wow! This is a gerat Solution. Thank you very much.</description>
		<content:encoded><![CDATA[<p>Wow! This is a gerat Solution. Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Detecta si una fuente está disponible desde Javascript</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6351</link>
		<dc:creator>Detecta si una fuente está disponible desde Javascript</dc:creator>
		<pubDate>Mon, 16 Nov 2009 14:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6351</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
