age-declarations-neutral-001.html (1072B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: voice-family age keywords + neutral</title> 5 <link rel="author" title="John Foliot" href="mailto:john@foliot.ca"> 6 <link rel="author" title="Katherine Mancuso" href="mailto:kmancuso@gmail.com"> 7 <link rel="author" title="Ryan Eilders" href="mailto:ryaneilders@gmail.com"> 8 <link rel="help" href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family"> 9 <meta name="flags" content="speech"> 10 <meta name="assert" content="The child, young, and old values of voice-family + neutral render the text in child, young, and old neutral voices, respectively."> 11 12 13 <style> 14 p.child_n { voice-family: child neutral; } 15 p.young_n { voice-family: young neutral; } 16 p.old_n { voice-family: old neutral; } 17 18 </style> 19 20 </head> 21 <body> 22 23 <p class="child_n">This sentence should be read in a child's neutral voice.</p> 24 <p class="young_n">This sentence should be read in a young neutral voice.</p> 25 <p class="old_n">This sentence should be read in a old neutral voice.</p> 26 27 </body> 28 </html>