[cssom] Editorial clean up.

Mon, 04 Feb 2013 11:50:40 -0700

author
Glenn Adams <glenn@skynav.com>
date
Mon, 04 Feb 2013 11:50:40 -0700
changeset 7306
b98722431f64
parent 7305
5235590e3e32
child 7307
e06243ea0881

[cssom] Editorial clean up.

cssom/Overview.html file | annotate | diff | comparison | revisions
cssom/cssom-source file | annotate | diff | comparison | revisions
     1.1 --- a/cssom/Overview.html	Mon Feb 04 09:49:54 2013 -0800
     1.2 +++ b/cssom/Overview.html	Mon Feb 04 11:50:40 2013 -0700
     1.3 @@ -18,7 +18,7 @@
     1.4  
     1.5     <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
     1.6  
     1.7 -   <h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 28 October 2012</h2>
     1.8 +   <h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 4 February 2013</h2>
     1.9  
    1.10     <dl>
    1.11  
    1.12 @@ -49,7 +49,7 @@
    1.13  
    1.14     
    1.15  <!--begin-copyright-->
    1.16 -<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2012 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
    1.17 +<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2013 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts Institute of Technology">MIT</abbr></a>, <a href="http://www.ercim.eu/"><abbr title="European Research Consortium for Informatics and Mathematics">ERCIM</abbr></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
    1.18  <!--end-copyright-->
    1.19  
    1.20    </div>
    1.21 @@ -83,7 +83,7 @@
    1.22    can be found in the
    1.23    <a href="http://www.w3.org/TR/">W3C technical reports index at http://www.w3.org/TR/.</a></em>
    1.24  
    1.25 -  <p class="dontpublish">This is the 28 October 2012 Editor's Draft of CSSOM. Please send comments to
    1.26 +  <p class="dontpublish">This is the 4 February 2013 Editor's Draft of CSSOM. Please send comments to
    1.27    <a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
    1.28    (<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
    1.29    with <samp>[cssom]</samp> at the start of the subject line.
    1.30 @@ -451,11 +451,11 @@
    1.31       <tr><th>Input<th>Output
    1.32      <tbody>
    1.33       <tr>
    1.34 -      <td><code>not screen and (min-WIDTH:5px) AND (max-width:40px  )</code>
    1.35 -      <td><code>not screen and (max-width: 40px) and (min-width: 5px)</code>
    1.36 +      <td><pre>not screen and (min-WIDTH:5px) AND (max-width:40px)</pre>
    1.37 +      <td><pre>not screen and (max-width: 40px) and (min-width: 5px)</pre>
    1.38       <tr>
    1.39 -      <td><code>all and (color) and (color)</code>
    1.40 -      <td><code>(color)</code>
    1.41 +      <td><pre>all and (color) and (color)</pre>
    1.42 +      <td><pre>(color)</pre>
    1.43     </table>
    1.44    </div>
    1.45  
    1.46 @@ -856,8 +856,8 @@
    1.47      <div class="example">
    1.48       <p>In the following, the <a href="#style-sheet-title">style sheet title</a> is non-empty
    1.49       for the first style sheet, but is empty for the second and third style sheets.</p>
    1.50 -     <pre>&lt;style title="papaya"&gt;
    1.51 -  body { background: papayawhip; }
    1.52 +     <pre>&lt;style title="papaya whip"&gt;
    1.53 +  body { background: #ffefd5; }
    1.54  &lt;/style&gt;</pre>
    1.55       <pre>&lt;style title=""&gt;
    1.56    body { background: orange; }
    1.57 @@ -876,9 +876,9 @@
    1.58       <p>The following <span title="style sheet">style sheets</span> have
    1.59       their <a href="#style-sheet-alternate-flag">style sheet alternate flag</a> set:</p>
    1.60  
    1.61 -     <pre><code>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,…"?&gt;</code></pre>
    1.62 -
    1.63 -     <pre><code>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,…"&gt;</code></pre>
    1.64 +     <pre>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,…"?&gt;</pre>
    1.65 +
    1.66 +     <pre>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,…"&gt;</pre>
    1.67      </div>
    1.68     </dd>
    1.69  
    1.70 @@ -1610,6 +1610,7 @@
    1.71       <li>The string "<code>;</code>", i.e., SEMICOLON (U+003B).
    1.72      </ol>
    1.73      <div class="example">
    1.74 +    <pre>@import url("import.css");</pre>
    1.75      <pre>@import url("print.css") print;</pre>
    1.76      </div>
    1.77     </dd>
     2.1 --- a/cssom/cssom-source	Mon Feb 04 09:49:54 2013 -0800
     2.2 +++ b/cssom/cssom-source	Mon Feb 04 11:50:40 2013 -0700
     2.3 @@ -381,11 +381,11 @@
     2.4       <tr><th>Input<th>Output
     2.5      <tbody>
     2.6       <tr>
     2.7 -      <td><code>not screen and (min-WIDTH:5px) AND (max-width:40px  )</code>
     2.8 -      <td><code>not screen and (max-width: 40px) and (min-width: 5px)</code>
     2.9 +      <td><pre>not screen and (min-WIDTH:5px) AND (max-width:40px)</pre>
    2.10 +      <td><pre>not screen and (max-width: 40px) and (min-width: 5px)</pre>
    2.11       <tr>
    2.12 -      <td><code>all and (color) and (color)</code>
    2.13 -      <td><code>(color)</code>
    2.14 +      <td><pre>all and (color) and (color)</pre>
    2.15 +      <td><pre>(color)</pre>
    2.16     </table>
    2.17    </div>
    2.18  
    2.19 @@ -747,8 +747,8 @@
    2.20      <div class="example">
    2.21       <p>In the following, the <span>style sheet title</span> is non-empty
    2.22       for the first style sheet, but is empty for the second and third style sheets.</p>
    2.23 -     <pre>&lt;style title="papaya">
    2.24 -  body { background: papayawhip; }
    2.25 +     <pre>&lt;style title="papaya whip">
    2.26 +  body { background: #ffefd5; }
    2.27  &lt;/style></pre>
    2.28       <pre>&lt;style title="">
    2.29    body { background: orange; }
    2.30 @@ -767,9 +767,9 @@
    2.31       <p>The following <span title="style sheet">style sheets</span> have
    2.32       their <span>style sheet alternate flag</span> set:</p>
    2.33  
    2.34 -     <pre><code>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,&hellip;"?></code></pre>
    2.35 +     <pre>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,&hellip;"?></pre>
    2.36  
    2.37 -     <pre><code>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,&hellip;"></code></pre>
    2.38 +     <pre>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,&hellip;"></pre>
    2.39      </div>
    2.40     </dd>
    2.41  
    2.42 @@ -1380,6 +1380,7 @@
    2.43       <li>The string "<code>;</code>", i.e., SEMICOLON (U+003B).
    2.44      </ol>
    2.45      <div class="example">
    2.46 +    <pre>@import url("import.css");</pre>
    2.47      <pre>@import url("print.css") print;</pre>
    2.48      </div>
    2.49     </dd>

mercurial