<?xml version="1.0"?>
<rss version="2.0"><channel><title>Marc&#x2019;s Digital Life</title><link>http://blog.mouvedia.com</link><description>&amp;#65286; web design considerations</description><lastBuildDate>Mon, 06 Jun 2011 13:18:03 +0200</lastBuildDate><generator>Habari 0.7 http://habariproject.org/</generator><item><title>How to Properly Detect &amp;lt;details&amp;gt; Support</title><link>http://blog.mouvedia.com/how-to-properly-detect-details-support</link><description>Between version 10.0.603 and 12.0.701 Google Chrome had partial support for the &lt;code&gt;&amp;#60;details&amp;#62;&lt;/code&gt; carelessly leaving its rendering &lt;a href="https://bugs.webkit.org/show_bug.cgi?id=51071#c57"&gt;for later&lt;/a&gt;.&#xD;
&lt;a href="http://mathiasbynens.be/notes/html5-details-jquery#comment-35"&gt;Mathias Bynens&lt;/a&gt; created a feature test which was too convoluted for my liking.&#xD;
So I've made some research and found a shorter method which use what-I-am-calling correlated feature detection.&#xD;
&lt;pre&gt;&#xD;
if(!("open"in document.createElement("details"))||window.chrome&amp;&amp;window.google&amp;&amp;google.gears)&#xD;
{fallback()}&#xD;
&lt;/pre&gt;&#xD;
In the very unlikely edge case that you have installed &lt;a href="http://gears.google.com/" title="removed since version 12.0.702"&gt;Gears&lt;/a&gt; on Chrome 12+ you would be served the javascript polyfill instead.&#xD;
As a matter of fact Google plans to provide offline support to Gmail using HTML5 &lt;a href="http://www.google.com/support/a/bin/answer.py?hl=en&amp;answer=1308394"&gt;this summer&lt;/a&gt; which will probably coincide with the first stable release to natively support the &lt;code&gt;&amp;#60;details&amp;#62;&lt;/code&gt; element.</description><pubDate>Mon, 06 Jun 2011 13:18:03 +0200</pubDate><guid isPermaLink="false">tag:blog.mouvedia.com,2011:how-to-properly-detect-details-support/1307359083</guid></item><item><title>test</title><link>http://blog.mouvedia.com/test</link><description>test</description><pubDate>Tue, 19 Apr 2011 15:26:08 +0200</pubDate><guid isPermaLink="false">tag:blog.mouvedia.com,2011:test/1303219568</guid></item></channel></rss>

