Skip to content

Commit fe2cced

Browse files
committed
(Merge)
2 parents ed6403e + e244406 commit fe2cced

File tree

15 files changed

+796
-898
lines changed

15 files changed

+796
-898
lines changed

.htaccess

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ RewriteRule ^css-transitions-1/(.*)$ css-transitions/$1
169169
RewriteRule ^css-ui-3/(.*)$ css-ui/$1
170170
RewriteRule ^css-values-3/(.*)$ css-values/$1
171171
RewriteRule ^css-variables-1/(.*)$ css-variables/$1
172+
RewriteRule ^css-will-change-1/(.*)$ css-will-change/$1
172173
RewriteRule ^css-writing-modes-3/(.*)$ css-writing-modes/$1
173174

174175
RewriteRule ^cssom-1/(.*)$ cssom/$1

css-conditional/Overview.html

+20-20
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
rel=dcterms.rights>
1313
<meta content="CSS Conditional Rules Module Level 3" name=dcterms.title>
1414
<meta content=text name=dcterms.type>
15-
<meta content=2013-11-09 name=dcterms.date>
15+
<meta content=2014-05-02 name=dcterms.date>
1616
<meta content="L. David Baron" name=dcterms.creator>
1717
<meta content=W3C name=dcterms.publisher>
1818
<meta content="http://dev.w3.org/csswg/css3-conditional/"
@@ -33,13 +33,13 @@
3333
<h1 class=p-name>CSS Conditional Rules Module Level 3</h1>
3434

3535
<h2 class="no-num no-toc">Editor's Draft <span class=dt-updated><span
36-
class=value-title title=20131109> 9 November 2013</span></span></h2>
36+
class=value-title title=20140502> 2 May 2014</span></span></h2>
3737

3838
<dl>
3939
<dt>This version:
4040

4141
<dd><a class=u-url href="http://dev.w3.org/csswg/css3-conditional/">
42-
http://www.w3.org/TR/2013/ED-css3-conditional-20131109/</a>
42+
http://www.w3.org/TR/2014/ED-css3-conditional-20140502/</a>
4343

4444
<dt>Latest version:
4545

@@ -88,7 +88,7 @@ <h2 class="no-num no-toc">Editor's Draft <span class=dt-updated><span
8888
<!--begin-copyright-->
8989
<p class=copyright><a
9090
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
91-
rel=license>Copyright</a> © 2013 <a href="http://www.w3.org/"><abbr
91+
rel=license>Copyright</a> © 2014 <a href="http://www.w3.org/"><abbr
9292
title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a
9393
href="http://www.csail.mit.edu/"><abbr
9494
title="Massachusetts Institute of Technology">MIT</abbr></a>, <a
@@ -787,32 +787,32 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
787787
<div class=example>
788788
<p>For example, the following rule
789789

790-
<pre>@supports ( display: flexbox ) {
791-
body, #navigation, #content { display: flexbox; }
790+
<pre>@supports ( display: flex ) {
791+
body, #navigation, #content { display: flex; }
792792
#navigation { background: blue; color: white; }
793793
#article { background: white; color: black; }
794794
}</pre>
795795

796796
<p>applies the rules inside the ‘<a href="#at-ruledef-supports"><code
797797
class=css>@supports</code></a>’ rule only when ‘<code
798-
class=css>display: flexbox</code>’ is supported.
798+
class=css>display: flex</code>’ is supported.
799799
</div>
800800

801801
<div class=example>
802802
<p>The following example shows an additional ‘<a
803803
href="#at-ruledef-supports"><code class=css>@supports</code></a>’ rule
804804
that can be used to provide an alternative for when ‘<code
805-
class=css>display: flexbox</code>’ is not supported:
805+
class=css>display: flex</code>’ is not supported:
806806

807-
<pre>@supports not ( display: flexbox ) {
807+
<pre>@supports not ( display: flex ) {
808808
body { width: 100%; height: 100%; background: white; color: black; }
809809
#navigation { width: 25%; }
810810
#article { width: 75%; }
811811
}</pre>
812812

813813
<p>Note that the ‘<code class=property>width</code>’ declarations may
814-
be harmful to the flexbox-based layout, so it is important that they be
815-
present only in the non-flexbox styles.
814+
be harmful to the flex-based layout, so it is important that they be
815+
present only in the non-flex styles.
816816
</div>
817817

818818
<div class=example>
@@ -891,13 +891,13 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
891891
<div class=example>
892892
<p>For example, the following rule is not valid:
893893

894-
<pre class=illegal>@supports display: flexbox {
894+
<pre class=illegal>@supports display: flex {
895895
// ...
896896
}</pre>
897897

898898
<p>Instead, authors must write:
899899

900-
<pre>@supports (display: flexbox) {
900+
<pre>@supports (display: flex) {
901901
// ...
902902
}</pre>
903903
</div>
@@ -909,7 +909,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
909909
<div class=example>
910910
<p>For example, authors may write:
911911

912-
<pre>@supports ((display: flexbox)) {
912+
<pre>@supports ((display: flex)) {
913913
// ...
914914
}</pre>
915915
</div>
@@ -921,7 +921,7 @@ <h2 id=at-supports><span class=secno>6. </span>Feature queries: the ‘<a
921921
<div class=example>
922922
<p>For example, the following rule is valid:
923923

924-
<pre>@supports (display: flexbox !important) {
924+
<pre>@supports (display: flex !important) {
925925
// ...
926926
}</pre>
927927
</div>
@@ -1637,8 +1637,8 @@ <h3 class=no-num id=normative-references>Normative references</h3>
16371637
<dt id=ref-RFC2119>[RFC2119]
16381638

16391639
<dd>S. Bradner. <a href="http://www.ietf.org/rfc/rfc2119.txt"><cite>Key
1640-
words for use in RFCs to Indicate Requirement Levels.</cite></a> Internet
1641-
RFC 2119. URL: <a
1640+
words for use in RFCs to Indicate Requirement Levels.</cite></a> RFC
1641+
2119. URL: <a
16421642
href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a>
16431643
</dd>
16441644
<!---->
@@ -1666,10 +1666,10 @@ <h3 class=no-num id=other-references>Other references</h3>
16661666
<dt id=ref-CSS3-TRANSITIONS>[CSS3-TRANSITIONS]
16671667

16681668
<dd>Dean Jackson; et al. <a
1669-
href="http://www.w3.org/TR/2013/WD-css3-transitions-20130212/"><cite>CSS
1670-
Transitions.</cite></a> 12 February 2013. W3C Working Draft. (Work in
1669+
href="http://www.w3.org/TR/2013/WD-css3-transitions-20131119/"><cite>CSS
1670+
Transitions.</cite></a> 19 November 2013. W3C Working Draft. (Work in
16711671
progress.) URL: <a
1672-
href="http://www.w3.org/TR/2013/WD-css3-transitions-20130212/">http://www.w3.org/TR/2013/WD-css3-transitions-20130212/</a>
1672+
href="http://www.w3.org/TR/2013/WD-css3-transitions-20131119/">http://www.w3.org/TR/2013/WD-css3-transitions-20131119/</a>
16731673
</dd>
16741674
<!---->
16751675
</dl>

css-conditional/Overview.src.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -525,27 +525,27 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
525525

526526
<div class="example">
527527
<p>For example, the following rule</p>
528-
<pre>@supports ( display: flexbox ) {
529-
body, #navigation, #content { display: flexbox; }
528+
<pre>@supports ( display: flex ) {
529+
body, #navigation, #content { display: flex; }
530530
#navigation { background: blue; color: white; }
531531
#article { background: white; color: black; }
532532
}</pre>
533533
<p>applies the rules inside the '@supports' rule only when
534-
''display: flexbox'' is supported.</p>
534+
''display: flex'' is supported.</p>
535535
</div>
536536

537537
<div class="example">
538538
<p>The following example shows an additional '@supports' rule that can
539-
be used to provide an alternative for when ''display: flexbox'' is not
539+
be used to provide an alternative for when ''display: flex'' is not
540540
supported:</p>
541-
<pre>@supports not ( display: flexbox ) {
541+
<pre>@supports not ( display: flex ) {
542542
body { width: 100%; height: 100%; background: white; color: black; }
543543
#navigation { width: 25%; }
544544
#article { width: 75%; }
545545
}</pre>
546546
<p>Note that the 'width' declarations may be harmful to the
547-
flexbox-based layout, so it is important that they be present only in
548-
the non-flexbox styles.</p>
547+
flex-based layout, so it is important that they be present only in
548+
the non-flex styles.</p>
549549
</div>
550550

551551
<div class="example">
@@ -607,11 +607,11 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
607607

608608
<div class="example">
609609
<p>For example, the following rule is not valid:
610-
<pre class="illegal">@supports display: flexbox {
610+
<pre class="illegal">@supports display: flex {
611611
// ...
612612
}</pre>
613613
<p>Instead, authors must write:</p>
614-
<pre>@supports (display: flexbox) {
614+
<pre>@supports (display: flex) {
615615
// ...
616616
}</pre>
617617
</div>
@@ -623,7 +623,7 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
623623

624624
<div class="example">
625625
<p>For example, authors may write:</p>
626-
<pre>@supports ((display: flexbox)) {
626+
<pre>@supports ((display: flex)) {
627627
// ...
628628
}</pre>
629629
</div>
@@ -633,7 +633,7 @@ <h2 id="at-supports">Feature queries: the '@supports' rule</h2>
633633

634634
<div class="example">
635635
<p>For example, the following rule is valid:
636-
<pre>@supports (display: flexbox !important) {
636+
<pre>@supports (display: flex !important) {
637637
// ...
638638
}</pre>
639639
</div>

0 commit comments

Comments
 (0)