csswg/css3-speech Overview.html,1.79,1.80 Overview.src.html,1.80,1.81

Update of /sources/public/csswg/css3-speech
In directory hutz:/tmp/cvs-serv24153

Modified Files:
	Overview.html Overview.src.html 
Log Message:
improved example


Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-speech/Overview.html,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- Overview.html	13 Jul 2011 21:59:24 -0000	1.79
+++ Overview.html	13 Jul 2011 22:07:19 -0000	1.80
@@ -2383,7 +2383,9 @@
       <e3>
         <e4>
           <e5>
-          ...
+            <e6>
+            ...
+            </e6>
           </e5>
         </e4>
       </e3>
@@ -2399,26 +2401,37 @@
                                depends on the active voice) */
 
 e1 { voice-range: +25%; } /* the computed value is
-                          ['medium' + 0.25 times the frequency
-                          corresponding to 'medium'] */
+                          ['medium' + 25%], which will resolve
+                          to the frequency corresponding to 'medium'
+                          plus 0.25 times the frequency
+                          corresponding to 'medium' */
 
-e2 { voice-range: inherit; /* this could be omitted,
+e2 { voice-range: +10Hz; } /* the computed value is
+                          ['medium' + 25% + 10Hz], which will resolve
+                          to the frequency corresponding to 'medium'
+                          plus 0.25 times the frequency
+                          corresponding to 'medium',
+                          plus another 10 Hertz*/
+                          
+e3 { voice-range: inherit; /* this could be omitted,
                            but we explicitly specify it for clarity purposes */
                            
      voice-family: "another-voice"; } /* the computed value is the same as
-                              for "e1", but here the voice is different,
+                              for "e2", but here the voice is different,
                               so once calculated, the used absolute frequency
                               may be completely different
                               due to voice-dependent discrepancies */
 
-e3 { voice-range: 200Hz absolute; } /* override with an absolute frequency
+e4 { voice-range: 200Hz absolute; } /* override with an absolute frequency
                                     which doesn't depend on the active voice */
 
-e4 { voice-range: 2st; } /* the computed value is an absolute frequency,
+e5 { voice-range: 2st; } /* the computed value is an absolute frequency,
                          which is the result of the
-                         calculation: 200Hz + two semitones */
+                         calculation: 200Hz + two semitones
+                         (reminder: the actual frequency corresponding to a semitone
+                         depends on the base value to which it applies) */
 
-e5 { voice-range: inherit; /* this could be omitted,
+e6 { voice-range: inherit; /* this could be omitted,
                            but we explicitly specify it for clarity purposes */
                            
      voice-family: "yet-another-voice"; } /* the computed value is the same as

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-speech/Overview.src.html,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- Overview.src.html	13 Jul 2011 21:59:24 -0000	1.80
+++ Overview.src.html	13 Jul 2011 22:07:19 -0000	1.81
@@ -1920,7 +1920,9 @@
       <e3>
         <e4>
           <e5>
-          ...
+            <e6>
+            ...
+            </e6>
           </e5>
         </e4>
       </e3>
@@ -1936,26 +1938,37 @@
                                depends on the active voice) */
 
 e1 { voice-range: +25%; } /* the computed value is
-                          ['medium' + 0.25 times the frequency
-                          corresponding to 'medium'] */
+                          ['medium' + 25%], which will resolve
+                          to the frequency corresponding to 'medium'
+                          plus 0.25 times the frequency
+                          corresponding to 'medium' */
 
-e2 { voice-range: inherit; /* this could be omitted,
+e2 { voice-range: +10Hz; } /* the computed value is
+                          ['medium' + 25% + 10Hz], which will resolve
+                          to the frequency corresponding to 'medium'
+                          plus 0.25 times the frequency
+                          corresponding to 'medium',
+                          plus another 10 Hertz*/
+                          
+e3 { voice-range: inherit; /* this could be omitted,
                            but we explicitly specify it for clarity purposes */
                            
      voice-family: "another-voice"; } /* the computed value is the same as
-                              for "e1", but here the voice is different,
+                              for "e2", but here the voice is different,
                               so once calculated, the used absolute frequency
                               may be completely different
                               due to voice-dependent discrepancies */
 
-e3 { voice-range: 200Hz absolute; } /* override with an absolute frequency
+e4 { voice-range: 200Hz absolute; } /* override with an absolute frequency
                                     which doesn't depend on the active voice */
 
-e4 { voice-range: 2st; } /* the computed value is an absolute frequency,
+e5 { voice-range: 2st; } /* the computed value is an absolute frequency,
                          which is the result of the
-                         calculation: 200Hz + two semitones */
+                         calculation: 200Hz + two semitones
+                         (reminder: the actual frequency corresponding to a semitone
+                         depends on the base value to which it applies) */
 
-e5 { voice-range: inherit; /* this could be omitted,
+e6 { voice-range: inherit; /* this could be omitted,
                            but we explicitly specify it for clarity purposes */
                            
      voice-family: "yet-another-voice"; } /* the computed value is the same as

Received on Wednesday, 13 July 2011 22:07:22 UTC