- From: Daniel Weck via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 13 Jul 2011 18:08:55 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-speech In directory hutz:/tmp/cvs-serv17931 Modified Files: Overview.html Overview.src.html Log Message: fixed examples. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-speech/Overview.html,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- Overview.html 13 Jul 2011 17:56:36 -0000 1.71 +++ Overview.html 13 Jul 2011 18:08:53 -0000 1.72 @@ -2227,11 +2227,13 @@ <pre> h1 { voice-pitch: 250Hz; } /* positive offset relative to the inherited absolute frequency */ h1 { voice-pitch: +250Hz; } /* identical to the line above */ -h2 { voice-pitch: +30Hz absolute; } /* not an increment! */ +h2 { voice-pitch: +30Hz absolute; } /* not an increment */ h2 { voice-pitch: absolute 30Hz; } /* identical to the line above */ h3 { voice-pitch: -20Hz; } /* negative offset (decrement) relative to the inherited absolute frequency */ -h4 { voice-pitch: -20Hz absolute; } /* Illegal syntax ! ("absolute" keyword not allowed with negative frequency) */ -h4 { voice-pitch: -3.5st; } /* Semitones are always relative, no need for the keyword. */ +h4 { voice-pitch: -20Hz absolute; } /* illegal syntax ! ("absolute" keyword not allowed with negative frequency) */ +h5 { voice-pitch: -3.5st; } /* semitones, negative offset */ +h6 { voice-pitch: 25%; } /* this means "add a quarter of the inherited value, to the inherited value" */ +h6 { voice-pitch: +25%; } /* identical to the line above */ </pre> </div> Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-speech/Overview.src.html,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- Overview.src.html 13 Jul 2011 17:56:36 -0000 1.72 +++ Overview.src.html 13 Jul 2011 18:08:53 -0000 1.73 @@ -1770,11 +1770,13 @@ <pre> h1 { voice-pitch: 250Hz; } /* positive offset relative to the inherited absolute frequency */ h1 { voice-pitch: +250Hz; } /* identical to the line above */ -h2 { voice-pitch: +30Hz absolute; } /* not an increment! */ +h2 { voice-pitch: +30Hz absolute; } /* not an increment */ h2 { voice-pitch: absolute 30Hz; } /* identical to the line above */ h3 { voice-pitch: -20Hz; } /* negative offset (decrement) relative to the inherited absolute frequency */ -h4 { voice-pitch: -20Hz absolute; } /* Illegal syntax ! ("absolute" keyword not allowed with negative frequency) */ -h4 { voice-pitch: -3.5st; } /* Semitones are always relative, no need for the keyword. */ +h4 { voice-pitch: -20Hz absolute; } /* illegal syntax ! ("absolute" keyword not allowed with negative frequency) */ +h5 { voice-pitch: -3.5st; } /* semitones, negative offset */ +h6 { voice-pitch: 25%; } /* this means "add a quarter of the inherited value, to the inherited value" */ +h6 { voice-pitch: +25%; } /* identical to the line above */ </pre> </div> <h3 id="voice-props-voice-pitch-range">The 'voice-pitch-range' property</h3>
Received on Wednesday, 13 July 2011 18:08:56 UTC