<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CodeDread Blog &#187; Firefox</title>
	<atom:link href="http://www.codedread.com/blog/archives/category/technology/software/web/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedread.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 02 Jan 2012 15:30:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>TypedArrays make me theoretically happy</title>
		<link>http://www.codedread.com/blog/archives/2011/02/23/typedarrays-make-me-theoretically-happy/</link>
		<comments>http://www.codedread.com/blog/archives/2011/02/23/typedarrays-make-me-theoretically-happy/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 17:11:10 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.codedread.com/blog/?p=1005</guid>
		<description><![CDATA[I&#8217;ve been busy at my day job not launching code, but over the weekend I had some fun converting kthoom&#8216;s unzip/inflate algorithm from using binary strings to using Typed Arrays. Typed Arrays mean native binary data that is accessible to JavaScript in the browser, making operations like unzip much much faster (like 4x). Unfortunately browser [...]]]></description>
			<content:encoded><![CDATA[<p><img xmlns="http://www.w3.org/1999/xhtml" width="100" height="100" style="float:right" alt="I want to believe. SVG as an image format." src="http://codedread.com/clipart/chrome.svgz" />I&#8217;ve been busy at my day job not launching code, but over the weekend I had some fun converting <a href="http://kthoom.googlecode.com/">kthoom</a>&#8216;s unzip/inflate algorithm from using binary strings to using <a href="http://www.khronos.org/registry/typedarray/specs/latest/">Typed Arrays</a>.  Typed Arrays mean native binary data that is accessible to JavaScript in the browser, making operations like unzip much much faster (like 4x).<span id="more-1005"></span></p>
<p>Unfortunately browser support is limited to WebKit nightlies (Chromium 11) and Firefox 4 at this time.  To compound this, Firefox did not bother to implement <a href="http://dev.w3.org/2006/webapi/FileAPI/#readAsArrayBuffer">FileReader.readAsArrayBuffer()</a> which means you can&#8217;t use the File API to read in binary data yet&#8230; uh&#8230; WTF?  So basically I no longer support Firefox in kthoom.  Oh well, the performance benefits cannot be ignored and they&#8217;ll eventually get there.  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=632255">Bug</a>.</p>
<p>That&#8217;s not to say WebKit is all peachy-keen.  You currently can crash Chromium OSX nightlies by <a href="http://code.google.com/p/chromium/issues/detail?id=42342">creating an ArrayBuffer of unusual size</a> and there are some issues passing <a href="http://code.google.com/p/chromium/issues/detail?id=73313">ArrayBuffers into web workers</a>.  This means that I disabled use of <a href="http://www.w3.org/TR/workers/">Workers</a> in kthoom as a result and everything happens in a single thread. :-/</p>
<p>Oh, and you can&#8217;t easily <a href="https://www.khronos.org/webgl/public-mailing-list/archives/1102/msg00145.html">convert bytes from TypedArrays into strings</a>&#8230;</p>
<p>FML.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2011/02/23/typedarrays-make-me-theoretically-happy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FXPointer Broken &#8211; You Can Help!</title>
		<link>http://www.codedread.com/blog/archives/2009/10/16/fxpointer-broken-you-can-help/</link>
		<comments>http://www.codedread.com/blog/archives/2009/10/16/fxpointer-broken-you-can-help/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 14:53:05 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[fxpointer]]></category>
		<category><![CDATA[xpointer]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2009/10/16/fxpointer-broken-you-can-help/</guid>
		<description><![CDATA[I&#8217;m writing this quick entry as a desparate plea out there: Anyone who has an hour or two and knows some XUL-fu skills, can you please take a look at my FXPointer extension? This thing worked fine in Firefox 3.0, but unfortunately some change in Firefox 3.5 causes FXPointer to completely break the location bar. [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" style="float:right" data="http://codedread.com/clipart/bugs.svgz"><span/></object>I&#8217;m writing this quick entry as a desparate plea out there: Anyone who has an hour or two and knows some XUL-fu skills, can you please take a look at my <a href="http://codedread.com/fxpointer/">FXPointer extension</a>?  This thing worked fine in Firefox 3.0, but unfortunately some change in Firefox 3.5 causes FXPointer to completely break the location bar.  Every time I&#8217;ve tried to debug this problem, I&#8217;ve failed and I don&#8217;t have a lot of time these days to work it out.  <span id="more-546"></span></p>
<p>If someone thinks they can help out, please <a href="http://www.codedread.com/fxpointer/fxpointer-0.2.9.xpi">download the XPI</a> (using a different browser than Firefox), rename to .zip, unzip and start hacking.  WARNING: This breaks the location bar in Firefox 3.5 &#8211; do not enable the add-on unless you&#8217;re going to help debug the problem.</p>
<p>Conceptually it&#8217;s pretty straightforward.  In the content/fxpointer.xml XBL file, I bind to the id=&#8221;urlbar&#8221; and then modify the onTextEntered() method.</p>
<p>I put the source code up on a <a href="http://code.google.com/p/fxpointer/">Google Code Project</a> to make it easier for hackers to get the source.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2009/10/16/fxpointer-broken-you-can-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Put The Students To Work!</title>
		<link>http://www.codedread.com/blog/archives/2009/01/20/put-the-students-to-work/</link>
		<comments>http://www.codedread.com/blog/archives/2009/01/20/put-the-students-to-work/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 22:04:59 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2009/01/20/put-the-students-to-work/</guid>
		<description><![CDATA[I&#8217;m delightfully surprised at how much attention Mozilla is apparently giving SVG. First they&#8217;ve hired jwatt to work full-time on SVG. Now it looks like some students also have an interest in advancing the SVG implementation within Mozilla. Great! I don&#8217;t have the experience of a seasoned Mozilla hacker (only a couple patches years ago), [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" style="float:right" data="http://codedread.com/clipart/svg.svgz"><span/></object><object type="image/svg+xml" width="100" height="100" style="float:right" data="http://codedread.com/clipart/mozilla.svgz"><span/></object>I&#8217;m delightfully surprised at how much attention Mozilla is apparently giving <a href="http://www.w3.org/Graphics/SVG" title="Scalable Vector Graphics">SVG</a>.  First they&#8217;ve hired <a href="http://jwatt.org/" title="Jonathan Watt">jwatt</a> to work full-time on SVG.  Now it looks like <a href="http://groups.google.com/group/mozilla.dev.tech.svg/browse_thread/thread/ddaf1fc5863294fc/86e4ea9c947b42fa?show_docid=86e4ea9c947b42fa">some students</a> also have an interest in advancing the SVG implementation within Mozilla.  <a href="http://blog.codedread.com/archives/2008/08/15/patches-for-credits/">Great!</a></p>
<p>I don&#8217;t have the experience of a seasoned Mozilla hacker (only a couple patches years ago), but I do know that SMIL, SVG Fonts, SVG in CSS and SVG text-specific edge cases could use some work from a SVG 1.1 perspective.  Hopefully they get in contact with jwatt, rlongson, roc, dholbert and birtles and get some ideas rolling&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2009/01/20/put-the-students-to-work/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Houston, the SMIL has landed</title>
		<link>http://www.codedread.com/blog/archives/2009/01/15/houston-the-smil-has-landed/</link>
		<comments>http://www.codedread.com/blog/archives/2009/01/15/houston-the-smil-has-landed/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 06:38:53 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[smil]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2009/01/15/houston-the-smil-has-landed/</guid>
		<description><![CDATA[This day was five-and-a-half years in the making: the initial patch to add SMIL support has landed on Mozilla trunk. SMIL is the Open Web way of doing declarative animation, I use it on my site here and there via FakeSmile. This Mozilla patch is partial support for SMIL within SVG only (not HTML). Note [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" style="float:right" data="http://codedread.com/clipart/mozilla.svgz"><span/></object><object type="image/svg+xml" width="100" height="100" style="float:right" data="http://codedread.com/clipart/smile.svgz"><span/></object><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=216462#c181">This day</a> was five-and-a-half years in the making:  the initial patch to add SMIL support has landed on Mozilla trunk.  SMIL is the Open Web way of doing declarative animation, I use it on my site here and there via <a href="http://leunen.d.free.fr/fakesmile/index.html" title="FakeSmile is a JavaScript workaround to give browsers some support for SMIL+SVG">FakeSmile</a>.  This Mozilla patch is partial support for SMIL within SVG only (not HTML).  Note that SMIL support is disabled in the build by default, as <a href="http://weblogs.mozillazine.org/roc/archives/2009/01/post31_plans.html">roc says</a> &#8220;we should enable it when we&#8217;ve got enough implemented that we wouldn&#8217;t feel embarrassed about shipping it. &#8221; &#8211; but this is a significant step forward.</p>
<p>Thanks and congratulations go to <a href="http://blog.dholbert.org/2009/01/smil-support-has-landed.html" title="Daniel Holbert's blog">Daniel</a>, <a href="http://brian.sol1.net/svg/">Brian</a> and <a href="http://weblogs.mozillazine.org/roc/">Robert</a>!  Also thanks to <a href="http://my.opera.com/MacDev_ed/blog/">Erik</a> and <a href="http://ln.hixie.ch/">Ian</a> for putting some SMIL tests into Acid3.  Not that this had anything to do with it.  Oh, no. <img src='http://www.codedread.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Opera has supported SMIL in SVG for a couple years now.  Anyone want to place bets on who will be the second to release a browser that supports it? Mozilla? Apple? Google?  Microsoft?  What, did I say something funny?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2009/01/15/houston-the-smil-has-landed/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>No Smiling in Firefox 3.1</title>
		<link>http://www.codedread.com/blog/archives/2008/09/30/no-smiling-in-firefox-31/</link>
		<comments>http://www.codedread.com/blog/archives/2008/09/30/no-smiling-in-firefox-31/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 22:22:45 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[smil]]></category>
		<category><![CDATA[SVG]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/09/30/no-smiling-in-firefox-31/</guid>
		<description><![CDATA[Poo. Declarative animation in SVG won&#8217;t make it for the Firefox 3.1 release. That&#8217;s a big shame, though I trust that it&#8217;s the right decision.]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/smile.svgz"><span/></object><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=216462#c104">Poo</a>.  Declarative animation in SVG won&#8217;t make it for the Firefox 3.1 release.  That&#8217;s a big shame, though I trust that it&#8217;s the right decision.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/09/30/no-smiling-in-firefox-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVG Mini News Digest</title>
		<link>http://www.codedread.com/blog/archives/2008/09/11/svg-mini-news-digest/</link>
		<comments>http://www.codedread.com/blog/archives/2008/09/11/svg-mini-news-digest/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 13:18:42 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[w3c]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/09/11/svg-mini-news-digest/</guid>
		<description><![CDATA[Rather than twittering these and missing a sizable chunk of people who might be interested, I thought I&#8217;d post a couple quick links to very cool news in the SVG world: Apple finally pushed a firmware update to their iPhones that makes Safari support SVG. I first heard about it here and then Doug blogged [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/svg.svgz"><span/></object>Rather than twittering these and missing a sizable chunk of people who might be interested, I thought I&#8217;d post a couple quick links to very cool news in the <a href="http://www.w3.org/Graphics/SVG" title="Scalable Vector Graphics">SVG</a> world:<span id="more-497"></span></p>
<ul>
<li>Apple finally pushed a firmware update to their iPhones that makes Safari support SVG.  I first heard about it <a href="http://tech.groups.yahoo.com/group/svg-developers/message/61065" title="Luis Vielva posts on Yahoo's svg-developers mailing list about SVG on the iPhone">here</a> and then <a href="http://schepers.cc/?p=71" title="Doug Schepers posts about SVG on the iPhone">Doug blogged about it</a>.</li>
<li>Mozilla finally landed <a href="http://weblogs.mozillazine.org/roc/archives/2008/09/auckland_web_me_1.html">SVG effects for HTML</a>, presumably for Firefox 3.1 but I&#8217;ll be keeping an ear to <a href="http://weblogs.mozillazine.org/roc/" title="Robert O'Callahan. Christian. Repatriate Kiwi. Mozilla hacker.">roc&#8217;s blog</a> for further updates on that.</li>
<li>Work on the <a href="http://labs.zavoo.com/?cat=10" title="Flex SVG Viewer">Flex SVG Viewer (FSV)</a> has started to pick up. It is now <a href="http://labs.zavoo.com/?p=25" title="Flex SVG Viewer released under MIT license">released under the MIT license</a> and just had its <a href="http://labs.zavoo.com/?p=26" title="Flex SVG Viewer has its first contributed patch">first contributed patch</a>. More on this at a later time.</li>
<li>Some guy named <a href="http://www.msnbc.msn.com/id/26646919/" title="TBL, father of the WWW, calls for IE to support SVG">Tim Berners-Lee chastised Internet Explorer</a> for not supporting SVG and that article has been picked up by the Associated Press &#8211; who does <a href="http://en.wikipedia.org/wiki/Tim_Berners-Lee" title="Tim Berners-Lee">he</a> think he is?</li>
<li>The <a href="http://www.w3.org/Graphics/SVG/IG/" title="W3C SVG Interest Group">W3C SVG Interest Group</a> garnered several new members within the last couple days and chatter has picked up on the <a href="http://lists.w3.org/Archives/Public/public-svg-ig/">Mailing List</a> which is a hopeful sign that we&#8217;re starting to gel a bit. If you care about SVG and can help in some tangible way, I invite you to <a href="http://www.w3.org/2004/01/pp-impl/42368/instructions" title="Join the W3C SVG Interest Group">consider joining</a>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/09/11/svg-mini-news-digest/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ubuntu 7.10 Dash Crash</title>
		<link>http://www.codedread.com/blog/archives/2008/07/25/ubuntu-710-dash-crash/</link>
		<comments>http://www.codedread.com/blog/archives/2008/07/25/ubuntu-710-dash-crash/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 23:55:45 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[dash]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/07/25/ubuntu-710-dash-crash/</guid>
		<description><![CDATA[I recently tried to compile Daniel Holbert&#8217;s SMIL patches in mozilla-central. While doing this, I observed the &#8220;configure&#8221; was core dumping. The folks in the #developers channel over on irc.mozilla.org were able to help me out and trace it down to the fact that Ubuntu&#8217;s dash was crashing. I worked around this by changing Mozilla&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/ubuntu.svgz"><span/></object>I recently tried to compile Daniel Holbert&#8217;s <a href="http://hg.mozilla.org/users/dholbert_mozilla.com/smil-patches/">SMIL patches</a> in mozilla-central.  While doing this, I observed the &#8220;configure&#8221; was core dumping.  The folks in the #developers channel over on irc.mozilla.org were able to help me out and trace it down to the fact that Ubuntu&#8217;s <a href="https://wiki.ubuntu.com/DashAsBinSh">dash</a> was crashing.  I worked around this by changing Mozilla&#8217;s configure script to use #!/bin/bash instead of #!/bin/sh.</p>
<p>Apparently this crash has been fixed on Ubuntu 8.10 because Daniel himself hasn&#8217;t witnessed this crash?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/07/25/ubuntu-710-dash-crash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Stats: Now With &#8220;MarketShare&#8221;</title>
		<link>http://www.codedread.com/blog/archives/2008/07/11/web-stats-now-with-marketshare/</link>
		<comments>http://www.codedread.com/blog/archives/2008/07/11/web-stats-now-with-marketshare/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 06:07:08 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/07/11/web-stats-now-with-marketshare/</guid>
		<description><![CDATA[I took 20 minutes and added a feature request to my SVG Web Stats web application tonight: Now you can switch the timeline graph from Traffic mode to Distribution mode, which shows the share of each browser on my site as a percentage of the total. Continuing with the navel-gazing theme, some points I noted [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/party.svgz"><span/></object>I took 20 minutes and added a feature request to my <a href="http://www.codedread.com/displayWebStats.svg">SVG Web Stats</a> web application tonight:  Now you can switch the timeline graph from Traffic mode to Distribution mode, which shows the share of each browser on my site as a percentage of the total.<span id="more-476"></span></p>
<p>Continuing with the <a href="http://blog.codedread.com/archives/2008/07/10/microblogging-floo-flah/">navel-gazing theme</a>, some points I noted in my stats:</p>
<ul>
<li>Opera and Safari now amount to 7-10% of my total unique visits</li>
<li>Since its release last month, Firefox 3 has about the same share as IE7, which was released over a year and a half ago (20% total)</li>
<li>IE has lost roughly 5% of total share on my site since I&#8217;ve started recording these statistics (this is my third year)</li>
<li>IE6 is still the browser version with the largest single share (roughly 30%).  Give Firefox 3 a few more months though&#8230;</li>
<li>Virtually no one is using IE8 Beta 1, released over four months ago.  I mean, way more people are using Firefox 3.1 pre-Alpha-1!  I see at most one or two hits a week from IE8.  Which makes sense because you can&#8217;t install multiple copies of IE and there aren&#8217;t very many cool things you can do with IE anyway.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/07/11/web-stats-now-with-marketshare/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mozilla Works on SVG Effects For Web</title>
		<link>http://www.codedread.com/blog/archives/2008/06/03/mozilla-works-on-svg-effects-for-web/</link>
		<comments>http://www.codedread.com/blog/archives/2008/06/03/mozilla-works-on-svg-effects-for-web/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 02:45:50 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/06/03/mozilla-works-on-svg-effects-for-web/</guid>
		<description><![CDATA[Very cool stuff from roc. An interesting alternative to all the CSS properties being added to WebKit. Meanwhile, Microsoft is still plodding away on bog-standard CSS 2 &#8211; expect an update from them in August, if you&#8217;re still interested (if you are maybe you want to try a new plugin for IE?)]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/mozilla.svgz"><span/></object><a href="http://weblogs.mozillazine.org/roc/archives/2008/06/applying_svg_ef.html">Very cool stuff</a> from roc.   An interesting alternative to all the CSS properties being added to <a href="http://webkit.org/blog/">WebKit</a>.  Meanwhile, Microsoft is still plodding away on bog-standard CSS 2 &#8211; expect an <a href="http://blogs.msdn.com/ie/archive/2008/06/03/ie8-beta-2-coming-in-august.aspx">update</a> from them in August, if you&#8217;re still interested (if you are maybe you want to try <a href="http://www.savarese.org/software/mozie/" title="Mozilla in IE">a new plugin</a> for IE?)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/06/03/mozilla-works-on-svg-effects-for-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Getting Ready To Smile?</title>
		<link>http://www.codedread.com/blog/archives/2008/04/18/firefox-getting-ready-to-smile/</link>
		<comments>http://www.codedread.com/blog/archives/2008/04/18/firefox-getting-ready-to-smile/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 02:49:43 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[acid]]></category>
		<category><![CDATA[smil]]></category>

		<guid isPermaLink="false">http://blog.codedread.com/archives/2008/04/18/firefox-getting-ready-to-smile/</guid>
		<description><![CDATA[Chris Double was kind enough to update the SMIL patch on Bug 21642 for Mozilla and then do some builds for me so I wouldn&#8217;t have to muddle through the build and patch process. I&#8217;m ashamed to admit that so far this has been enough of a deterrant that I haven&#8217;t bothered to try it [...]]]></description>
			<content:encoded><![CDATA[<p><object type="image/svg+xml" width="100" height="100" align="right" hspace="10" data="http://codedread.com/clipart/smile.svgz"><span/></object><a href="http://www.bluishcoder.co.nz/">Chris Double</a> was kind enough to update the <a href="http://www.w3.org/AudioVideo/" title="Synchronized Multimedia Integration Language">SMIL</a> patch on <a href="http://bugzilla.mozilla.org/show_bug.cgi?id=216462">Bug 21642</a> for Mozilla and then do some builds for me so I wouldn&#8217;t have to muddle through the build and patch process.  I&#8217;m ashamed to admit that so far this has been enough of a deterrant that I haven&#8217;t bothered to try it out, so I&#8217;m really glad Chris did this.  The best part is that, in doing this, Chris found Firefox crashing on several tests and was able to update the patch to fix these problems.</p>
<p>Anyway, with the patch, a Mozilla trunk nightly gains about 4.5% to their overall <a href="http://www.codedread.com/svg-support.php">SVG score</a>.  Put another way, they score 25/116 on the SVG+SMIL animation tests in the Full test suite.  While this isn&#8217;t in the league of <a href="http://blog.codedread.com/archives/2008/04/15/webkit-nightly-now-smiling/">current WebKit nightlies</a> (and neither of these platforms are in the league of <a href="http://www.opera.com/">Opera</a> 9+), it does show that progress could be made on this were it applied to the trunk (once <a href="http://www.mozilla.com/firefox">Firefox</a> 3 ships, of course).  Does anyone know if this patch means that a Firefox build would pass those SVG+SMIL tests in <a href="http://acid3.acidtests.org/">Acid 3</a>?</p>
<p><i>[Update: Chris has made the Firefox builds available for download <a title="Firefox + SMIL + Video builds" href="http://www.bluishcoder.co.nz/2008/04/firefox-svg-animation-patch.html">here</a>]</i></p>
<p><i>[Update 2008-04-20:  <a href="http://www.bluishcoder.co.nz/2008/04/svg-animation-update.html">Chris' latest build</a> now makes the SMIL score 38/125, though some tests have now regressed.]</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codedread.com/blog/archives/2008/04/18/firefox-getting-ready-to-smile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

