<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Honest-To-Gosh Scalable Vector Graphics</title>
	<atom:link href="http://ryancannon.com/2006/11/10/h2g-svg/feed" rel="self" type="application/rss+xml" />
	<link>http://ryancannon.com/2006/11/10/h2g-svg</link>
	<description>Wordslinger, dissident, webwright</description>
	<lastBuildDate>Wed, 21 Jul 2010 02:24:45 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan</title>
		<link>http://ryancannon.com/2006/11/10/h2g-svg/comment-page-1#comment-6255</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 10 Mar 2007 01:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://ryancannon.com/2006/11/10/h2g-svg#comment-6255</guid>
		<description>&lt;p&gt;@Jeff: Not quite. I checked it in OmniWeb (WebKit), Firefox 2, and Opera. It breaks Opera and doesn&#039;t fix the problem in the other two. Check it out with the &lt;a href=&quot;/wp-content/attic/2007/03/svgtest.html&quot; rel=&quot;nofollow&quot;&gt;scaling &lt;dfn&gt;&lt;abbr title=&quot;Scalable Vector Graphics&quot;&gt;SVG&lt;/abbr&gt;&lt;/dfn&gt; in scaling &lt;abbr title=&quot;HyperText Markup Language&quot;&gt;HTML&lt;/abbr&gt; test&lt;/a&gt;. Without explicitly setting the width and height inside the &lt;abbr&gt;SVG&lt;/abbr&gt;, there is no intrinsic height for &lt;code&gt;&lt;html:object&gt;&lt;/code&gt; to use in order to determine the aspect ratio.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Jeff: Not quite. I checked it in OmniWeb (WebKit), Firefox 2, and Opera. It breaks Opera and doesn&#8217;t fix the problem in the other two. Check it out with the <a href="/wp-content/attic/2007/03/svgtest.html" rel="nofollow">scaling <dfn><abbr title="Scalable Vector Graphics">SVG</abbr></dfn> in scaling <abbr title="HyperText Markup Language">HTML</abbr> test</a>. Without explicitly setting the width and height inside the <abbr>SVG</abbr>, there is no intrinsic height for <code>&lt;html:object&gt;</code> to use in order to determine the aspect ratio.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://ryancannon.com/2006/11/10/h2g-svg/comment-page-1#comment-6053</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Mon, 05 Mar 2007 15:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://ryancannon.com/2006/11/10/h2g-svg#comment-6053</guid>
		<description>&lt;p&gt;Ah, I read the Moz bug now and re-read this statement:  &quot;This makes it impossible to insert the image into a liquid layout where it fills the given horizontal space&quot;.  I agree with this, and I think it&#039;s actually a browser layout problem, not necessarily a SVG problem.&lt;/p&gt;

&lt;p&gt;If you change the size of the width/height in your SVG to 100%, this &lt;em&gt;should&lt;/em&gt; work - the browser &lt;em&gt;should&lt;/em&gt; size the SVG to whatever the containing element&#039;s size is.  Whether it does or not, is probably an implementation bug.  (But a bug, nonetheless).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ah, I read the Moz bug now and re-read this statement:  &#8220;This makes it impossible to insert the image into a liquid layout where it fills the given horizontal space&#8221;.  I agree with this, and I think it&#8217;s actually a browser layout problem, not necessarily a SVG problem.</p>
<p>If you change the size of the width/height in your SVG to 100%, this <em>should</em> work &#8211; the browser <em>should</em> size the SVG to whatever the containing element&#8217;s size is.  Whether it does or not, is probably an implementation bug.  (But a bug, nonetheless).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://ryancannon.com/2006/11/10/h2g-svg/comment-page-1#comment-6052</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Mon, 05 Mar 2007 15:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://ryancannon.com/2006/11/10/h2g-svg#comment-6052</guid>
		<description>&lt;p&gt;Actually, the point of a &quot;scalable&quot; image is that it HAS NO INTRINSIC SIZE.  You can display it at any resolution you want.  So the solution that will work today is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the SVG should have width=&quot;100%&quot; and height=&quot;100%&quot; (note the percentages here, it means &quot;completely fill up the element that contains the SVG&quot;&lt;/li&gt;
&lt;li&gt;the HTML:object element should specify the height/width it wants:  &lt;object type=&quot;image/svg+xml&quot; width=&quot;300px&quot; height=&quot;300px&quot;....&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Hope this helps you out - deployment is possible today :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually, the point of a &#8220;scalable&#8221; image is that it HAS NO INTRINSIC SIZE.  You can display it at any resolution you want.  So the solution that will work today is:</p>
<ul>
<li>the SVG should have width=&#8221;100%&#8221; and height=&#8221;100%&#8221; (note the percentages here, it means &#8220;completely fill up the element that contains the SVG&#8221;</li>
<li>the HTML:object element should specify the height/width it wants:  &lt;object type=&#8221;image/svg+xml&#8221; width=&#8221;300px&#8221; height=&#8221;300px&#8221;&#8230;.</li>
</ul>
<p>Hope this helps you out &#8211; deployment is possible today <img src='http://ryancannon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://ryancannon.com/2006/11/10/h2g-svg/comment-page-1#comment-2021</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Sat, 11 Nov 2006 14:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://ryancannon.com/2006/11/10/h2g-svg#comment-2021</guid>
		<description>&lt;p&gt;I did. ViewBox only sets up the coordinate system, is does not say anything about the size of the image.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I did. ViewBox only sets up the coordinate system, is does not say anything about the size of the image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stelt</title>
		<link>http://ryancannon.com/2006/11/10/h2g-svg/comment-page-1#comment-2015</link>
		<dc:creator>stelt</dc:creator>
		<pubDate>Sat, 11 Nov 2006 13:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://ryancannon.com/2006/11/10/h2g-svg#comment-2015</guid>
		<description>&lt;p&gt;Did you set viewBox?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Did you set viewBox?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
