Skip to content

Commit a7f9f97

Browse files
committed
[cssom] Editorial clean up.
1 parent 383d918 commit a7f9f97

2 files changed

Lines changed: 21 additions & 19 deletions

File tree

cssom/Overview.html

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h1 id="cssom">CSS Object Model (CSSOM)</h1>
1818

1919
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
2020

21-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 28 October 2012</h2>
21+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 4 February 2013</h2>
2222

2323
<dl>
2424

@@ -49,7 +49,7 @@ <h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 28 October 2012</h2>
4949

5050

5151
<!--begin-copyright-->
52-
<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>
52+
<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>
5353
<!--end-copyright-->
5454

5555
</div>
@@ -83,7 +83,7 @@ <h2 class="no-num no-toc" id="sotd">Status of this Document</h2>
8383
can be found in the
8484
<a href="http://www.w3.org/TR/">W3C technical reports index at http://www.w3.org/TR/.</a></em>
8585

86-
<p class="dontpublish">This is the 28 October 2012 Editor's Draft of CSSOM. Please send comments to
86+
<p class="dontpublish">This is the 4 February 2013 Editor's Draft of CSSOM. Please send comments to
8787
<a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
8888
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
8989
with <samp>[cssom]</samp> at the start of the subject line.
@@ -451,11 +451,11 @@ <h3 id="serializing-media-queries"><span class="secno">4.2 </span>Serializing Me
451451
<tr><th>Input<th>Output
452452
<tbody>
453453
<tr>
454-
<td><code>not screen and (min-WIDTH:5px) AND (max-width:40px )</code>
455-
<td><code>not screen and (max-width: 40px) and (min-width: 5px)</code>
454+
<td><pre>not screen and (min-WIDTH:5px) AND (max-width:40px)</pre>
455+
<td><pre>not screen and (max-width: 40px) and (min-width: 5px)</pre>
456456
<tr>
457-
<td><code>all and (color) and (color)</code>
458-
<td><code>(color)</code>
457+
<td><pre>all and (color) and (color)</pre>
458+
<td><pre>(color)</pre>
459459
</table>
460460
</div>
461461

@@ -856,8 +856,8 @@ <h3 id="css-style-sheets"><span class="secno">6.1 </span>CSS Style Sheets</h3>
856856
<div class="example">
857857
<p>In the following, the <a href="#style-sheet-title">style sheet title</a> is non-empty
858858
for the first style sheet, but is empty for the second and third style sheets.</p>
859-
<pre>&lt;style title="papaya"&gt;
860-
body { background: papayawhip; }
859+
<pre>&lt;style title="papaya whip"&gt;
860+
body { background: #ffefd5; }
861861
&lt;/style&gt;</pre>
862862
<pre>&lt;style title=""&gt;
863863
body { background: orange; }
@@ -876,9 +876,9 @@ <h3 id="css-style-sheets"><span class="secno">6.1 </span>CSS Style Sheets</h3>
876876
<p>The following <span title="style sheet">style sheets</span> have
877877
their <a href="#style-sheet-alternate-flag">style sheet alternate flag</a> set:</p>
878878

879-
<pre><code>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,…"?&gt;</code></pre>
879+
<pre>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,…"?&gt;</pre>
880880

881-
<pre><code>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,…"&gt;</code></pre>
881+
<pre>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,…"&gt;</pre>
882882
</div>
883883
</dd>
884884

@@ -1610,6 +1610,7 @@ <h3 id="css-rules"><span class="secno">6.4 </span>CSS Rules</h3>
16101610
<li>The string "<code>;</code>", i.e., SEMICOLON (U+003B).
16111611
</ol>
16121612
<div class="example">
1613+
<pre>@import url("import.css");</pre>
16131614
<pre>@import url("print.css") print;</pre>
16141615
</div>
16151616
</dd>

cssom/cssom-source

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -381,11 +381,11 @@
381381
<tr><th>Input<th>Output
382382
<tbody>
383383
<tr>
384-
<td><code>not screen and (min-WIDTH:5px) AND (max-width:40px )</code>
385-
<td><code>not screen and (max-width: 40px) and (min-width: 5px)</code>
384+
<td><pre>not screen and (min-WIDTH:5px) AND (max-width:40px)</pre>
385+
<td><pre>not screen and (max-width: 40px) and (min-width: 5px)</pre>
386386
<tr>
387-
<td><code>all and (color) and (color)</code>
388-
<td><code>(color)</code>
387+
<td><pre>all and (color) and (color)</pre>
388+
<td><pre>(color)</pre>
389389
</table>
390390
</div>
391391

@@ -747,8 +747,8 @@
747747
<div class="example">
748748
<p>In the following, the <span>style sheet title</span> is non-empty
749749
for the first style sheet, but is empty for the second and third style sheets.</p>
750-
<pre>&lt;style title="papaya">
751-
body { background: papayawhip; }
750+
<pre>&lt;style title="papaya whip">
751+
body { background: #ffefd5; }
752752
&lt;/style></pre>
753753
<pre>&lt;style title="">
754754
body { background: orange; }
@@ -767,9 +767,9 @@
767767
<p>The following <span title="style sheet">style sheets</span> have
768768
their <span>style sheet alternate flag</span> set:</p>
769769

770-
<pre><code>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,&hellip;"?></code></pre>
770+
<pre>&lt;?xml-stylesheet alternate="yes" title="x" href="data:text/css,&hellip;"?></pre>
771771

772-
<pre><code>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,&hellip;"></code></pre>
772+
<pre>&lt;link rel="alternate stylesheet" title="x" href="data:text/css,&hellip;"></pre>
773773
</div>
774774
</dd>
775775

@@ -1380,6 +1380,7 @@
13801380
<li>The string "<code>;</code>", i.e., SEMICOLON (U+003B).
13811381
</ol>
13821382
<div class="example">
1383+
<pre>@import url("import.css");</pre>
13831384
<pre>@import url("print.css") print;</pre>
13841385
</div>
13851386
</dd>

0 commit comments

Comments
 (0)