speak-as-spell-out-001-manual.html (1239B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: speak-as spell-out</title> 5 <link rel="author" title="Alexander Lehner" href="mailto:alexlehner86@gmail.com"> 6 <link rel="help" href="https://www.w3.org/TR/css-speech-1/#speaking-props-speak-as"> 7 <meta 8 name="flags" 9 content="speech" 10 > 11 <meta 12 name="assert" 13 content="The spell-out value of speak-as makes screen readers spell each single letter." 14 > 15 <style> 16 p.speak-as-spell-out { speak-as: spell-out; } 17 </style> 18 </head> 19 <body> 20 <h1>Test Case</h1> 21 <p> 22 The following abbreviation should be read one letter at a time: 23 </p> 24 <p class="speak-as-spell-out">way</p> 25 <h2>Instructions for Manual Test</h2> 26 <ol> 27 <li>Open the website in your browser.</li> 28 <li> 29 Activate your screen reader (NVDA, VoiceOver, TalkBack etc.) and, in browse mode, navigate to the paragraph following the first heading. 30 </li> 31 <li> 32 The screen reader should spell the abbreviation "way" as W, A, Y. 33 </li> 34 </ol> 35 </body> 36 </html>