Skip to content

Commit de6e9e6

Browse files
committed
[css3-conditional] Add Changes section.
1 parent f01d863 commit de6e9e6

3 files changed

Lines changed: 54 additions & 22 deletions

File tree

css3-conditional/Overview.html

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 9 October 2012</h2>
5050
<dt>Previous version:
5151

5252
<dd><a
53-
href="http://www.w3.org/TR/2011/WD-css3-conditional-20110901/">http://www.w3.org/TR/2011/WD-css3-conditional-20110901/</a>
53+
href="http://www.w3.org/TR/2012/WD-css3-conditional-20120911/">http://www.w3.org/TR/2012/WD-css3-conditional-20120911/</a>
5454

5555
<dt>Editors:
5656

@@ -230,6 +230,8 @@ <h2 class="no-num no-toc" id=contents>Table of contents</h2>
230230
function</a>
231231
</ul>
232232

233+
<li class=no-num><a href="#grammar">Grammar</a>
234+
233235
<li><a href="#conformance"><span class=secno>9. </span>Conformance</a>
234236
<ul class=toc>
235237
<li><a href="#base-modules"><span class=secno>9.1. </span>Base
@@ -248,7 +250,7 @@ <h2 class="no-num no-toc" id=contents>Table of contents</h2>
248250
Criteria</a>
249251
</ul>
250252

251-
<li class=no-num><a href="#grammar">Grammar</a>
253+
<li><a href="#changes"><span class=secno>10. </span> Changes</a>
252254

253255
<li class=no-num><a href="#acknowledgments">Acknowledgments</a>
254256

@@ -1231,6 +1233,18 @@ <h3 id=the-css-interface><span class=secno>8.7. </span> The <a
12311233
return true. Otherwise, it must return <code>false</code>.
12321234
</dl>
12331235

1236+
<h2 class=no-num id=grammar>Grammar</h2>
1237+
1238+
<p>In order to allow these new @-rules in CSS style sheets, this
1239+
specification modifies the <code>stylesheet</code> production in the <a
1240+
href="http://www.w3.org/TR/CSS21/grammar.html">Appendix G</a> grammar of
1241+
<a href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> by replacing
1242+
the <code>media</code> production defined in <a href="#CSS21"
1243+
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> with the <code>media</code>
1244+
production defined in this one, and additionally inserting <code>|
1245+
supports_rule | document_rule</code> alongside <code>ruleset | media |
1246+
page</code>.
1247+
12341248
<h2 id=conformance><span class=secno>9. </span>Conformance</h2>
12351249

12361250
<h3 id=base-modules><span class=secno>9.1. </span>Base Modules</h3>
@@ -1387,17 +1401,20 @@ <h3 id=cr-exit-criteria><span class=secno>9.5. </span>CR Exit Criteria</h3>
13871401
<p>The specification will remain Candidate Recommendation for at least six
13881402
months.
13891403

1390-
<h2 class=no-num id=grammar>Grammar</h2>
1404+
<h2 id=changes><span class=secno>10. </span> Changes</h2>
13911405

1392-
<p>In order to allow these new @-rules in CSS style sheets, this
1393-
specification modifies the <code>stylesheet</code> production in the <a
1394-
href="http://www.w3.org/TR/CSS21/grammar.html">Appendix G</a> grammar of
1395-
<a href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> by replacing
1396-
the <code>media</code> production defined in <a href="#CSS21"
1397-
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> with the <code>media</code>
1398-
production defined in this one, and additionally inserting <code>|
1399-
supports_rule | document_rule</code> alongside <code>ruleset | media |
1400-
page</code>.
1406+
<p>The following (non-editorial) changes were made to this specification
1407+
since the <a
1408+
href="http://www.w3.org/TR/2012/WD-css3-conditional-20120911/">11
1409+
September 2012 Working Draft</a>:
1410+
1411+
<ul>
1412+
<li>Corrected the grammar as follows:
1413+
<pre>
1414+
- : SUPPORTS_SYM S+ supports_condition group_rule_body
1415+
+ : SUPPORTS_SYM S* supports_condition group_rule_body
1416+
</pre>
1417+
</ul>
14011418

14021419
<h2 class=no-num id=acknowledgments>Acknowledgments</h2>
14031420

css3-conditional/Overview.src.html

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
2727
<dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
2828

2929
<dt>Previous version:
30-
<dd><a href="http://www.w3.org/TR/2011/WD-css3-conditional-20110901/">http://www.w3.org/TR/2011/WD-css3-conditional-20110901/</a></dd>
30+
<dd><a href="http://www.w3.org/TR/2012/WD-css3-conditional-20120911/">http://www.w3.org/TR/2012/WD-css3-conditional-20120911/</a></dd>
3131

3232
<dt>Editors:
3333
<dd class=vcard><a class=fn href="http://dbaron.org/">L. David Baron</a>,
@@ -951,6 +951,17 @@ <h3 id='the-css-interface'>
951951
</dl>
952952

953953

954+
<h2 class=no-num id="grammar">Grammar</h2>
955+
956+
<p>In order to allow these new @-rules in CSS style sheets, this
957+
specification modifies the <code>stylesheet</code> production in the <a
958+
href="http://www.w3.org/TR/CSS21/grammar.html">Appendix G</a> grammar of
959+
[[!CSS21]] by replacing the <code>media</code> production defined in
960+
[[!CSS21]] with the <code>media</code> production defined in this one,
961+
and additionally inserting <code>| supports_rule | document_rule</code>
962+
alongside <code>ruleset | media | page</code>.</p>
963+
964+
954965
<h2 id="conformance">Conformance</h2>
955966

956967
<h3 id="base-modules">Base Modules</h3>
@@ -1094,15 +1105,19 @@ <h3 id="cr-exit-criteria">CR Exit Criteria</h3>
10941105
<p>The specification will remain Candidate Recommendation for at least
10951106
six months.
10961107

1097-
<h2 class=no-num id="grammar">Grammar</h2>
1108+
<h2 id="changes">
1109+
Changes</h2>
10981110

1099-
<p>In order to allow these new @-rules in CSS style sheets, this
1100-
specification modifies the <code>stylesheet</code> production in the <a
1101-
href="http://www.w3.org/TR/CSS21/grammar.html">Appendix G</a> grammar of
1102-
[[!CSS21]] by replacing the <code>media</code> production defined in
1103-
[[!CSS21]] with the <code>media</code> production defined in this one,
1104-
and additionally inserting <code>| supports_rule | document_rule</code>
1105-
alongside <code>ruleset | media | page</code>.</p>
1111+
<p>The following (non-editorial) changes were made to this specification since the
1112+
<a href="http://www.w3.org/TR/2012/WD-css3-conditional-20120911/">11 September 2012 Working Draft</a>:
1113+
1114+
<ul>
1115+
<li>Corrected the grammar as follows:
1116+
<pre>
1117+
- : SUPPORTS_SYM S+ supports_condition group_rule_body
1118+
+ : SUPPORTS_SYM S* supports_condition group_rule_body
1119+
</pre>
1120+
</ul>
11061121

11071122
<h2 class=no-num id="acknowledgments">Acknowledgments</h2>
11081123

css3-text/Overview.src.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2325,7 +2325,7 @@ <h3 id="hanging-punctuation">
23252325
does not hang, because it fits without hanging.
23262326
However, if ''force-end'' is used, it is forced to hang.
23272327
The justification measures the line without the hanging punctuation.
2328-
Therefore the line is expanded.</p>
2328+
Therefore when the line is expanded, the punctuation is pushed outside the line.</p>
23292329
</div>
23302330

23312331
<h2 id="decoration">

0 commit comments

Comments
 (0)