<?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>{(something&#124;&#124;other).soft()} &#187; firefox</title>
	<atom:link href="http://www.somethingorothersoft.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.somethingorothersoft.com</link>
	<description>About Software Development And Other Stuff By Igor Zevaka</description>
	<lastBuildDate>Fri, 18 Jun 2010 00:15:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>I have a new pet hate browser</title>
		<link>http://www.somethingorothersoft.com/2010/01/08/i-have-a-new-pet-hate-browser/</link>
		<comments>http://www.somethingorothersoft.com/2010/01/08/i-have-a-new-pet-hate-browser/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:04:32 +0000</pubDate>
		<dc:creator>igor</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.somethingorothersoft.com/?p=181</guid>
		<description><![CDATA[Hating IE6 is so 2003. I hate Chrome now. Maybe I am biased. I only used Chrome to test a layout that has a lot of transparency. It&#8217;s quite well known that webkit sucks a bit handling RGBA. But I am getting ahead of myself. Everyone kept going on about how fast Chrome after it <a href="http://www.somethingorothersoft.com/2010/01/08/i-have-a-new-pet-hate-browser/" rel="bookmark" title="Read on...">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Hating IE6 is so 2003. I hate Chrome now. Maybe I am biased. I only used Chrome to test a layout that has a lot of transparency. It&#8217;s quite well known that webkit sucks a bit handling RGBA. But I am getting ahead of myself.</p>

<p>Everyone kept going on about how fast Chrome after it came out. My experience has been the opposite. A few months back every time I would start Chrome it would sit for half a minute, discovering proxy, I think. It hasn&#8217;t really altered my browsing experience once it got started. That was fixed a while back.</p>

<p>Now I have found more issues that actually make it the slower browser out of IE(!!!) and Firefox. Try browsing this site:</p>

<p><a href="24ways.org">24ways.org</a></p>

<p>Yeah. You can&#8217;t scroll for shit.</p>

<p>Fair enough, it&#8217;s a bug. That&#8217;s OK, we all write bugs. I would have completely not cared if not for yet another Chrome idiosynchrasy that just tipped me over the edge.</p>

<p>The layout that I am working on is largely inspired by 24ways.org, so it has a few semi-transparent elements, which of course don&#8217;t work in IE. As a workaround I am using one pixel PNGs with alpha channel. Supposedly this is the way to do it:</p>

<p><pre class="brush: css;">
.transparent {
  background: url(pngwithalpha.png);
  background: rgba(255,255,255,0.1);
}
</pre></p>

<p>What the browser is meant to do is to disregard the first <code>background</code> declaration and use the second if it supports RGBA colours. That&#8217;s what Firefox does&#8230; But no, Chrome loads those images anyway.</p>

<p>Fair enough, it has quirks. At least it would cache the images, right? <span style="font-size: x-large">WRONG!!!</span>. Unlike Firefox <strong>and</strong> IE, Chrome would request those image even though you don&#8217;t refresh the page. Both IE and Firefox, when you focus on the address bar and hit enter will retrieve the images from local cache. When you refresh, they would do an <code>If-Modified-Since</code> request. Chrome does an <code>If-Modified-Since</code> request regardless.</p>

<p>Actually, I lie. It doesn&#8217;t do the request regardless. It will do a status request for images that are visible straight away. If there is a background image that is in a <code>:hover</code> pseudo-class, it will retrieve that one from the local cache. Go figure.</p>

<p><a href="http://925html.com/code/rgba-ie-fallback/">Here</a> is an excellent and very detailed comparison of browser support for transparencies and pngs. Go Firefox!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.somethingorothersoft.com/2010/01/08/i-have-a-new-pet-hate-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
