- From: Florian Rivoal via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 15 Feb 2012 16:27:06 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-mediaqueries
In directory hutz:/tmp/cvs-serv30849
Modified Files:
Overview.html Overview.src.html
Log Message:
Fix an example contradicting the normative text.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-mediaqueries/Overview.html,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- Overview.html 14 Feb 2012 16:30:43 -0000 1.62
+++ Overview.html 15 Feb 2012 16:27:04 -0000 1.63
@@ -24,13 +24,13 @@
<h1 id=media-queries>Media Queries</h1>
- <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 14 February 2012</h2>
+ <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 15 February 2012</h2>
<dl>
<dt>This Version:
<dd><a
- href="http://www.w3.org/TR/2012/ED-css3-mediaqueries-20120214//">http://www.w3.org/TR/2012/ED-css3-mediaqueries-20120214/</a>
+ href="http://www.w3.org/TR/2012/ED-css3-mediaqueries-20120215//">http://www.w3.org/TR/2012/ED-css3-mediaqueries-20120215/</a>
<dt>Latest Version:
@@ -789,7 +789,7 @@
screen and (min-width: 20em) { … }</code></pre>
<p>The ‘<code class=css>em</code>’ value is relative to the
- font size of the root element.</p>
+ initial value of ‘font-size’.</p>
</div>
<h3 id=height><span class=secno>4.2. </span>height</h3>
@@ -1183,6 +1183,15 @@
class=css>centimeter</code>’</ins><del>cm</del>
</dl>
</blockquote>
+
+ <li><a href="#width">Section 4.1</a>: Adjust mistaken non normative
+ wording to match correct normative wording from <a href="#units">Section
+ 6</a>.
+ <blockquote>
+ <p>The ‘<code class=css>em</code>’ value is relative to the
+ <del>font size of the root element</del><ins>initial value of
+ ‘font-size’.</ins>.
+ </blockquote>
</ul>
<h2 class=no-num id=acknowledgments>Acknowledgments</h2>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-mediaqueries/Overview.src.html,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- Overview.src.html 14 Feb 2012 16:30:43 -0000 1.59
+++ Overview.src.html 15 Feb 2012 16:27:04 -0000 1.60
@@ -631,8 +631,8 @@
<pre><code>@media handheld and (min-width: 20em),
screen and (min-width: 20em) { … }</code></pre>
-<p>The ''em'' value is relative to the font size of the root
-element.</p>
+<p>The ''em'' value is relative to the initial value of
+‘font-size’.</p>
</div>
@@ -1031,6 +1031,12 @@
<dd>dots per <ins>CSS ''centimeter''</ins><del>cm</del></dd>
</dl>
</blockquote>
+ <li><a href="#width">Section 4.1</a>: Adjust mistaken non normative wording
+ to match correct normative wording from <a href="#units">Section 6</a>.
+ <blockquote>
+ <p>The ''em'' value is relative to the <del>font size of the root
+ element</del><ins>initial value of ‘font-size’.</ins>.</p>
+ </blockquote>
</ul>
<h2 class="no-num" id="acknowledgments">Acknowledgments</h2>
Received on Wednesday, 15 February 2012 16:27:17 UTC