<?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>Ten Tonne Baby &#187; IE</title>
	<atom:link href="http://www.tentonnebaby.com/tag/ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tentonnebaby.com</link>
	<description>Discussion on Web Technologies, Design and London</description>
	<lastBuildDate>Thu, 19 Jan 2012 09:33:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Added object tag to page via DOM methods &#8211; IE chaos</title>
		<link>http://www.tentonnebaby.com/2009/02/26/added-object-tag-to-page-via-dom-methods-ie-chaos/</link>
		<comments>http://www.tentonnebaby.com/2009/02/26/added-object-tag-to-page-via-dom-methods-ie-chaos/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 10:51:46 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[x-browser]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2009/02/26/added-object-tag-to-page-via-dom-methods-ie-chaos/</guid>
		<description><![CDATA[I&#8217;ve been working on a widget project that involves Flash and Javascript, and came across some very strange behaviour in IE6 / 7. The object tag to render the flash movie is dynamically added to the page at runtime using standard DOM methods &#8211; document.createElement, setAttribute, appendChild etc. Life was wonderful until I opened Internet [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a widget project that involves Flash and Javascript, and came across some very strange behaviour in IE6 / 7. The object tag to render the flash movie is dynamically added to the page at runtime using standard DOM methods &#8211; document.createElement, setAttribute, appendChild etc. Life was wonderful until I opened Internet Explorer, which hangs with what looks like a request for a file with no timeout (progress bar moving very slowly but never completing). This is identical behaviour to how IE behaves when the location of the SWF is invalid.</p>
<h3>The markup</h3>
<p>The markup I was generating was based on <a href="http://www.alistapart.com/articles/flashsatay">Flash Satay</a>. Including this as static markup in a page works fine. Simple example below&#8230;</p>
<div style="border: 1px solid gray; margin: 20px 0px 10px; padding: 4px; overflow: auto; font-size: 8pt; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<div style="border-style: none; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">object</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">='application/x-shockwave-flash'</span> <span style="color: #ff0000;">data</span><span style="color: #0000ff;">='test.swf'</span> <span style="color: #ff0000;">width</span><span style="color: #0000ff;">='420'</span> <span style="color: #ff0000;">height</span><span style="color: #0000ff;">='155'</span><span style="color: #0000ff;">&gt;</span></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">param</span> <span style="color: #ff0000;">name</span><span style="color: #0000ff;">='movie'</span> <span style="color: #ff0000;">value</span><span style="color: #0000ff;">='test.swf'</span> <span style="color: #0000ff;">/&gt;</span></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">object</span><span style="color: #0000ff;">&gt;</span></pre>
</div>
</div>
<h3>DOM approach that chokes IE</h3>
<p>The following approach causes IE to choke&#8230;</p>
<div style="border: 1px solid gray; margin: 20px 0px 10px; padding: 4px; overflow: auto; font-size: 8pt; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<div style="border-style: none; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">&lt;script type=<span style="color: #006080;">"text/javascript"</span>&gt;</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    <span style="color: #0000ff;">var</span> <span style="color: #0000ff;">object</span> = document.createElement(<span style="color: #006080;">'object'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    <span style="color: #0000ff;">object</span>.setAttribute(<span style="color: #006080;">'type'</span>, <span style="color: #006080;">'application/x-shockwave-flash'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    <span style="color: #0000ff;">object</span>.setAttribute(<span style="color: #006080;">'data'</span>, <span style="color: #006080;">'test.swf'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    <span style="color: #0000ff;">object</span>.setAttribute(<span style="color: #006080;">'width'</span>, <span style="color: #006080;">'100'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    <span style="color: #0000ff;">object</span>.setAttribute(<span style="color: #006080;">'height'</span>, <span style="color: #006080;">'100'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    <span style="color: #0000ff;">var</span> param = document.createElement(<span style="color: #006080;">'param'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    param.setAttribute(<span style="color: #006080;">'name'</span>, <span style="color: #006080;">'movie'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    param.setAttribute(<span style="color: #006080;">'value'</span>, <span style="color: #006080;">'test.swf'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    <span style="color: #0000ff;">object</span>.appendChild(param);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    document.body.appendChild(<span style="color: #0000ff;">object</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">&lt;/script&gt;</pre>
</div>
</div>
<h3>The solution / workaround</h3>
<p>For some reason if the object tag + params are parsed at the same time everything works fine, so the solution involves using the alternate approach to manipulating the DOM &#8211; innerHTML. This wouldn&#8217;t have been my first choice given the situation, but it seems to be the only way to get this working. A version that works in IE&#8230;</p>
<div style="border: 1px solid gray; margin: 20px 0px 10px; padding: 4px; overflow: auto; font-size: 8pt; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<div style="border-style: none; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">&lt;script type=<span style="color: #006080;">"text/javascript"</span>&gt;</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    <span style="color: #0000ff;">var</span> fragment =</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">        <span style="color: #006080;">"&lt;object type='application/x-shockwave-flash' data='test.swf' width='100' height='100'&gt;"</span> +</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">            <span style="color: #006080;">"&lt;param name='movie' value='test.swf' /&gt;"</span> +</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">        <span style="color: #006080;">"&lt;/object&gt;"</span>;</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    <span style="color: #0000ff;">var</span> container = document.createElement(<span style="color: #006080;">'div'</span>);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;">    container.innerHTML = fragment;</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">    document.body.appendChild(container);</pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: white;"></pre>
<pre style="border-style: none; margin: 0em; padding: 0px; overflow: visible; font-size: 8pt; width: 100%; color: black; line-height: 12pt; font-family: consolas,'Courier New',courier,monospace; background-color: #f4f4f4;">&lt;/script&gt;</pre>
</div>
</div>
<p>This achieves the same end result &#8211; a DOM element node that can be inserted anyway you wish, but avoid the problem in IE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2009/02/26/added-object-tag-to-page-via-dom-methods-ie-chaos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Browserfest</title>
		<link>http://www.tentonnebaby.com/2006/10/25/browserfest/</link>
		<comments>http://www.tentonnebaby.com/2006/10/25/browserfest/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 09:09:41 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/10/25/browserfest/</guid>
		<description><![CDATA[So I guess you all know that IE7 is now on official release. This will come down via windows update in the near future, but I suggest you go and get it now if you have no compelling reason to do otherwise. The only minor pain will be cross browser testing, as you&#8217;ll need to [...]]]></description>
			<content:encoded><![CDATA[<p>So I guess you all know that <acronym title="Internet Explorer 7">IE7</acronym> is now on official release. This will come down via windows update in the near future, but I suggest you go and <a href="http://www.microsoft.com/windows/ie/default.mspx">get it</a> now if you have no compelling reason to do otherwise. The only minor pain will be cross browser testing, as you&#8217;ll need to run IE6 in a virtual PC (I think there are various articles around about hacking a standalone IE6 that will live happily side by side &#8211; good luck with that).</p>
<p>Something that totally slipped past me is that <a href="http://www.mozilla.com/en-US/firefox/">Firefox 2.0</a> has also just been released! I have no idea what&#8217;s new just yet, but I love this little browser so I&#8217;ll be installing today. I think you should too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/10/25/browserfest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HasLayout in IE7</title>
		<link>http://www.tentonnebaby.com/2006/10/04/haslayout-in-ie7/</link>
		<comments>http://www.tentonnebaby.com/2006/10/04/haslayout-in-ie7/#comments</comments>
		<pubDate>Wed, 04 Oct 2006 11:55:25 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[rendering]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/10/04/haslayout-in-ie7/</guid>
		<description><![CDATA[The majority of freaky rendering behaviour in IE6 came down to whether the haslayout attribute was applied to an element. This was a speed optimisation in the rendering engine &#8211; certain behaviour was skipped when deciding how to render an element if haslayout was false to increase the efficiency of rendering a page. The result [...]]]></description>
			<content:encoded><![CDATA[<p>The majority of freaky rendering behaviour in IE6 came down to whether the <a href="http://www.satzansatz.de/cssd/onhavinglayout.html">haslayout</a> attribute was applied to an element. This was a speed optimisation in the rendering engine &#8211; certain behaviour was skipped when deciding how to render an element if haslayout was false to increase the efficiency of rendering a page. The result was that a valid set of <acronym title="Cascading Style Sheets">CSS</acronym> instructions would produce unexpected rendering behaviour in IE6 unless haslayout was true on certain elements.</p>
<p>One of the hacks used to get around this was to apply height: 1px to an element (in a hacks file, served only to IE6 via conditional comments). As IE6 treated height like min-height, this would have no adverse behaviour, but would result in haslayout resolving to true for the element.</p>
<p>This morning I came across my first strange rendering issue in IE7 due to haslayout being false on a container element. I think a lot of the quirks have been fixed, but just be aware that the engine can still render differently according to haslayout. The previous height:1px fix is no longer applicable, as IE7 quite correctly respects any absolute height that you specify.</p>
<p>The fix in this case was to set min-height: 1px, which is another attribute that will now result in haslayout being set. In our case this had no adverse effect on the desired rendering, and therefore was a suitable fix. The actual problem was minor &#8211; 1px of extra padding on an element for no good reason.</p>
<p>I think in a lot of cases setting a min-height value would be a good approach (obviously this can be abstracted to a seperate file and served with conditional comments). However this is a fairly unobtrusive fix, so could stay with the core set of instructions without polluting the water too much.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/10/04/haslayout-in-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think Before You Hack</title>
		<link>http://www.tentonnebaby.com/2006/10/03/think-before-you-hack/</link>
		<comments>http://www.tentonnebaby.com/2006/10/03/think-before-you-hack/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 10:02:38 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[rendering]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/10/03/think-before-you-hack/</guid>
		<description><![CDATA[I've just been looking at a 'broken' site in IE7 and helping a friend diagnose what the problems are. I think people tend to assume that if a site renders happily in a bunch of different browsers, but has problems in IE7, then the browser is bad...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just been looking at a &#8216;broken&#8217; site in <acronym title="Internet Explorer 7">IE7</acronym> and helping a friend diagnose what the problems are. I think people tend to assume that if a site renders happily in a bunch of different browsers, but has problems in IE7, then the browser is bad. The default response is then to add some hacks to make IE7 work correctly.</p>
<p>This is a bad way to go. Each problem that I&#8217;ve looked at so far, IE7 is actually rendering correctly based on the instructions it understands. We just fixed a big layout problem where the root cause was a container div not stretching to contain it&#8217;s floated children. However this was the correct behaviour. Based on the instructions that IE7 had parsed and understood, it was rendering correctly.</p>
<p>The fact that those instructions didn&#8217;t arrive at the desired layout was the problem, not the browser rendering. By taking the time to diagnose the problem and understand why it was rendering in a certain way, you can solve the root issue rather than adding a new layer of hacks on top of broken instructions.</p>
<p>Generally IE7 will behave in a very logical way &#8211; it&#8217;s really worth taking the time to figure out why something looks wrong, rather than jumping straight in and hacking.</p>
<p>UPDATE: the particular issue we were looking at was how to get an element to contain it&#8217;s floated children. This has been discussed already on <a title="Clearing floats in IE7" href="http://www.456bereastreet.com/archive/200603/new_clearing_method_needed_for_ie7/">456 Berea Street</a> and <a title="Clearing floats in IE7" href="http://www.stuffandnonsense.co.uk/archives/clearing_floats_without_structural_markup_in_ie7.html">Malarky.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/10/03/think-before-you-hack/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Musings on Mass Uptake of IE7</title>
		<link>http://www.tentonnebaby.com/2006/09/05/musings-on-mass-uptake-of-ie7/</link>
		<comments>http://www.tentonnebaby.com/2006/09/05/musings-on-mass-uptake-of-ie7/#comments</comments>
		<pubDate>Tue, 05 Sep 2006 09:41:22 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[rendering]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/09/05/musings-on-mass-uptake-of-ie7/</guid>
		<description><![CDATA[I was thinking about the impact of the delivery of IE7 via Windows Update and the fact that most people will be in possession of a good quality modern browser in the near future...]]></description>
			<content:encoded><![CDATA[<p>I was thinking about the impact of the delivery of <acronym title="Internet Explorer 7">IE7</acronym> via Windows Update and the fact that most people will be in possession of a good quality modern browser in the near future. I think the shortcomings of the previous version were only really so prominent due to the period of inactivity which allowed the competition to overtake.</p>
<p>I developed a (probably quite sad) affection for Firefox due to the advanced state of it&#8217;s rendering engine and <acronym title="Cascading Style Sheets">CSS</acronym> support, but I think IE7 is actually an amazing achievement. To be in a situation where a number of different browsers running on different platforms can render in a consistent way is a big milestone. I now feel like I should also have an IE7 t-shirt and wear them on alternate days (although wearing <acronym title="Firefox">FF</acronym> regalia to <acronym title="Thames Valley Park">TVP</acronym> does seems a little rebellious).</p>
<p>So it looks like the major pain in web development is slipping away. The fight for web standards is almost starting to seem retro, because of the prominent awareness of all the issues in the general populous. I really enjoyed going to the @Media event this year, but it seemed like the speakers were struggling to cover material that people weren&#8217;t already aware of. This was a massive difference from the same event the previous year.</p>
<p>I&#8217;m extremely interested to see how Firefox develops in response to the IE7 full release. I think competition is extremely healthy, and will ensure that the renewed energy in the development of IE continues in the future.</p>
<p>In CSS terms I think my personal favourite is proper implementation of <em>width</em> and <em>height</em>, and full support for <em>min-width</em> and <em>max-width</em>. Simple, but so welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/09/05/musings-on-mass-uptake-of-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Traitor!</title>
		<link>http://www.tentonnebaby.com/2006/08/25/traitor/</link>
		<comments>http://www.tentonnebaby.com/2006/08/25/traitor/#comments</comments>
		<pubDate>Fri, 25 Aug 2006 06:57:47 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE7]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/08/25/traitor/</guid>
		<description><![CDATA[Last night I finally got around to installing IE7 after reading the release candidate had gone public. A little late to the game, but blah, blah, blah, some excuse goes here...]]></description>
			<content:encoded><![CDATA[<p>Last night I finally got around to installing <acronym title="Internet Explorer 7">IE7</acronym> after reading <a title="Post from IE blog" href="http://blogs.msdn.com/ie/archive/2006/08/24/715752.aspx">the release candidate</a>Â had gone public. A little late to the game, but blah, blah, blah, some excuse goes here&#8230;</p>
<p>I&#8217;ve been following the improvements to the CSS and rendering engine fairly closely, but I hadn&#8217;t really expected the overall product to kick ass. I love Firefox. Really. Even have the t-shirt. I&#8217;m now considering leaving it swimming in the gutter and running off with IE7.</p>
<p>From an initial look it seems to be leagues ahead of the last release. It provides two different zoom modes &#8211; the usual text size increase, but also an Opera style full page zoom. I think my favourite feature is the tab overview page which displays a thumbnail view of each tab that updates in realtime as the pages change.</p>
<p>It seems like the whole attitude towards development of the product has changed over the past year or so, and the commitment to better support of the CSS standard is really encouraging. All of the sites that I&#8217;ve developed just work straight off, because the browser is moving closer to the standard that the sites validate to. That is actually quite aÂ significant achievement for a major new browser release.</p>
<p>I think I was expecting some level of pain with a new flavour of browser on the block, but so far everything looks peachy. Give it a go and see what you think (well&#8230; windows users). I&#8217;ll decide whether or not to stab Firefox in the back over the next few days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/08/25/traitor/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE7 Beta 3 Available</title>
		<link>http://www.tentonnebaby.com/2006/06/30/ie7-beta-3-available/</link>
		<comments>http://www.tentonnebaby.com/2006/06/30/ie7-beta-3-available/#comments</comments>
		<pubDate>Fri, 30 Jun 2006 08:44:02 +0000</pubDate>
		<dc:creator>Oli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[previews]]></category>

		<guid isPermaLink="false">http://www.embeddedstream.com/2006/06/30/ie7-beta-3-available/</guid>
		<description><![CDATA[The final beta for IE7 is now available to download. It still replaces IE6, so you'll probably want to set this up in a virtual PC...]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.microsoft.com/windows/ie/default.mspx">final beta</a> for <acronym title="Internet Explorer">IE</acronym>7 is now available to download. It still replaces IE6, so you&#8217;ll probably want to set this up in a virtual PC.</p>
<p>Information about the new features is available over at the <a href="http://blogs.msdn.com/ie">IE Blog</a>. Still no concrete details around release date for the final version, but it looks like the second half of the year.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tentonnebaby.com/2006/06/30/ie7-beta-3-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

