<?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/"
		>
<channel>
	<title>Comments on: Firefox 3.1 documentation: the march continues</title>
	<atom:link href="http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/</link>
	<description>Bits on the rampage: Eric Shepherd's blog.</description>
	<lastBuildDate>Tue, 27 Jul 2010 00:37:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Gc</title>
		<link>http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/comment-page-1/#comment-82845</link>
		<dc:creator>Gc</dc:creator>
		<pubDate>Wed, 15 Oct 2008 12:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=529#comment-82845</guid>
		<description>media_queries:

bug: &#039;color:&#039; does not have a &lt;color&gt; value, but an integer value.
(It gives log base 2 of min number of intensity levels of any color, like &#039;monochrome:&#039; does for 
number of intensity levels in monochrome displays.)

link: &lt;resolution&gt; could appear on en/CSS/

link: integer values could use &#039;&lt;integer&gt;&#039; rather than &#039;integer&#039;</description>
		<content:encoded><![CDATA[<p>media_queries:</p>
<p>bug: &#8216;color:&#8217; does not have a &lt;color&gt; value, but an integer value.<br />
(It gives log base 2 of min number of intensity levels of any color, like &#8216;monochrome:&#8217; does for<br />
number of intensity levels in monochrome displays.)</p>
<p>link: &lt;resolution&gt; could appear on en/CSS/</p>
<p>link: integer values could use &#8216;&lt;integer&gt;&#8217; rather than &#8216;integer&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sheppy</title>
		<link>http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/comment-page-1/#comment-82843</link>
		<dc:creator>sheppy</dc:creator>
		<pubDate>Tue, 14 Oct 2008 13:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=529#comment-82843</guid>
		<description>I&#039;ve made most (although not all) the changes you suggested.  Feel free to add more examples if you like. :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve made most (although not all) the changes you suggested.  Feel free to add more examples if you like. <img src='http://www.bitstampede.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gc</title>
		<link>http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/comment-page-1/#comment-82842</link>
		<dc:creator>Gc</dc:creator>
		<pubDate>Tue, 14 Oct 2008 13:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=529#comment-82842</guid>
		<description>[After many tries and lost comment typing, I think I have found that
this form simply discards some comments with anything that looks like
a URL in them, with no explanation; others it explains as &#039;spammy&#039;.
So I&#039;ve omitted the MDC host in the URLs below (start with &#039;en/CSS&#039;).]

Thanks for the improvements to media_queries.  A couple other thoughts:

1. Links to media_queries: 

I expected links to the media_queries page on
en/CSS/@media
en/CSS_Reference#.40-rules_and_Comments

The link on 
En/CSS 
seems out of place since the media_queries page is a subpage of
@media, not really an introductory article.

2. Examples: both @media and media_queries should provide an
   introductory example for both uses.  

Currently the @media page has only within &lt;style&gt; or CSS
stylesheet examples, and the media_queries page has only &lt;link&gt;
examples in the introduction (stylesheet examples in some of the
detail sections).

[3. Spec: Too bad there isn&#039;t a (pane) aspect-ratio.

Then maybe CSS could make sure a square chart (apect ratio 1/1) filled
the visible pane area with something like

&lt;code&gt;
@media all and (max-aspect-ratio: 1/1) { 
  body { width: 100%; } /* portrait: fill width */
}
@media all and (min-aspect-ratio: 1/1) { 
  body { height: 100%; }  /* landscape: fill height */
}
&lt;/code&gt;

That might help make flash-like size-to-pane easier to do with CSS. 
]</description>
		<content:encoded><![CDATA[<p>[After many tries and lost comment typing, I think I have found that<br />
this form simply discards some comments with anything that looks like<br />
a URL in them, with no explanation; others it explains as 'spammy'.<br />
So I've omitted the MDC host in the URLs below (start with 'en/CSS').]</p>
<p>Thanks for the improvements to media_queries.  A couple other thoughts:</p>
<p>1. Links to media_queries: </p>
<p>I expected links to the media_queries page on<br />
en/CSS/@media<br />
en/CSS_Reference#.40-rules_and_Comments</p>
<p>The link on<br />
En/CSS<br />
seems out of place since the media_queries page is a subpage of<br />
@media, not really an introductory article.</p>
<p>2. Examples: both @media and media_queries should provide an<br />
   introductory example for both uses.  </p>
<p>Currently the @media page has only within &lt;style&gt; or CSS<br />
stylesheet examples, and the media_queries page has only &lt;link&gt;<br />
examples in the introduction (stylesheet examples in some of the<br />
detail sections).</p>
<p>[3. Spec: Too bad there isn't a (pane) aspect-ratio.</p>
<p>Then maybe CSS could make sure a square chart (apect ratio 1/1) filled<br />
the visible pane area with something like</p>
<p><code><br />
@media all and (max-aspect-ratio: 1/1) {<br />
  body { width: 100%; } /* portrait: fill width */<br />
}<br />
@media all and (min-aspect-ratio: 1/1) {<br />
  body { height: 100%; }  /* landscape: fill height */<br />
}<br />
</code></p>
<p>That might help make flash-like size-to-pane easier to do with CSS.<br />
]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Scott Scheel</title>
		<link>http://www.bitstampede.com/2008/10/13/firefox-31-documentation-the-march-continues/comment-page-1/#comment-82834</link>
		<dc:creator>Ryan Scott Scheel</dc:creator>
		<pubDate>Tue, 14 Oct 2008 01:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.bitstampede.com/?p=529#comment-82834</guid>
		<description>Thanks for all your hard work.  Your reminder is a little false.  You need to attribute who did the actual work, but you can use it for free anyways.  So, thanks to roc also.</description>
		<content:encoded><![CDATA[<p>Thanks for all your hard work.  Your reminder is a little false.  You need to attribute who did the actual work, but you can use it for free anyways.  So, thanks to roc also.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
