<?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>K-Squared Ramblings &#187; Acid2</title>
	<atom:link href="http://www.hyperborea.org/journal/tag/acid2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hyperborea.org/journal</link>
	<description>Sci-fi, comics, humor, photos...it&#039;s all fair game.</description>
	<lastBuildDate>Sat, 21 Nov 2009 07:49:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='www.hyperborea.org' port='80' path='/journal/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Acid(2) Stare</title>
		<link>http://www.hyperborea.org/journal/archives/2008/03/19/acid2-eyes/</link>
		<comments>http://www.hyperborea.org/journal/archives/2008/03/19/acid2-eyes/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 19:27:52 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2008/03/19/acid2-eyes/</guid>
		<description><![CDATA[After looking at how Safari 3.1 handles the Acid2 test, and finding that under some circumstances/platforms it fails the test, I realized: that one line, with the eyes, has been the cause of most regressions in browsers that previously passed the test.
Rows 4-5 test fallback behavior for objects.  The idea is that if a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webstandards.org/action/acid2/"><img class="alignright" width="168" height="168" src='http://www.hyperborea.org/journal/wp-content/uploads/2008/03/acid2-reference.png' alt='Acid2 reference image.' title="Acid2 the way it's supposed to look" /></a>After looking at how Safari 3.1 handles the <a href="http://www.webstandards.org/action/acid2/">Acid2 test</a>, and finding that under some circumstances/platforms it fails the test, I realized: that one line, with the eyes, has been the cause of most regressions in browsers that previously passed the test.</p>
<p>Rows 4-5 test fallback behavior for objects.  The idea is that if a page tries to load an external resource, but can&#8217;t&#8212;the file is missing, the server&#8217;s down, the network&#8217;s slow, the browser doesn&#8217;t have the right plugin, etc.&#8212;the page can provide alternate content.  And it can be nested, so you can try, say, a video clip that falls back to an SVG image that falls back to a PNG that falls back to text.  <span id="more-2359"></span> The Acid2 guide goes into <a href="http://www.webstandards.org/action/acid2/guide/#row-4-5">more detail</a>, with the relevant section of code being this:</p>
<pre>&lt;object data="data:application/x-unknown,ERROR"&gt;
  &lt;object data="http://www.webstandards.org/404/" type="text/html"&gt;
    &lt;object type="image/png" data="data:image/png;..."&gt;ERROR&lt;/object&gt;
  &lt;/object&gt;
&lt;/object&gt;</pre>
<p>So it tries to load the first object, which is deliberately made unloadable.  Then it tries to load the second object, which calls out to a webpage which is <em>supposed</em> to be unavailable.  Then it falls back to the third object, which is an embedded image of the eyes.</p>
<p>The problems have been with the second object, the one hosted outside of the test file itself.</p>
<p>Back in December, when Microsoft announced that their internal builds of <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">IE8 passed Acid2</a>, lots of people started checking it in the Firefox 3 beta, Safari, and Opera, browsers that were known to pass.  And they were surprised to find <a href="http://www.hyperborea.org/journal/archives/2007/12/19/fix-acid2/">it didn&#8217;t work</a>.  It turned out that the server config on www.webstandards.org had changed such that the file requested actually returned a page instead of an error, so browsers were properly loading that page instead of the eyes.  It was suggested that people use an alternate copy of the test that pointed to a different external resource.</p>
<p><img class="alignleft" width="168" height="168" src='http://www.hyperborea.org/journal/wp-content/uploads/2008/03/acid2-ie8b1-altsite.png' alt='Acid2 as rendered by IE8b1 on alternate sites.' title="Acid2 as rendered by IE8b1 when viewing an alternate copy of the test."/>Then when IE8 beta1 came out, people rushed to try it themselves.  By this time the server config had been fixed, so the official copy of the test worked again.  But people trying it on alternate copies ran into a problem, because it <a href="http://blogs.msdn.com/ie/archive/2008/03/05/why-isn-t-ie8-passing-acid2.aspx">tripped a cross-site security check</a> (IE8b1 would only load objects from the same domain) <em>and</em> IE8 wasn&#8217;t using the fallback content if it was blocked for security reasons.  (This makes absolutely no sense.  It&#8217;s like refusing to let someone board a plane if they trip a metal detector, instead of checking to make sure they didn&#8217;t miss a few coins and having them walk through again.  Add to that the fact that IE is perfectly happy to load images, iframes, Flash animations, etc. from other sites, and the restriction itself seems a bit silly.)</p>
<p><img class="alignright" width="168" height="168" src='http://www.hyperborea.org/journal/wp-content/uploads/2008/03/acid2-safari31-win.png' alt='Acid2 as rendered by Safari 3.1 on Windows' title="Acid2 as rendered by Safari 3.1 on Windows" />So now Safari 3.1 is out, and <a href="http://www.hyperborea.org/journal/archives/2008/03/18/safari-31/">has problems with exactly the same line</a>.  In my test on Windows, it displays this dithered orange band.  In my test on Mac OS, it looks like this for a few seconds, but continues to display the page-loading icon.  Then it finishes loading and displays the eyes, passing the test.  It looks like it&#8217;s just taking a couple of seconds to check that external resource before falling back to the alternative.</p>
<p>I just find it interesting that all of these come down to one single piece of the test, and it&#8217;s the piece that tries to load an external resource&#8212;something that isn&#8217;t within its own control.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2008/03/19/acid2-eyes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hey WaSP Webmaster: How to Fix Acid2</title>
		<link>http://www.hyperborea.org/journal/archives/2007/12/19/fix-acid2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2007/12/19/fix-acid2/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 01:55:55 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[webstandards]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2007/12/19/fix-acid2/</guid>
		<description><![CDATA[With internal builds of IE8 passing Acid2, a lot of people are looking at the Acid2 test with browsers that are supposed to comply&#8230; but don&#8217;t.
It looks like there&#8217;s a server error on www.webstandards.org, and I&#8217;m trying to report it&#8212;but emailing them is just kicking back &#8220;user unknown&#8221; errors, and the spam protection on their [...]]]></description>
			<content:encoded><![CDATA[<p>With internal builds of <a href="http://www.webstandards.org/2007/12/19/ie8-passes-acid2-test-2/">IE8 passing Acid2</a>, a lot of people are looking at the <a href="http://www.webstandards.org/action/acid2/">Acid2 test</a> with browsers that are supposed to comply&#8230; but don&#8217;t.</p>
<p>It looks like there&#8217;s a server error on www.webstandards.org, and I&#8217;m <strong>trying</strong> to report it&#8212;but emailing them is just kicking back &#8220;user unknown&#8221; errors, and the spam protection on their blog refuses to let me comment, claiming that my user-agent has changed since I read the post.  Um, no, I may have looked at it with more than one browser, but the one that loaded it is the one that&#8217;s submitting it.</p>
<p><strong>So, Web Standards People, you want to fix your test?</strong></p>
<p><strong>Fix your 404 page.</strong></p>
<p><a href="http://www.webstandards.org/action/acid2/guide/">Rows 4-5</a> test nested &lt;object&gt; support.  The intent of the spec is that if a remote object cannot be retrieved, the browser will instead display the content inside it, on the HTML page itself.</p>
<p>One of the objects is trying to load content from <strong>http://www.webstandards.org/404/</strong>.  Normally this fails, and the browser displays the fallback content &#8212; the eyes on the happy face.  Right now that page is returning an HTTP status code of &#8220;200 OK&#8221; instead of &#8220;404 Not Found&#8221; &#8212; so the browsers, including Opera 9, Safari 3, Konqueror 3 and Firefox 3 beta, are all dutifully showing the content of that page in a tiny rectangle with scrollbars.</p>
<p><b>Update:</b> Thanks to several Slashdot posters for pointing out that the test author, Ian Hickson, has a <a href="http://www.hixie.ch/tests/evil/acid/002/">second copy of the test</a> that points to a different URL for the &lt;object&gt; fallback test, and currently works as expected.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2007/12/19/fix-acid2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IE8 will pass Acid2</title>
		<link>http://www.hyperborea.org/journal/archives/2007/12/19/ie8-acid2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2007/12/19/ie8-acid2/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 22:00:34 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2007/12/19/ie8-acid2/</guid>
		<description><![CDATA[Okay, this will mean nothing to most people out there, but to web developers, particularly those who use standards-based design to maximize compatibility with different browsers, this is monumental.
An internal build of Internet Explorer 8 has passed Acid2.
The Acid2 test was released in April 2005 to test a number of pieces of the HTML and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/windows/ie/"><img class="alignright" alt="Internet Explorer." border="0"  src="http://www.hyperborea.org/images/cs/ie7_60h.png" width="60" height="60" /></a>Okay, this will mean nothing to most people out there, but to web developers, particularly those who use standards-based design to maximize compatibility with different browsers, this is <strong>monumental</strong>.</p>
<p>An internal build of <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">Internet Explorer 8 has passed Acid2</a>.</p>
<p>The <a href="http://www.webstandards.org/action/acid2/">Acid2 test</a> was released in April 2005 to test a number of pieces of the HTML and CSS standards that, at the time, no modern browser handled according to spec.  The <a href="http://en.wikipedia.org/wiki/Acid2">purpose of the test</a> was to prod browser developers into improving their products, and to do so consistently, so that developers would have more tools available for cross-browser sites.</p>
<p>At the time, Microsoft dismissed its its importance entirely.  Even though they were working on rendering improvements for IE7, they stated that Acid2 was not one of their goals.  Meanwhile Opera and Firefox were both in the wrong phase of their development cycles to make sweeping changes, so Safari jumped on it and became the first browser to pass. (Every once in a while I see someone say Opera was the first, and I have to wonder where they were.)  Opera followed with version 9, and the Firefox 3 betas pass it as well.</p>
<p>With Gecko (Firefox), WebKit (Safari), Opera and IE accounting for the four biggest web browsers and the most popular minor browsers (Flock, Camino, Shiira, etc., plus IE shells like Maxthon), this shows <strong>unprecedented convergence</strong> among clients.  It will be much easier to develop a cross-browser website that runs on IE8, Firefox 3, Opera 9+ and Safari 3+.</p>
<p>There are, of course, <em>many</em> aspects of the specs that aren&#8217;t covered by Acid2.  And there are emerging standards like HTML5 and CSS3.  And there are plenty of other bugs, quirks, and extensions among various browsers (IE&#8217;s bizarre concept of <a href="http://www.satzansatz.de/cssd/onhavinglayout.html">having layout</a>, for instance, trips up all kinds of <a href="http://www.hyperborea.org/journal/archives/2007/02/11/redesign/">weird issues</a>).  And then there&#8217;s waiting for IE8 to be released, and moving people up from IE7, not to mention all the people we <a href="http://www.hyperborea.org/journal/archives/2007/12/04/the-tipping-point/">still have to move up from IE6</a>.  Full benefit is probably at least 3 or 4 years away.  *sigh*</p>
<p><small>(<a href="http://www.webstandards.org/2007/12/19/ie8-passes-acid2-test-2/">via WaSP Buzz</a>)</small></p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2007/12/19/ie8-acid2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera passes Acid2</title>
		<link>http://www.hyperborea.org/journal/archives/2006/03/10/opera-passes-acid2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2006/03/10/opera-passes-acid2/#comments</comments>
		<pubDate>Fri, 10 Mar 2006 19:42:53 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Opera]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2006/03/10/opera-passes-acid2/</guid>
		<description><![CDATA[OperaWatch reports that this week&#8217;s development build of Opera passes the Acid2 test.  This makes Opera the first browser for Windows to pass!  Previous browsers included Safari (Mac only), iCab (Mac only), and Konqueror (Linux/Unix).  I&#8217;m sure you could get Konqueror to run on Windows under Cygwin, but it seems like a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://my.opera.com/community/download.pl?ref=Kelson&#038;p=opera_desktop" title="Opera Web Browser"><img alt="[Opera Logo]" src="http://www.hyperborea.org/images/cs/opera-ooo.gif" class="alignright" /></a>OperaWatch reports that this week&#8217;s development build of Opera <a href="http://operawatch.com/news/2006/03/latest-weekly-build-of-the-opera-browser-passes-acid2-test.html">passes</a> the <a href="http://www.webstandards.org/action/acid2/">Acid2 test</a>.  This makes Opera the <strong>first browser for Windows to pass</strong>!  <a href="http://www.hyperborea.org/journal/archives/2005/11/01/acid2-timeline/">Previous browsers</a> included Safari (Mac only), iCab (Mac only), and Konqueror (Linux/Unix).  I&#8217;m sure you could get Konqueror to run on Windows under <a href="http://www.cygwin.com/">Cygwin</a>, but it seems like a lot of effort just to run a web browser.</p>
<p>Opera cautioned that <a href="http://my.opera.com/community/forums/topic.dml?id=91018">upcoming development builds could regress</a>, but we can expect the final version of Opera 9 to pass the test.</p>
<p>Neither Internet Explorer 7 nor Firefox 2 will make any attempt to pass Acid2, but Mozilla is <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=289480">working on Acid2</a> fixes in the next version of their rendering engine, Gecko 1.9, which will likely appear in Firefox 3.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2006/03/10/opera-passes-acid2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Acid2 Timeline</title>
		<link>http://www.hyperborea.org/journal/archives/2005/11/01/acid2-timeline/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/11/01/acid2-timeline/#comments</comments>
		<pubDate>Wed, 02 Nov 2005 06:40:23 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=1119</guid>
		<description><![CDATA[
April 13, 2005: Acid2 test announced by WaSP.

April 27, 2005: Internal builds of Safari pass it.
May 22, 2005: Public beta of iCab passes (but no one else notices for a week).
June 5, 2005: Development builds of Konqueror pass.
October 31, 2005: Safari 2.0.2 becomes the first non-beta web browser to pass the Acid2 test.
Update: November 29, [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>April 13, 2005: <a href="http://www.hyperborea.org/journal/archives/2005/04/13/acid2/">Acid2 test announced</a> by WaSP.
</li>
<li>April 27, 2005: <a href="http://www.hyperborea.org/journal/archives/2005/04/28/acid2-and-the-winner-is/">Internal builds of Safari</a> pass it.</li>
<li>May 22, 2005: <a href="http://www.webstandards.org/2005/06/07/icab-konqueror-pass-acid2/">Public beta of iCab</a> passes (but no one else notices for a week).</li>
<li>June 5, 2005: <a href="http://www.hyperborea.org/journal/archives/2005/06/07/icab-beats-acid2/">Development builds of Konqueror</a> pass.</li>
<li>October 31, 2005: <a href="http://www.webstandards.org/2005/10/31/we-love-to-see-you-smile/">Safari 2.0.2</a> becomes the first non-beta web browser to pass the Acid2 test.</li>
<li><b>Update:</b> November 29, 2005: <a href="http://www.kde.org/announcements/announce-3.5.php">Konqueror 3.5</a> is the second released browser to pass.</li>
<li><b>Update:</b> March 10, 2006: <a href="http://operawatch.com/news/2006/03/latest-weekly-build-of-the-opera-browser-passes-acid2-test.html">Development builds of Opera</a> pass.</li>
<li><b>Update:</b> June 20, 2006: <a href="http://operawatch.com/news/2006/06/opera-9-released.html">Opera 9 passes</a></li>
<li><b>Update:</b> December 9, 2006: <a href="http://cybernetnews.com/latest-firefox-3-nightly-passes-the-acid-2-test/">Development builds of Firefox 3</a> pass</li>
<li><b>Update:</b> December 19, 2007: <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">Development builds of Internet Explorer 8</a> pass</li>
</ul>
<p>So who&#8217;s next?  Well, Opera 9 beta 1 is <a href="http://my.opera.com/community/forums/topic.dml?id=91018">very close</a>&#8212;there&#8217;s a pair of red squares that should be black, but that&#8217;s it.  Neither IE7 nor Firefox 1.5 will have much in the way of Acid2-related fixes, though the trunk builds of Firefox show improvement, so <del>2.0 has a chance</del> <ins>3.0 <del>might make it</del> </ins><ins>will pass</ins> (since 2.0 will use the same engine as 1.5).</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/11/01/acid2-timeline/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Corporate Acid</title>
		<link>http://www.hyperborea.org/journal/archives/2005/08/04/corporate-acid/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/08/04/corporate-acid/#comments</comments>
		<pubDate>Thu, 04 Aug 2005 16:14:46 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[MoFo]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2005/08/04/corporate-acid/</guid>
		<description><![CDATA[The big news in web browsers this week is the formation of the Mozilla Corporation, a wholly-owned subsidiary of the Mozilla Foundation.  So far it looks mainly like an accounting change so that they can work more easily with businesses that aren&#8217;t quite sure how to deal with non-profit partner.  Firefox, Thunderbird, etc. [...]]]></description>
			<content:encoded><![CDATA[<p>The big news in web browsers this week is the formation of the <a href="http://www.mozillazine.org/talkback.html?article=7085">Mozilla Corporation</a>, a wholly-owned subsidiary of the Mozilla Foundation.  So far it looks mainly like an accounting change so that they can work more easily with businesses that aren&#8217;t quite sure how to deal with non-profit partner.  Firefox, Thunderbird, etc. will of course remain free and open-source.  I&#8217;m optimistic about the change&#8212;being a for-profit company doesn&#8217;t seem to have hurt Opera much.</p>
<p>Speaking of Opera, they&#8217;re <a href="http://operawatch.com/news/2005/08/update-on-operas-acid2-progress.html">close to passing Acid2</a> in-house.  They seem likely to be the next browser to pass (after Safari, iCab, and Konqueror).  The next question is: Who will be the first to release a <em>final</em> version that passes the test?  Safari and Konqueror still only pass on the development branches, and iCab&#8217;s still in beta.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/08/04/corporate-acid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iCab beats Acid2?</title>
		<link>http://www.hyperborea.org/journal/archives/2005/06/07/icab-beats-acid2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/06/07/icab-beats-acid2/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 16:30:10 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[iCab]]></category>
		<category><![CDATA[Konqueror]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[wasp]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[webstandards]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=909</guid>
		<description><![CDATA[On Sunday, a development version of Konqueror passed the Acid2 test.   In the comments, someone posted a screenshot of iCab also passing the Acid2 test.
I did a double-take.  iCab?  Das Internet-Taxi für den Mac?  The browser with the nice &#8220;Make iCab smile&#8221; campaign to encourage non-broken HTML on websites but [...]]]></description>
			<content:encoded><![CDATA[<p>On Sunday, a development version of <a href="http://www.kdedevelopers.org/node/1129">Konqueror passed the Acid2 test</a>.   In the comments, someone posted a screenshot of <a href="http://www.icab.de/">iCab</a> also passing the Acid2 test.</p>
<p>I did a double-take.  <strong>iCab?</strong>  <span lang="de">Das Internet-Taxi für den Mac?</span>  The browser with the nice &#8220;Make iCab smile&#8221; campaign to encourage non-broken HTML on websites but CSS capabilities that have rivaled Netscape&#160;4 as little better than a bad joke?  That has been in perpetual beta for years with no sign of shipping a final release?</p>
<p>So I did the only thing I could do.  I downloaded the new beta and tried it.  Not only did it nearly pass Acid2 (there was a narrow white line across the middle of the face) but it actually handled all the layouts on my own site&#8230; something which it had always failed at spectacularly before.</p>
<p>The WaSP Buzz posted <a href="http://www.webstandards.org/2005/06/07/icab-konqueror-pass-acid2/">a congratulatory note</a> to both this morning.  Strangely, iCab is the first browser available to the general public that passes Acid2.  The up-to-date Safari is still sitting inside Apple&#8217;s development labs, and while you can download the source for the updated Konqueror, you&#8217;ll have to wait for KDE 3.4.2&#8212;or possibly 3.5&#8212;to be able to use it yourself without running a bleeding-edge desktop.  <b>Update:</b> Apple has just <a href="http://weblogs.mozillazine.org/hyatt/archives/2005_06.html#008281">launched CVS access to WebCore</a>, putting Safari in the same situation as Konqueror: you can download and compile the latest source code if you want, but if you just want to grab an installer, you&#8217;re gonna have to wait.</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/06/07/icab-beats-acid2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acid2: And the Winner is&#8230;</title>
		<link>http://www.hyperborea.org/journal/archives/2005/04/28/acid2-and-the-winner-is/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/04/28/acid2-and-the-winner-is/#comments</comments>
		<pubDate>Thu, 28 Apr 2005 16:01:34 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2005/04/28/acid2-and-the-winner-is/</guid>
		<description><![CDATA[Dave Hyatt has succeeded in making Safari pass the Acid2 test.  (And on the eve of Mac OS X Tiger&#8217;s release, too!)
No word on when the fixed version will make it into users&#8217; hands (probably with the first update to Tiger), but he&#8217;s posted all the patches for KHTML, so the Konqueror team can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/safari/"><img alt="[Safari icon]" title="Safari" src="http://www.hyperborea.org/images/cs/safari-48.png" width="48" height="48" border="0" align="right" /></a>Dave Hyatt has succeeded in <a href="http://weblogs.mozillazine.org/hyatt/archives/2005_04.html#008042">making Safari pass the Acid2 test</a>.  (And on the eve of Mac OS X Tiger&#8217;s release, too!)</p>
<p>No word on when the fixed version will make it into users&#8217; hands (probably with the first update to Tiger), but he&#8217;s posted all the patches for KHTML, so the Konqueror team can start working the fixes back into the main codebase.</p>
<p>Congratulations, Dave!</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/04/28/acid2-and-the-winner-is/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Acid2</title>
		<link>http://www.hyperborea.org/journal/archives/2005/04/13/acid2/</link>
		<comments>http://www.hyperborea.org/journal/archives/2005/04/13/acid2/#comments</comments>
		<pubDate>Wed, 13 Apr 2005 15:59:54 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Acid2]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2005/04/13/acid2/</guid>
		<description><![CDATA[The Acid2 Browser Test is out, and any fears that it&#8217;s focused only on IE have proven unfounded.  As Dave Hyatt remarks in his efforts to get it to work in Safari, &#8220;Every browser fails it spectacularly.&#8221;
The Acid2 test is a single page of HTML and CSS designed to use parts of the spec [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.webstandards.org/action/acid2/">Acid2 Browser Test</a> is out, and any <a href="http://radio.weblogs.com/0001011/2005/03/16.html#a9659" rel="nofollow">fears</a> that it&#8217;s focused only on IE have proven unfounded.  As Dave Hyatt <a href="http://weblogs.mozillazine.org/hyatt/archives/2005_04.html#007932">remarks</a> in his efforts to get it to work in Safari, &#8220;Every browser fails it spectacularly.&#8221;</p>
<p>The Acid2 test is a single page of HTML and CSS designed to use parts of the spec that today&#8217;s browsers handle incorrectly or not at all.  According to the rules, the code should display a happy face&#8230; but at the moment it produced varying levels of gibberish.  So far Firefox seems to handle it the least badly (I hesitate to say &#8220;best&#8221;), with Opera and Konqueror at about the same level (you can at least see a circular outline), and Internet Explorer looking like a piece of modern art.</p>
<p>Well, we know Safari is working on it (and the fixes should feed back into Konqueror).  One of the test&#8217;s architects is high up at Opera, so you can bet they will be improving.  I imagine people are already submitting bug reports to Mozilla.  [Update: found the <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=acid2">tracking bug</a> in Bugzilla.] That leaves Internet Explorer.  They&#8217;ve been notoriously reluctant to update their rendering engine, but they did <a href="http://blogs.msdn.com/ie/archive/2005/03/09/391362.aspx">ask for specific requests</a>.  I don&#8217;t have much confidence in seeing fixes in IE 7, but you never know&#8230;</p>
<p>Anyone want to place bets on who progresses the fastest?</p>
<hr /><small>Copyright &copy; 2009 Kelson Vibber and/or Katherine Foreman.<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. Permission granted to Planet Antispam and LiveJournal syndication feed ksquaredramblin.  If this content is not in your news reader or one of the sites listed above, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint: bc1c453a98ff79bab5c4fca2d890469d (38.107.191.91) )</small> <a href="http://www.hudson-family.co.uk/extremecorticate.php?source=673"></a>]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/archives/2005/04/13/acid2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
