csswg/css3-conditional Overview.html,1.45,1.46 Overview.src.html,1.45,1.46

Update of /sources/public/csswg/css3-conditional
In directory hutz:/tmp/cvs-serv20774

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Fix class name used for illegal examples.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-conditional/Overview.html,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- Overview.html	25 Nov 2011 00:18:22 -0000	1.45
+++ Overview.html	25 Nov 2011 00:20:28 -0000	1.46
@@ -720,7 +720,7 @@
   <div class=example>
    <p>For example, the following rule is not valid:
 
-   <pre class=illegal-example>@supports (transition-property: color) or
+   <pre class=illegal>@supports (transition-property: color) or
           (animation-name: foo) and
           (transform: rotate(10deg)) {
   // ...
@@ -749,7 +749,7 @@
   <div class=example>
    <p>For example, the following rule is not valid:
 
-   <pre class=illegal-example>@supports display: flexbox {
+   <pre class=illegal>@supports display: flexbox {
   // ...
 }</pre>
 

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-conditional/Overview.src.html,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- Overview.src.html	25 Nov 2011 00:18:22 -0000	1.45
+++ Overview.src.html	25 Nov 2011 00:20:28 -0000	1.46
@@ -517,7 +517,7 @@
 
 <div class="example">
 <p>For example, the following rule is not valid:
-<pre class="illegal-example">@supports (transition-property: color) or
+<pre class="illegal">@supports (transition-property: color) or
           (animation-name: foo) and
           (transform: rotate(10deg)) {
   // ...
@@ -540,7 +540,7 @@
 
 <div class="example">
 <p>For example, the following rule is not valid:
-<pre class="illegal-example">@supports display: flexbox {
+<pre class="illegal">@supports display: flexbox {
   // ...
 }</pre>
 <p>Instead, authors must write:</p>

Received on Friday, 25 November 2011 00:20:35 UTC