WD-css3-speech-20110818
141 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang=en>
<head>
<title>CSS Speech Module</title>
<meta content="text/html; charset=utf-8" http-equiv=Content-Type>
<link href=default.css rel=stylesheet type="text/css">
<style type="text/css">
p
{
padding-bottom : 1em;
}
p + p
{
text-indent : 0;
}
*:target
{
border : 1px dashed #66CC66;
}</style>
<!--
.prod
{
font-family : inherit;
font-size : inherit
}
pre.prod
{
white-space : pre-wrap;
margin : 1em 0 1em 2em
}
code
{
font-size : inherit;
}
#box-shadow-samples td
{
background : white;
color : black;
}
caption
{
text-align : left;
font-weight : bold
}
.note
{
font-style : italic
}
.issue
{
color : maroon;
font-style : italic
}
div.example pre
{
color : green;
margin-left : 2em
}
dl
{
margin-left : 2em
}
caption dfn
{
font-size : 120%
}
-->
<link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel=stylesheet
type="text/css">
<body>
<div class=head> <!--begin-logo-->
<p><a href="http://www.w3.org/"><img alt=W3C height=48
src="http://www.w3.org/Icons/w3c_home" width=72></a> <!--end-logo-->
<h1 id=top>CSS Speech Module</h1>
<h2 class="no-num no-toc" id=longstatus-date>W3C Working Draft 18 August
2011</h2>
<dl>
<dt>This version:
<dd> <a
href="http://www.w3.org/TR/2011/WD-css3-speech-20110818">http://www.w3.org/TR/2011/WD-css3-speech-20110818</a>
<dt>Latest version:
<dd> <a
href="http://www.w3.org/TR/css3-speech">http://www.w3.org/TR/css3-speech</a>
<dt>Previous versions:
<dd> <a
href="http://www.w3.org/TR/2011/WD-css3-speech-20110419">http://www.w3.org/TR/2011/WD-css3-speech-20110419</a>
<dt id=editors-list>Editor:
<dd><a href="mailto:dweck@daisy.org">Daniel Weck</a> (<a
href="http://www.daisy.org">DAISY Consortium</a>)
<dt>Former editors:
<dd><a href="mailto:dsr@w3.org">Dave Raggett</a> (<a
href="http://www.w3.org/">W3C</a>/<a
href="http://www.canon.com/">Canon</a>)
<dd><a href="mailto:daniel@glazman.org">Daniel Glazman</a> (<a
href="http://www.disruptive-innovations.com/">Disruptive
Innovations</a>)
<dd><a href="mailto:csant@opera.com">Claudio Santambrogio</a> (<a
href="http://www.opera.com/">Opera Software</a>)
</dl>
<!--begin-copyright-->
<p class=copyright><a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright"
rel=license>Copyright</a> © 2011 <a
href="http://www.w3.org/"><acronym title="World Wide Web
Consortium">W3C</acronym></a><sup>®</sup> (<a
href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute
of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym
title="European Research Consortium for Informatics and
Mathematics">ERCIM</acronym></a>, <a
href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>
and <a
href="http://www.w3.org/Consortium/Legal/copyright-documents">document
use</a> rules apply.</p>
<!--end-copyright-->
<hr title="Separator for header">
</div>
<h2 class="no-num no-toc" id=abstract>Abstract</h2>
<p>CSS (Cascading Style Sheets) is a language that describes the rendering
of markup documents (e.g. HTML, XML) on various supports, such as screen,
paper, speech, etc. The Speech module defines aural CSS properties that
enable authors to declaratively control the rendering of documents via
speech synthesis, and using optional audio cues. The feature set exposed
by this specification is designed to match the model described by the
Speech Synthesis Markup Language (SSML) Version 1.1 <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>. Note that this standard was
developed in cooperation with the <a href="http://www.w3.org/Voice/">Voice
Browser Activity</a>.
<h2 class="no-num no-toc" id=status>Status of this document</h2>
<!--begin-status-->
<p><em>This section describes the status of this document at the time of
its publication. Other documents may supersede this document. A list of
current W3C publications and the latest revision of this technical report
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
index at http://www.w3.org/TR/.</a></em>
<p>Publication as a Working Draft does not imply endorsement by the W3C
Membership. This is a draft document and may be updated, replaced or
obsoleted by other documents at any time. It is inappropriate to cite this
document as other than work in progress.
<p>The (<a
href="http://lists.w3.org/Archives/Public/www-style/">archived</a>) public
mailing list <a href="mailto:www-style@w3.org">www-style@w3.org</a> (see
<a href="http://www.w3.org/Mail/Request">instructions</a>) is preferred
for discussion of this specification. When sending e-mail, please put the
text “css3-speech” in the subject, preferably like this:
“[<!---->css3-speech<!---->] <em>…summary of
comment…</em>”
<p>This document was produced by the <a
href="http://www.w3.org/Style/CSS/members">CSS Working Group</a> (part of
the <a href="http://www.w3.org/Style/">Style Activity</a>).
<p>This document was produced by a group operating under the <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February
2004 W3C Patent Policy</a>. W3C maintains a <a
href="http://www.w3.org/2004/01/pp-impl/32061/status"
rel=disclosure>public list of any patent disclosures</a> made in
connection with the deliverables of the group; that page also includes
instructions for disclosing a patent. An individual who has actual
knowledge of a patent which the individual believes contains <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with <a
href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section
6 of the W3C Patent Policy</a>.</p>
<!--end-status-->
<p>This is a “last call” working draft, i.e., the working group expects
this to be the last call for comments before the document becomes a W3C
Candidate Recommendation. The <strong>deadline for comments</strong> is
<strong>30 September 2011</strong>.</p>
<!-- div class="issue">
<p>The following issues need to be discussed and require working group resolutions:</p>
<ul>
<li>
<a href="#issue-xxx">xxx</a>
</li>
</ul>
<p>The CSS WG maintains a separate <a href="http://www.w3.org/Style/CSS/Tracker/products/29"
>list of issues</a> for this module.</p>
</div -->
<p>The following features are at-risk and may be dropped at the end of the
CR period if there has not been enough interest from implementers:
‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’, ‘<a
href="#voice-duration"><code
class=property>voice-duration</code></a>’, ‘<a
href="#voice-pitch"><code class=property>voice-pitch</code></a>’,
‘<a href="#voice-range"><code
class=property>voice-range</code></a>’, and ‘<a
href="#voice-stress"><code class=property>voice-stress</code></a>’.
<p>The CSS Speech module is a community effort and if you would like to
help with implementation and driving the specification forward along the
W3C Recommendation track, please contact the editors.
<h2 class="no-num no-toc" id=contents>Table of contents</h2>
<!--begin-toc-->
<ul class=toc>
<li><a href="#introduction"><span class=secno>1. </span>Introduction</a>
<ul class=toc>
<li><a href="#design-goals"><span class=secno>1.1. </span>Design goals,
motivations</a>
<li><a href="#css21-rel"><span class=secno>1.2. </span>Relationship with
CSS2.1</a>
</ul>
<li><a href="#values"><span class=secno>2. </span>CSS values</a>
<li><a href="#example"><span class=secno>3. </span>Example</a>
<li><a href="#aural-model"><span class=secno>4. </span>The aural
formatting model</a>
<li><a href="#mixing-props"><span class=secno>5. </span>Mixing
properties</a>
<ul class=toc>
<li><a href="#mixing-props-voice-volume"><span class=secno>5.1.
</span>The ‘<code class=property>voice-volume</code>’
property</a>
<li><a href="#mixing-props-voice-balance"><span class=secno>5.2.
</span>The ‘<code class=property>voice-balance</code>’
property</a>
</ul>
<li><a href="#speaking-props"><span class=secno>6. </span>Speaking
properties</a>
<ul class=toc>
<li><a href="#speaking-props-speak"><span class=secno>6.1. </span>The
‘<code class=property>speak</code>’ property</a>
<li><a href="#speaking-props-speak-as"><span class=secno>6.2. </span>The
‘<code class=property>speak-as</code>’ property</a>
</ul>
<li><a href="#pause-props"><span class=secno>7. </span>Pause properties
</a>
<ul class=toc>
<li><a href="#pause-props-pause-before-after"><span class=secno>7.1.
</span>The ‘<code class=property>pause-before</code>’ and
‘<code class=property>pause-after</code>’ properties</a>
<li><a href="#pause-props-pause"><span class=secno>7.2. </span>The
‘<code class=property>pause</code>’ shorthand property</a>
<li><a href="#collapsing"><span class=secno>7.3. </span>Collapsing
pauses</a>
</ul>
<li><a href="#rest-props"><span class=secno>8. </span>Rest properties</a>
<ul class=toc>
<li><a href="#rest-props-rest-before-after"><span class=secno>8.1.
</span>The ‘<code class=property>rest-before</code>’ and
‘<code class=property>rest-after</code>’ properties</a>
<li><a href="#rest-props-rest"><span class=secno>8.2. </span>The
‘<code class=property>rest</code>’ shorthand property</a>
</ul>
<li><a href="#cue-props"><span class=secno>9. </span>Cue properties</a>
<ul class=toc>
<li><a href="#cue-props-cue-before-after"><span class=secno>9.1.
</span>The ‘<code class=property>cue-before</code>’ and
‘<code class=property>cue-after</code>’ properties</a>
<li><a href="#cue-props-cue"><span class=secno>9.2. </span>The
‘<code class=property>cue</code>’ shorthand property</a>
</ul>
<li><a href="#voice-char-props"><span class=secno>10. </span>Voice
characteristic properties</a>
<ul class=toc>
<li><a href="#voice-props-voice-family"><span class=secno>10.1.
</span>The ‘<code class=property>voice-family</code>’
property</a>
<li><a href="#voice-props-voice-rate"><span class=secno>10.2. </span>The
‘<code class=property>voice-rate</code>’ property</a>
<li><a href="#voice-props-voice-pitch"><span class=secno>10.3.
</span>The ‘<code class=property>voice-pitch</code>’
property</a>
<li><a href="#voice-props-voice-range"><span class=secno>10.4.
</span>The ‘<code class=property>voice-range</code>’
property</a>
<li><a href="#voice-props-voice-stress"><span class=secno>10.5.
</span>The ‘<code class=property>voice-stress</code>’
property</a>
</ul>
<li><a href="#duration-props"><span class=secno>11. </span>Voice duration
property</a>
<ul class=toc>
<li><a href="#mixing-props-voice-duration"><span class=secno>11.1.
</span>The ‘<code class=property>voice-duration</code>’
property</a>
</ul>
<li><a href="#lists"><span class=secno>12. </span>List items and counters
styles</a>
<li><a href="#content"><span class=secno>13. </span>Inserted and replaced
content</a>
<li><a href="#pronunciation"><span class=secno>14. </span> Pronunciation,
phonemes </a>
<li class=no-num><a href="#property-index">Appendix A — Property
index</a>
<li class=no-num><a href="#index">Appendix B — Index</a>
<li class=no-num><a href="#definitions">Appendix C — Definitions</a>
<ul class=toc>
<li class=no-num><a href="#glossary">Glossary</a>
<li class=no-num><a href="#conformance">Conformance</a>
<li class=no-num><a href="#exit">CR exit criteria</a>
</ul>
<li class=no-num><a href="#ack">Appendix D — Acknowledgements</a>
<li class=no-num><a href="#changes">Appendix E — Changes from
previous draft</a>
<li class=no-num><a href="#references">Appendix F — References</a>
<ul class=toc>
<li class=no-num><a href="#normative-references">Normative
references</a>
<li class=no-num><a href="#other-references">Other references</a>
</ul>
</ul>
<!--end-toc-->
<h2 id=introduction><span class=secno>1. </span>Introduction</h2>
<p class=note>Note that this entire section is non-normative.
<h3 id=design-goals><span class=secno>1.1. </span>Design goals, motivations</h3>
<p>The aural rendering of a document combines speech synthesis (also known
as "TTS", the acronym for "Text to Speech") and auditory icons (which we
refer to as "audio cues" in this specification). The aural presentation of
information is common amongst communities of users who are blind or
visually-impaired. For instance, "screen readers" enable control of visual
user-interfaces that would otherwise be inaccessible. There are other
cases whereby listening to textual information (as opposed to reading it)
is a necessity. Typical examples include in-car use of an e-book reader,
industrial and medical documentation systems, home entertainment, helping
users to learn reading, or supporting users who have reading difficulties
(print disabilities).
<p> When it comes to documents, the quality of the speech rendition depends
on the structure and semantics authored within the content itself. The CSS
Speech module provides properties that enable authors to declaratively
control presentational aspects of the aural dimension (e.g. TTS voice,
pitch, rate, and volume levels). These style sheet properties can be used
together with visual properties (mixed media), or as a complete aural
alternative to a visual presentation.
<p> Content creators can conditionally include CSS properties dedicated to
user-agents with text to speech synthesis capabilities, by specifying the
"speech" media type via the <code>media</code> attribute of the
<code>link</code> element, or with the <code>@media</code> at-rule, or
within an <code>@import</code> statement. When doing so, the styles
authored within the scope of such conditional statements are ignored by
user-agents that do not support this module.
<h3 id=css21-rel><span class=secno>1.2. </span>Relationship with CSS2.1</h3>
<p> The CSS Speech module is a re-work of the informative CSS2.1 Aural
appendix, within which the "aural" media type was described, but also
deprecated (in favor of the "speech" media type). Although the <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> specification
reserves the "speech" media type, it doesn't actually define the
corresponding properties. This module describes the CSS properties that
apply to the "speech" media type, and defines a new "box" model
specifically for the aural dimension.
<h2 id=values><span class=secno>2. </span>CSS values</h2>
<p>This specification follows the <a
href="http://www.w3.org/TR/CSS21/about.html#property-defs">CSS property
definition conventions</a> from <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>. Value types not defined in
this specification are defined in CSS Value and Units Level 3 <a
href="#CSS3VAL" rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>.
<p>In addition to the property-specific values listed in their definitions,
all properties defined in this specification also accept the <a
href="http://www.w3.org/TR/CSS21/cascade.html#value-def-inherit">inherit</a>
keyword as their property value. For readability it has not been repeated
explicitly.
<h2 id=example><span class=secno>3. </span>Example</h2>
<div class=example>
<p>This example shows how authors can tell the speech synthesizer to speak
HTML headings with a voice called "paul", using "moderate" emphasis
(which is more than normal) and how to insert an audio cue (pre-recorded
audio clip located at the given URL) before the start of TTS rendering
for each heading. In a stereo-capable sound system, paragraphs marked
with the CSS class "heidi" are rendered on the left audio channel (and
with a female voice, etc.), whilst the class "peter" corresponds to the
right channel (and to a male voice, etc.). The volume level of text spans
marked with the class "special" is lower than normal, and a prosodic
boundary is created by introducing a strong pause after it is spoken
(note how the <code>span</code> inherits the voice-family from its parent
paragraph).</p>
<pre>
h1, h2, h3, h4, h5, h6
{
voice-family: paul;
voice-stress: moderate;
cue-before: url(../audio/ping.wav);
voice-volume: medium 6dB;
}
p.heidi
{
voice-family: female;
voice-balance: left;
voice-pitch: high;
voice-volume: -6dB;
}
p.peter
{
voice-family: male;
voice-balance: right;
voice-rate: fast;
}
span.special
{
voice-volume: soft;
pause-after: strong;
}
...
<h1>I am Paul, and I speak headings.</h1>
<p class="heidi">Hello, I am Heidi.</p>
<p class="peter">
<span class="special">Can you hear me ?</span>
I am Peter.
</p></pre>
</div>
<h2 id=aural-model><span class=secno>4. </span>The aural formatting model</h2>
<p>The CSS formatting model for aural media is based on a sequence of
sounds and silences that occur within a nested context similar to the <a
href="#box-model-def">visual box model</a>, which we name the <dfn
id=aural-box-model>aural "box" model</dfn>. The aural "canvas" consists of
a two-channel (stereo) space and of a temporal dimension, within which
synthetic speech and audio cues coexist. The selected element is
surrounded by ‘<a href="#rest"><code
class=property>rest</code></a>’, ‘<a href="#cue"><code
class=property>cue</code></a>’ and ‘<a href="#pause"><code
class=property>pause</code></a>’ properties (from the innermost to
the outermost position). These can be seen as aural equivalents to
‘<code class=property>padding</code>’, ‘<code
class=property>border</code>’ and ‘<code
class=property>margin</code>’, respectively. When used, the
‘<code class=css>:before</code>’ and ‘<code
class=css>:after</code>’ pseudo-elements <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> get inserted between the
element's contents and the ‘<a href="#rest"><code
class=property>rest</code></a>’.
<p> The following diagram illustrates the equivalence between properties of
the visual and aural box models, applied to the selected <element>:
<p> <img alt="A graph depicting the aural 'box' model." id=aural-box
src=aural-box.png>
<h2 id=mixing-props><span class=secno>5. </span>Mixing properties</h2>
<h3 id=mixing-props-voice-volume><span class=secno>5.1. </span>The
‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-volume>voice-volume</dfn>
<tr>
<td> <em>Value:</em>
<td>silent | [[x-soft | soft | medium | loud | x-loud] ||
<decibel>]
<tr>
<td> <em>Initial:</em>
<td>medium
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>a keyword value, and optionally also a decibel offset (if not zero)
</table>
<p>The ‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ property allows authors to
control the amplitude of the audio waveform generated by the speech
synthesiser, and is also used to adjust the relative volume level of <a
href="#cue-props">audio cues</a> within the <a href="#aural-model">audio
"box" model</a>.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_prosody"><code>volume</code>
attribute of the <code>prosody</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl><!-- dt>
<strong>normal</strong>
</dt>
<dd>
<p> Corresponds to +0.0dB, which means that there is no modification of volume level. This
value overrides the inherited value.</p>
</dd -->
<dt> <strong>silent</strong>
<dd>
<p> Specifies that no sound is generated (the text is read "silently").
Corresponds to negative infinity in dB units.</p>
<p class=note> Note that there is a difference between an element whose
‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ property has a value of
‘<code class=property>silent</code>’, and an element whose
‘<a href="#speak"><code class=property>speak</code></a>’
property has the value ‘<code class=property>none</code>’.
With the former, the selected element takes up the same time as if it
was spoken, including any pause before and after the element, but no
sound is generated (descendants can override the ‘<a
href="#voice-volume"><code class=property>voice-volume</code></a>’
value and may therefore generate audio output). With the latter, the
selected element is not rendered in the aural dimension and no time is
allocated for playback (descendants can override the ‘<a
href="#speak"><code class=property>speak</code></a>’ value and may
therefore generate audio output).</p>
<dt><strong>x-soft</strong>, <strong>soft</strong>,
<strong>medium</strong>, <strong>loud</strong>, <strong>x-loud</strong>
<dd>
<p> This sequence of keywords corresponds to monotonically non-decreasing
volume levels, mapped to implementation-dependent values (i.e. inferred
by the user-agent) that meet the user's requirements in terms of
perceived sound loudness . The keyword ‘<code
class=property>x-soft</code>’ maps to the user's <em>minimum
audible</em> volume level, ‘<code
class=property>x-loud</code>’ maps to the user's <em>maximum
tolerable</em> volume level, ‘<code
class=property>medium</code>’ maps to the user's
<em>preferred</em> volume level, ‘<code
class=property>soft</code>’ and ‘<code
class=property>loud</code>’ map to intermediary values.</p>
<dt> <strong><decibel></strong>
<dd>
<p>A <a href="#number-def">number</a> immediately followed by "dB"
(decibel unit). This represents a change (positive or negative) relative
to the given keyword value (see enumeration above), or to the default
value for the root element, or otherwise to the inherited volume level
(which may itself be a combination of a keyword value and of a decibel
offset, in which case the decibel values are combined additively). When
the inherited volume level is ‘<code
class=property>silent</code>’, this ‘<a
href="#voice-volume"><code class=property>voice-volume</code></a>’
resolves to ‘<code class=property>silent</code>’ too,
regardless of the specified <decibel> value. Decibels represent
the ratio of the squares of the new signal amplitude (a1) and the
current amplitude (a0), as per the following logarithmic equation:
volume(dB) = 20 log10 (a1 / a0)</p>
<p class=note> Note that -6.0dB is approximately half the amplitude of
the audio signal, and +6.0dB is approximately twice the amplitude.</p>
</dl>
<p class=note>Note that the actual perceived volume levels depend on
various factors, such as the listening environment and personal user
preferences. The effective volume variation between ‘<code
class=property>x-soft</code>’ and ‘<code
class=property>x-loud</code>’ represents the dynamic range (in terms
of loudness) of the speech output. Typically, this range would be
compressed in a noisy context, i.e. the perceived loudness corresponding
to ‘<code class=property>x-soft</code>’ would effectively be
closer to ‘<code class=property>x-loud</code>’ than it would
be in a quiet environment. There may also be situations where both
‘<code class=property>x-soft</code>’ and ‘<code
class=property>x-loud</code>’ would map to low volume levels, such
as in listening environments requiring discretion (e.g. library,
night-reading).
<h3 id=mixing-props-voice-balance><span class=secno>5.2. </span>The
‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-balance>voice-balance</dfn>
<tr>
<td> <em>Value:</em>
<td><number> | left | center | right | leftwards | rightwards
<tr>
<td> <em>Initial:</em>
<td>center
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>the specified value resolved to a <number> between
‘<code class=css>-100</code>’ and ‘<code
class=css>100</code>’ (inclusive)
</table>
<p> The ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ property controls the
spatial distribution of audio output across a lateral sound stage: one
extremity is on the left, the other extremity is on the right hand side,
relative to the listener's position. Authors can specify intermediary
steps between left and right extremities, to represent the audio
separation along the resulting left-right axis.
<p class=note> Note that the functionality provided by this property has no
match in the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><number></strong>
<dd>
<p>A <a href="#number-def">number</a> between ‘<code
class=css>-100</code>’ and ‘<code
class=css>100</code>’ (inclusive). Values smaller than
‘<code class=css>-100</code>’ are clamped to ‘<code
class=css>-100</code>’. Values greater than ‘<code
class=css>100</code>’ are clamped to ‘<code
class=css>100</code>’. The value ‘<code
class=css>-100</code>’ represents the left side, and the value
‘<code class=css>100</code>’ represents the right side. The
value ‘<code class=css>0</code>’ represents the center point
whereby there is no discernible audio separation between left and right
sides (in a stereo sound system, this corresponds to equal distribution
of audio signals between left and right speakers).</p>
<dt> <strong>left</strong>
<dd>
<p>Same as ‘<code class=css>-100</code>’.</p>
<dt> <strong>center</strong>
<dd>
<p>Same as ‘<code class=css>0</code>’.</p>
<dt> <strong>right</strong>
<dd>
<p>Same as ‘<code class=css>100</code>’.</p>
<dt> <strong>leftwards</strong>
<dd>
<p>Moves the sound to the left, by subtracting 20 from the inherited
‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ value, and by clamping
the resulting number to ‘<code class=css>-100</code>’.</p>
<dt> <strong>rightwards</strong>
<dd>
<p>Moves the sound to the right, by adding 20 to the inherited ‘<a
href="#voice-balance"><code
class=property>voice-balance</code></a>’ value, and by clamping
the resulting number to ‘<code class=css>100</code>’.</p>
</dl>
<p> User agents may be connected to different kinds of sound systems,
featuring varying audio mixing capabilities. The expected behavior for
mono, stereo, and surround sound systems is defined as follows:
<ul>
<li> When user-agents produce audio via a mono-aural sound system (i.e.
single-speaker setup), the ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ property has no effect.
<li> When user-agents produce audio through a stereo sound system (e.g.
two speakers, a pair of headphones), the left-right distribution of audio
signals can precisely match the authored values for the ‘<a
href="#voice-balance"><code
class=property>voice-balance</code></a>’ property.
<li> When user-agents are capable of mixing audio signals through more
than 2 channels (e.g. 5-speakers surround sound system, including a
dedicated center channel), the physical distribution of audio signals
resulting from the application of the ‘<a
href="#voice-balance"><code
class=property>voice-balance</code></a>’ property should be
performed so that the listener perceives sound as if it was coming from a
basic stereo layout. For example, the center channel as well as the
left/right speakers may be used altogether in order to emulate the
behavior of the ‘<code class=property>center</code>’ value.
</ul>
<p> Future revisions of the CSS Speech module may include support for
three-dimensional audio, which would effectively enable authors to specify
"azimuth" and "elevation" values. In the future, content authored using
the current specification may therefore be consumed by user-agents which
are compliant with the version of CSS Speech that supports
three-dimensional audio. In order to prepare for this possibility, the
values enabled by the current ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ property are designed to
remain compatible with "azimuth" angles. More precisely, the mapping
between the current left-right audio axis (lateral sound stage) and the
envisioned 360 degrees plane around the listener's position is defined as
follows:
<ul>
<li>The value ‘<code class=css>0</code>’ maps to zero degrees
(‘<code class=property>center</code>’). This is in "front" of
the listener, not from "behind".
<li>The value ‘<code class=css>-100</code>’ maps to -40
degrees (‘<code class=property>left</code>’). Negative angles
are in the counter-clockwise direction (the audio stage is seen from the
top).
<li>The value ‘<code class=css>100</code>’ maps to 40 degrees
(‘<code class=property>right</code>’). Positive angles are in
the clockwise direction (the audio stage is seen from the top).
<li>Intermediary values on the scale from ‘<code
class=css>-100</code>’ to ‘<code class=css>100</code>’
map to the angles between -40 and 40 degrees in a numerically
linearly-proportional manner. For example, ‘<code
class=css>-50</code>’ maps to -20 degrees.
</ul>
<p class=note> Note that sound systems may be configured by users in such a
way that it would interfere with the left-right audio distribution
specified by document authors. Typically, the various "surround" modes
available in modern sound systems (including systems based on basic stereo
speakers) tend to greatly alter the perceived spatial arrangement of audio
signals. The illusion of a three-dimensional sound stage is often achieved
using a combination of phase shifting, digital delay, volume control
(channel mixing), and other techniques. Some users may even configure
their system to "downgrade" any rendered sound to a single mono channel,
in which case the effect of the ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ property would obviously
not be perceivable at all. The rendering fidelity of authored content is
therefore dependent on such user customizations, and the ‘<a
href="#voice-balance"><code class=property>voice-balance</code></a>’
property merely specifies the desired end-result.
<p class=note> Note that many speech synthesizers only generate mono sound,
and therefore do not intrinsically support the ‘<a
href="#voice-balance"><code class=property>voice-balance</code></a>’
property. The sound distribution along the left-right axis consequently
occurs at post-synthesis stage (when the speech-enabled user-agent mixes
the various audio sources authored within the document)
<h2 id=speaking-props><span class=secno>6. </span>Speaking properties</h2>
<h3 id=speaking-props-speak><span class=secno>6.1. </span>The ‘<a
href="#speak"><code class=property>speak</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=speak>speak</dfn>
<tr>
<td> <em>Value:</em>
<td>auto | none | normal
<tr>
<td> <em>Initial:</em>
<td>auto
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#speak"><code class=property>speak</code></a>’
property determines whether or not to render text aurally.
<p class=note> Note that the functionality provided by this property has no
match in the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong>auto</strong>
<dd>
<p>Resolves to a computed value of ‘<code
class=property>none</code>’ when <a
href="#display-def">‘<code
class=property>display</code>’</a> is ‘<code
class=property>none</code>’, otherwise resolves to a computed
value of ‘<code class=property>auto</code>’ which yields a
used value of ‘<code class=property>normal</code>’.</p>
<p class=note> Note that the ‘<code
class=property>none</code>’ value of the <a
href="#display-def">‘<code
class=property>display</code>’</a> property cannot be overridden
by descendants of the selected element, but the ‘<code
class=property>auto</code>’ value of ‘<a href="#speak"><code
class=property>speak</code></a>’ can however be overridden using
either of ‘<code class=property>none</code>’ or ‘<code
class=property>normal</code>’.</p>
<dt> <strong>none</strong>
<dd>
<p> This value causes an element (including pauses, cues, rests and
actual content) to not be rendered (i.e., the element has no effect in
the aural dimension).</p>
<p class=note> Note that any of the descendants of the affected element
are allowed to override this value, so descendants can actually take
part in the aural rendering despite using ‘<code
class=property>none</code>’ at this level. However, the pauses,
cues, and rests of the ancestor element remain "deactivated" in the
aural dimension, and therefore do not contribute to the <a
href="#collapsing">collapsing of pauses</a> or additive behavior of
adjoining rests.</p>
<dt> <strong>normal</strong>
<dd>
<p> The element is rendered aurally (regardless of its <a
href="#display-def">‘<code
class=property>display</code>’</a> value and the <a
href="#display-def">‘<code
class=property>display</code>’</a> and ‘<a
href="#speak"><code class=property>speak</code></a>’ values of its
ancestors).</p>
<p class=note> Note that using this value can result in the element being
rendered in the aural dimension even though it would not be rendered on
the visual canvas.</p>
</dl>
<h3 id=speaking-props-speak-as><span class=secno>6.2. </span>The ‘<a
href="#speak-as"><code class=property>speak-as</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=speak-as>speak-as</dfn>
<tr>
<td> <em>Value:</em>
<td>normal | spell-out || digits || [ literal-punctuation |
no-punctuation ]
<tr>
<td> <em>Initial:</em>
<td>normal
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#speak-as"><code
class=property>speak-as</code></a>’ property determines in what
manner text gets rendered aurally, based upon a basic predefined list of
possible values.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_say-as"><code>say-as</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>, whose values are described in
the <a href="#SSML-SAYAS"
rel=biblioentry>[SSML-SAYAS]<!--{{SSML-SAYAS}}--></a> W3C Note.
<dl>
<dt> <strong>normal</strong>
<dd>
<p>Uses language-dependent pronunciation rules for rendering the
element's content. For example, punctuation is not spoken as-is, but
instead rendered naturally as appropriate pauses.</p>
<dt> <strong>spell-out</strong>
<dd>
<p>Spells the text one letter at a time (useful for acronyms and
abbreviations). In languages where accented characters are rare, it is
permitted to drop accents in favor of alternative unaccented spellings.
As as example, in English, the word "rôle" can also be written as
"role". A conforming implementation would thus be able to spell-out
"rôle" as "R O L E".</p>
<dt> <strong>digits</strong>
<dd>
<p>Speak numbers one digit at a time, for instance, "twelve" would be
spoken as "one two", and "31" as "three one".</p>
<p class=note>Speech synthesizers are knowledgeable about what is and
what is not a number. The ‘<a href="#speak-as"><code
class=property>speak-as</code></a>’ property enables authors to
control how the user-agent renders numbers, and may be implemented as a
preprocessing step before passing the text to the actual speech
synthesizer.</p>
<dt> <strong>literal-punctuation</strong>
<dd>
<p> Punctuation such as semicolons, braces, and so on is named aloud
(i.e. spoken literally) rather than rendered naturally as appropriate
pauses.</p>
<dt> <strong>no-punctuation</strong>
<dd>
<p>Punctuation is not rendered: neither spoken nor rendered as pauses.</p>
</dl>
<h2 id=pause-props><span class=secno>7. </span>Pause properties</h2>
<h3 id=pause-props-pause-before-after><span class=secno>7.1. </span>The
‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ and ‘<a
href="#pause-after"><code class=property>pause-after</code></a>’
properties</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=pause-before>pause-before</dfn>
<tr>
<td> <em>Value:</em>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=pause-after>pause-after</dfn>
<tr>
<td> <em>Value:</em>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ and ‘<a
href="#pause-after"><code class=property>pause-after</code></a>’
properties specify a prosodic boundary (silence with a specific duration)
that occurs before (or after) the speech synthesis rendition of the
selected element, or if any ‘<a href="#cue-before"><code
class=property>cue-before</code></a>’ (or ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’) is
specified, before (or after) the cue within the <a
href="#aural-model">audio "box" model</a>.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_break"><code>break</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><time></strong>
<dd>
<p>Expresses the pause in absolute <a href="#time-def">time</a> units
(seconds and milliseconds, e.g. "+3s", "250ms"). Only non-negative
values are allowed.</p>
<dt> <strong>none</strong>
<dd>
<p> Equivalent to 0ms (no prosodic break is produced by the speech
processor).</p>
<dt> <strong>x-weak</strong>, <strong>weak</strong>,
<strong>medium</strong>, <strong>strong</strong>, and
<strong>x-strong</strong>
<dd>
<p> Expresses the pause by the strength of the prosodic break in speech
output. The exact time is implementation-dependent. The values indicate
monotonically non-decreasing (conceptually increasing) break strength
between elements.</p>
</dl>
<p class=note> Note that stronger content boundaries are typically
accompanied by pauses. For example, the breaks between paragraphs are
typically much more substantial than the breaks between words within a
sentence.
<div class=example>
<p> This example illustrates how the default strengths of prosodic breaks
for specific elements (which are defined by the user-agent stylesheet)
can be overridden by authored styles.</p>
<pre>
p { pause: none } /* pause-before: none; pause-after: none */</pre>
</div>
<h3 id=pause-props-pause><span class=secno>7.2. </span>The ‘<a
href="#pause"><code class=property>pause</code></a>’ shorthand
property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=pause>pause</dfn>
<tr>
<td> <em>Value:</em>
<td><‘<a href="#pause-before"><code
class=property>pause-before</code></a>’> <‘<a
href="#pause-after"><code
class=property>pause-after</code></a>’>?
<tr>
<td> <em>Initial:</em>
<td>N/A (see individual properties)
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>N/A (see individual properties)
</table>
<p>The ‘<a href="#pause"><code class=property>pause</code></a>’
property is a shorthand property for ‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ and ‘<a
href="#pause-after"><code class=property>pause-after</code></a>’. If
two values are given, the first value is ‘<a
href="#pause-before"><code class=property>pause-before</code></a>’
and the second is ‘<a href="#pause-after"><code
class=property>pause-after</code></a>’. If only one value is given,
it applies to both properties.
<div class=example>
<p> Examples of property values:</p>
<pre>
h1 { pause: 20ms; } /* pause-before: 20ms; pause-after: 20ms */
h2 { pause: 30ms 40ms; } /* pause-before: 30ms; pause-after: 40ms */
h3 { pause-after: 10ms; } /* pause-before: <i>unspecified</i>; pause-after: 10ms */</pre>
</div>
<h3 id=collapsing><span class=secno>7.3. </span>Collapsing pauses</h3>
<p> The pause defines the minimum distance of the aural "box" to the aural
"boxes" before and after it. Adjoining pauses are merged by selecting the
strongest named break and the longest absolute time interval. For example,
"strong" is selected when comparing "strong" and "weak", "1s" is selected
when comparing "1s" and "250ms", and "strong" and "250ms" take effect
additively when comparing "strong" and "250ms".
<p>The following pauses are adjoining:
<ol>
<li>The ‘<a href="#pause-after"><code
class=property>pause-after</code></a>’ of an aural "box" and the
‘<a href="#pause-after"><code
class=property>pause-after</code></a>’ of its last child, provided
the former has no ‘<a href="#rest-after"><code
class=property>rest-after</code></a>’ and no ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’.
<li>The ‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ of an aural "box" and the
‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ of its first child,
provided the former has no ‘<a href="#rest-before"><code
class=property>rest-before</code></a>’ and no ‘<a
href="#cue-before"><code class=property>cue-before</code></a>’.
<li>The ‘<a href="#pause-after"><code
class=property>pause-after</code></a>’ of an aural "box" and the
‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ of its next sibling.
<li>The ‘<a href="#pause-before"><code
class=property>pause-before</code></a>’ and ‘<a
href="#pause-after"><code class=property>pause-after</code></a>’ of
an aural "box", if the the "box" has a ‘<a
href="#voice-duration"><code
class=property>voice-duration</code></a>’ of "0ms" and no ‘<a
href="#rest-before"><code class=property>rest-before</code></a>’ or
‘<a href="#rest-after"><code
class=property>rest-after</code></a>’ and no ‘<a
href="#cue-before"><code class=property>cue-before</code></a>’ or
‘<a href="#cue-after"><code
class=property>cue-after</code></a>’, or if the the "box" has no
rendered content at all (see ‘<a href="#speak"><code
class=property>speak</code></a>’).
</ol>
<p>A collapsed pause is considered adjoining to another pause if any of its
component pauses is adjoining to that pause.
<p class=note> Note that ‘<a href="#pause"><code
class=property>pause</code></a>’ has been moved from between the
element's contents and any ‘<a href="#cue"><code
class=property>cue</code></a>’ to outside the ‘<a
href="#cue"><code class=property>cue</code></a>’. This is not
backwards compatible with the informative CSS2.1 Aural appendix <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>.
<h2 id=rest-props><span class=secno>8. </span>Rest properties</h2>
<h3 id=rest-props-rest-before-after><span class=secno>8.1. </span>The
‘<a href="#rest-before"><code
class=property>rest-before</code></a>’ and ‘<a
href="#rest-after"><code class=property>rest-after</code></a>’
properties</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=rest-before>rest-before</dfn>
<tr>
<td> <em>Value:</em>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=rest-after>rest-after</dfn>
<tr>
<td> <em>Value:</em>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#rest-before"><code
class=property>rest-before</code></a>’ and ‘<a
href="#rest-after"><code class=property>rest-after</code></a>’
properties specify a prosodic boundary (silence with a specific duration)
that occurs before (or after) the speech synthesis rendition of an element
within the <a href="#aural-model">audio "box" model</a>.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_break"><code>break</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><time></strong>
<dd>
<p>Expresses the rest in absolute <a href="#time-def">time</a> units
(seconds and milliseconds, e.g. "+3s", "250ms"). Only non-negative
values are allowed.</p>
<dt> <strong>none</strong>
<dd>
<p> Equivalent to 0ms (no prosodic break is produced by the speech
processor).</p>
<dt> <strong>x-weak</strong>, <strong>weak</strong>,
<strong>medium</strong>, <strong>strong</strong>, and
<strong>x-strong</strong>
<dd>
<p> Expresses the rest by the strength of the prosodic break in speech
output. The exact time is implementation-dependent. The values indicate
monotonically non-decreasing (conceptually increasing) break strength
between elements.</p>
</dl>
<p>As opposed to <a href="#pause-props">pause properties</a>, the rest is
inserted between the element's content and any ‘<a
href="#cue-before"><code class=property>cue-before</code></a>’ or
‘<a href="#cue-after"><code
class=property>cue-after</code></a>’ content. Adjoining rests are
treated additively, and do not collapse.
<h3 id=rest-props-rest><span class=secno>8.2. </span>The ‘<a
href="#rest"><code class=property>rest</code></a>’ shorthand
property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=rest>rest</dfn>
<tr>
<td> <em>Value:</em>
<td><‘<a href="#rest-before"><code
class=property>rest-before</code></a>’> <‘<a
href="#rest-after"><code
class=property>rest-after</code></a>’>?
<tr>
<td> <em>Initial:</em>
<td>N/A (see individual properties)
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>N/A (see individual properties)
</table>
<p>The ‘<a href="#rest"><code class=property>rest</code></a>’
property is a shorthand for ‘<a href="#rest-before"><code
class=property>rest-before</code></a>’ and ‘<a
href="#rest-after"><code class=property>rest-after</code></a>’. If
two values are given, the first value is ‘<a
href="#rest-before"><code class=property>rest-before</code></a>’ and
the second is ‘<a href="#rest-after"><code
class=property>rest-after</code></a>’. If only one value is given,
it applies to both properties.
<h2 id=cue-props><span class=secno>9. </span>Cue properties</h2>
<h3 id=cue-props-cue-before-after><span class=secno>9.1. </span>The
‘<a href="#cue-before"><code
class=property>cue-before</code></a>’ and ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’
properties</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=cue-before>cue-before</dfn>
<tr>
<td> <em>Value:</em>
<td><uri> <decibel>? | none
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=cue-after>cue-after</dfn>
<tr>
<td> <em>Value:</em>
<td><uri> <decibel>? | none
<tr>
<td> <em>Initial:</em>
<td>none
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#cue-before"><code
class=property>cue-before</code></a>’ and ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’
properties specify auditory icons (i.e. pre-recorded / pre-generated sound
clips) to be played before (or after) the selected element within the <a
href="#aural-model">audio "box" model</a>.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_audio"><code>audio</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><uri></strong>
<dd>
<p>The URI designates an auditory icon resource. When a user agent is not
able to render the specified auditory icon (e.g. missing file resource,
or unsupported audio codec), it is recommended to produce an alternative
cue, such as a bell sound.</p>
<dt> <strong>none</strong>
<dd>
<p>Specifies that no auditory icon is used.</p>
<dt> <strong><decibel></strong>
<dd>
<p>A <a href="#number-def">number</a> immediately followed by "dB"
(decibel unit). This represents a change (positive or negative) relative
to the computed value of the ‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ property within the <a
href="#aural-model">aural "box" model</a> of the selected element.
Decibels express the ratio of the squares of the new signal amplitude
(a1) and the current amplitude (a0), as per the following logarithmic
equation: volume(dB) = 20 log10 (a1 / a0)</p>
<p> When the ‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ property is set to
‘<code class=property>silent</code>’, the audio cue is also
set to ‘<code class=property>silent</code>’ (regardless of
this specified <decibel> value). Otherwise (when not ‘<code
class=property>silent</code>’), ‘<a
href="#voice-volume"><code class=property>voice-volume</code></a>’
values are always specified relatively to the volume level keywords,
which map to a user-configured scale of "preferred" loudness settings
(see the definition of ‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’). If the inherited
‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ value already contains a
decibel offset, the dB offset specific to the audio cue is combined
additively.
<p> The desired effect of an audio cue set at +0dB is that the volume
level during playback of the pre-recorded / pre-generated audio signal
is effectively the same as the loudness of live (i.e. real-time) speech
synthesis rendition. In order to achieve this effect, speech processors
are capable of directly controlling the waveform amplitude of generated
text-to-speech audio, user agents must be able to adjust the volume
output of audio cues (i.e. amplify or attenuate audio signals based on
the intrinsic waveform amplitude of digitized sound clips), and last but
not least, authors must ensure that the "normal" volume level of
pre-recorded audio cues (on average, as there may be discrete loudness
variations due to changes in the audio stream, such as intonation,
stress, etc.) matches that of a "typical" TTS voice output (based on the
‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ intended for use), given
standard listening conditions (i.e. default system volume levels,
centered equalization across the frequency spectrum). This latter
prerequisite sets a baseline that enables a user agent to align the
volume outputs of both TTS and cue audio streams within the same aural
"box" model. Due to the complex relationship between perceived audio
characteristics and the processing applied to the digitized audio
signal, we will simplify the definition of "normal" volume levels by
referring to a canonical recording scenario, whereby the attenuation is
typically indicated in decibels, ranging from 0dB (maximum audio input,
near clipping threshold) to -60dB (total silence). In this common
context, a "standard" audio clip would oscillate between these values,
the loudest peak levels would be close to -3dB (to avoid distortion),
and the relevant audible passages would have average (RMS) volume levels
as high as possible (i.e. not too quiet, to avoid background noise
during amplification). This would roughly provide an audio experience
that could be seamlessly combined with text-to-speech output (i.e. there
would be no discernible difference in volume levels when switching from
pre-recorded audio to speech synthesis). Although there exists no
industry-wide standard to support such convention, TTS engines usually
generate comparably-loud audio signals when no gain or attenuation is
specified. For voice and soft music, -15dB RMS seems to be pretty
standard.</p>
<p class=note> Note that -6.0dB is approximately half the amplitude of
the audio signal, and +6.0dB is approximately twice the amplitude.</p>
<p class=note> Note that there is a difference between an audio cue whose
volume is set to ‘<code class=property>silent</code>’ and
one whose value is ‘<code class=property>none</code>’. In
the former case, the audio cue takes up the same time as if it had been
played, but no sound is generated. In the latter case, the there is no
manifestation of the audio cue at all (i.e. no time is allocated for the
cue in the aural dimension).</p>
</dl>
<div class=example>
<p> Examples of property values:</p>
<pre>
a
{
cue-before: url(/audio/bell.aiff) -3dB;
cue-after: url(dong.wav);
}
h1
{
cue-before: url(../clips-1/pop.au) +6dB;
cue-after: url(../clips-2/pop.au) 6dB;
}
div.caution { cue-before: url(./audio/caution.wav) +8dB; }</pre>
</div>
<h3 id=cue-props-cue><span class=secno>9.2. </span>The ‘<a
href="#cue"><code class=property>cue</code></a>’ shorthand property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=cue>cue</dfn>
<tr>
<td> <em>Value:</em>
<td><‘<a href="#cue-before"><code
class=property>cue-before</code></a>’> <‘<a
href="#cue-after"><code class=property>cue-after</code></a>’>?
<tr>
<td> <em>Initial:</em>
<td>N/A (see individual properties)
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>N/A (see individual properties)
</table>
<p>The ‘<a href="#cue"><code class=property>cue</code></a>’
property is a shorthand for ‘<a href="#cue-before"><code
class=property>cue-before</code></a>’ and ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’. If two
values are given the first value is ‘<a href="#cue-before"><code
class=property>cue-before</code></a>’ and the second is ‘<a
href="#cue-after"><code class=property>cue-after</code></a>’. If
only one value is given, it applies to both properties.
<div class=example>
<p> Example of shorthand notation:</p>
<pre>
h1
{
cue-before: url(pop.au);
cue-after: url(pop.au);
}
/* ...is equivalent to: */
h1
{
cue: url(pop.au);
}</pre>
</div>
<h2 id=voice-char-props><span class=secno>10. </span>Voice characteristic
properties</h2>
<h3 id=voice-props-voice-family><span class=secno>10.1. </span>The
‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-family>voice-family</dfn>
<tr>
<td> <em>Value:</em>
<td> [[<name> | <generic-voice>],]* [<name> |
<generic-voice>] | preserve
<tr>
<td> <em>Initial:</em>
<td>implementation-dependent
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ property specifies a
prioritized list of component values that are separated by commas to
indicate that they are alternatives (this is analogous to ‘<code
class=css><a href="#font-family-def"><code
class=property>font-family</code></a></code>’ in visual style
sheets). Each component value potentially designates a speech synthesis
voice instance, by specifying match criteria (see the <a
href="#voice-selection">voice selection</a> section on this topic).
<p> <strong><generic-voice></strong> = [<age>? <gender>
<integer>?]
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_voice"><code>voice</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><name></strong>
<dd>
<p>Values are specific voice instances (e.g., Mike, comedian, mary,
carlos2, "valley girl"). Voice names must either be given quoted as <a
href="#strings-def">strings</a>, or unquoted as a sequence of one or
more <a href="#identifier-def">identifiers</a>.</p>
<p class=note>Note that as a result, most punctuation characters, or
digits at the start of each token, must be escaped in unquoted voice
names.</p>
<p> If a sequence of identifiers is given as a voice name, the computed
value is the name converted to a string by joining all the identifiers
in the sequence by single spaces.</p>
<p> Voice names that happen to be the same as the gender keywords
(‘<code class=property>male</code>’, ‘<code
class=property>female</code>’ and ‘<code
class=property>neutral</code>’) or that happen to match the
keywords ‘<code class=property>inherit</code>’ or
‘<code class=property>preserve</code>’ must be quoted to
disambiguate with these keywords. The keywords ‘<code
class=property>initial</code>’ and ‘<code
class=property>default</code>’ are reserved for future use and
must also be quoted when used as voice names.</p>
<p class=note> Note that in <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>, voice names are
space-separated and cannot contain whitespace characters.</p>
<p> It is recommended to quote voice names that contain white space,
digits, or punctuation characters other than hyphens - even if these
voice names are valid in unquoted form - in order to improve code
clarity. For example: <code>voice-family: "john doe", "Henry
the-8th";</code></p>
<dt> <strong><age></strong>
<dd>
<p> Possible values are ‘<code class=property>child</code>’,
‘<code class=property>young</code>’ and ‘<code
class=property>old</code>’, indicating the preferred age category
to match during voice selection. The mapping with <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a> ages is defined as follows:
‘<code class=property>child</code>’ = 6 y/o, ‘<code
class=property>young</code>’ = 24 y/o, ‘<code
class=property>old</code>’ = 75 y/o (note that more flexible age
ranges may be used by the processor-dependent voice-matching algorithm).
</p>
<p class=note> Note that the interpretation of the relationship between a
person's age and a recognizable type of voice cannot realistically be
defined in a universal manner, as it effectively depends on numerous
criteria (cultural, linguistic, biological, etc.). The values provided
by this specification therefore represent a simplified model that can be
reasonably applied to a broad variety of speech contexts, albeit at the
cost of a certain degree of approximation. Future versions of this
specification may refine the level of precision of the voice-matching
algorithm, as speech processor implementations become more standardized.
</p>
<dt> <strong><gender></strong>
<dd>
<p> One of the keywords ‘<code class=property>male</code>’,
‘<code class=property>female</code>’, or ‘<code
class=property>neutral</code>’, specifying a male, female, or
neutral voice, respectively.</p>
<dt> <strong><integer></strong>
<dd>
<p>An <a href="#integer-def">integer</a> indicating the preferred variant
(e.g. "the second male child voice"). Only positive integers (i.e.
excluding zero) are allowed. The value "1" refers to the first of all
matching voices.</p>
<dt> <strong>preserve</strong>
<dd>
<p>Indicates that the ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ value gets inherited and
used regardless of any potential language change within the content
markup (see the section below about voice selection and language
handling). This value behaves as ‘<code
class=property>inherit</code>’ when applied to the root element.</p>
<p class=note> Note that descendants of the selected element
automatically inherit the ‘<code
class=property>preserve</code>’ value, unless it is explicitly
overridden by other ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ values (e.g. name, gender,
age).</p>
</dl>
<div class=example>
<p> Examples of invalid declarations:</p>
<pre>
voice-family: john/doe; /* forward slash character should be escaped */
voice-family: john "doe"; /* identifier sequence cannot contain strings */
voice-family: john!; /* exclamation mark should be escaped */
voice-family: john@doe; /* "at" character should be escaped */
voice-family: #john; /* identifier cannot start with hash character */
voice-family: john 1st; /* identifier cannot start with digit */</pre>
</div>
<h4 class=no-toc id=voice-selection><span class=secno>10.1.1. </span>Voice
selection, content language</h4>
<p>The ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ property is used to guide
the selection of the speech synthesis voice instance. As part of this
selection process, speech-capable user agents must also take into account
the language of the selected element within the markup content. The
"name", "gender", "age", and preferred "variant" (index) are voice
selection hints that get carried down the content hierarchy as the
‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ property value gets
inherited by descendant elements. At any point within the content
structure, the language takes precedence (i.e. has a higher priority) over
the specified CSS voice characteristics.
<p> The following list outlines the voice selection algorithm (note that
the definition of "language" is loose here, in order to cater for
dialectic variations):
<ol>
<li> If only a single voice instance is available for the language of the
selected content, then this voice must be used, regardless of the
specified CSS voice characteristics.
<li> If several voice instances are available for the language of the
selected content, then the chosen voice is the one that most closely
matches the specified name, or gender, age, and preferred voice variant.
The actual definition of "best match" is processor-dependent. For
example, in a system that only has male and female adult voices
available, a reasonable match for "voice-family: young male" may well be
a higher-pitched female voice, as this tone of voice would be close to
that of a young boy. If no voice instance matches the characteristics
provided by any of the ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ component values, the first
available voice instance (amongst those suitable for the language of the
selected content) must be used.
<li> If no voice is available for the language of the selected content, it
is recommended that user-agents let the user know about the lack of
appropriate TTS voice.
</ol>
<p>The speech synthesizer voice must be re-evaluated (i.e. the selection
process must take place once again) whenever any of the CSS voice
characteristics change within the content flow. The voice must also be
re-calculated whenever the content language changes, unless the
‘<code class=property>preserve</code>’ keyword is used (this
may be useful in cases where embedded foreign language text can be spoken
using a voice not designed for this language, as demonstrated by the
example below).
<p class=note>Note that dynamically computing a voice may lead to
unexpected lag, so user-agents should try to resolve concrete voice
instances in the document tree before the playback starts.
<div class=example>
<p>Examples of property values:</p>
<pre>
h1 { voice-family: announcer, old male; }
p.romeo { voice-family: romeo, young male; }
p.juliet { voice-family: juliet, young female; }
p.mercutio { voice-family: young male; }
p.tybalt { voice-family: young male; }
p.nurse { voice-family: amelie; }
...
<p class="romeo" xml:lang="en-US">
The French text below will be spoken with an English voice:
<span style="voice-family: preserve;" xml:lang="fr-FR">Bonjour monsieur !</span>
The English text below will be spoken with a voice different
than that corresponding to the class "romeo"
(which is inherited from the "p" parent element):
<span style="voice-family: female;">Hello sir!</span>
</p></pre>
</div>
<h3 id=voice-props-voice-rate><span class=secno>10.2. </span>The ‘<a
href="#voice-rate"><code class=property>voice-rate</code></a>’
property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-rate>voice-rate</dfn>
<tr>
<td> <em>Value:</em>
<td>[normal | x-slow | slow | medium | fast | x-fast] ||
<percentage>
<tr>
<td> <em>Initial:</em>
<td>normal
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>refer to default value
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>a keyword value, and optionally also a percentage relative to the
keyword (if not 100%)
</table>
<p>The ‘<a href="#voice-rate"><code
class=property>voice-rate</code></a>’ property manipulates the rate
of generated synthetic speech in terms of words per minute.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_prosody"><code>rate</code>
attribute of the <code>prosody</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong>normal</strong>
<dd>
<p>Represents the default rate produced by the speech synthesizer for the
currently active voice. This is processor-specific and depends on the
language, dialect and on the "personality" of the voice.</p>
<dt><strong>x-slow</strong>, <strong>slow</strong>,
<strong>medium</strong>, <strong>fast</strong> and
<strong>x-fast</strong>
<dd>
<p>A sequence of monotonically non-decreasing speaking rates that are
implementation and voice -specific. For example, typical values for the
English language are (in words per minute) x-slow = 80, slow = 120,
medium = between 180 and 200, fast = 500.</p>
<dt> <strong><percentage></strong>
<dd>
<p>Only non-negative <a href="#percentage-def">percentage</a> values are
allowed. This represents a change relative to the given keyword value
(see enumeration above), or to the default value for the root element,
or otherwise to the inherited speaking rate (which may itself be a
combination of a keyword value and of a percentage, in which case
percentages are combined multiplicatively). For example, 50% means that
the speaking rate gets multiplied by 0.5 (half the value).</p>
</dl>
<div class=example>
<p>Examples of inherited values:</p>
<pre>
<body>
<e1>
<e2>
<e3>
...
</e3>
</e2>
</e1>
</body>
body { voice-rate: inherit; } /* the initial value is 'normal'
(the actual speaking rate value
depends on the active voice) */
e1 { voice-rate: +50%; } /* the computed value is
['normal' and 50%], which will resolve
to the rate corresponding to 'normal'
multiplied by 0.5 (half the speaking rate) */
e2 { voice-rate: fast 120%; } /* the computed value is
['fast' and 120%], which will resolve
to the rate corresponding to 'fast'
multiplied by 1.2 (one and a half times the speaking rate) */
e3 { voice-rate: normal; /* "resets" the speaking rate to the intrinsic voice value,
the computed value is 'normal' (see comment below for actual value) */
voice-family: "another-voice"; } /* because the voice is different,
the calculated speaking rate may vary
compared to "body" (even though the computed
'voice-rate' value is the same) */
</pre>
</div>
<h3 id=voice-props-voice-pitch><span class=secno>10.3. </span>The ‘<a
href="#voice-pitch"><code class=property>voice-pitch</code></a>’
property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-pitch>voice-pitch</dfn>
<tr>
<td> <em>Value:</em>
<td><frequency> && absolute | [[x-low | low | medium |
high | x-high] || [<frequency> | <semitones> |
<percentage>]]
<tr>
<td> <em>Initial:</em>
<td>medium
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>refer to inherited value
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td> one of the predefined pitch keywords if only the keyword is
specified by itself, otherwise an absolute frequency calculated by
converting the keyword value (if any) to a fixed frequency based on the
current voice-family and by applying the specified relative offset (if
any)
</table>
<p>The ‘<a href="#voice-pitch"><code
class=property>voice-pitch</code></a>’ property specifies the
"baseline" pitch of the generated speech output, which depends on the used
‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ instance, and varies across
speech synthesis processors (it approximately corresponds to the average
pitch of the output). For example, the common pitch for a male voice is
around 120Hz, whereas it is around 210Hz for a female voice.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_prosody"><code>pitch</code>
attribute of the <code>prosody</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><frequency></strong>
<dd>
<p> A value in <a href="#frequency-def">frequency</a> units (Hertz or
kiloHertz, e.g. "100Hz", "+2kHz"). Values are restricted to positive
numbers when the ‘<code class=property>absolute</code>’
keyword is specified. Otherwise (when the ‘<code
class=property>absolute</code>’ keyword is not specified), a
negative value represents a decrement, and a positive value represents
an increment, relative to the inherited value. For example, "2kHz" is a
positive offset (strictly equivalent to "+2kHz"), and "+2kHz absolute"
is an absolute frequency (strictly equivalent to "2kHz absolute").</p>
<dt> <strong>absolute</strong>
<dd>
<p> If specified, this keyword indicates that the specified frequency
represents an absolute value. If a negative frequency is specified, the
computed frequency will be zero.</p>
<dt> <strong><semitones></strong>
<dd>
<p> Specifies a relative change (decrement or increment) to the inherited
value. The syntax of allowed values is a <<a
href="#number-def">number</a>> followed immediately by "st"
(semitones). A semitone interval corresponds to the step between each
note on an equal temperament chromatic scale. A semitone can therefore
be quantified as the difference between two consecutive pitch
frequencies on such scale. The ratio between two consecutive frequencies
separated by exactly one semitone is the twelfth root of two
(approximately 11011/10393, which equals exactly 1.0594631). As a
result, the value in Hertz corresponding to a semitone offset is
relative to the initial frequency the offset is applied to (in other
words, a semitone doesn't correspond to a fixed numerical value in
Hertz).</p>
<dt> <strong><percentage></strong>
<dd>
<p> Positive and negative <a href="#percentage-def">percentage</a> values
are allowed, to represent an increment or decrement (respectively)
relative to the inherited value. Computed values are calculated by
adding (or subtracting) the specified fraction of the inherited value,
to (from) the inherited value. For example, 50% (which is equivalent to
+50%) with a inherited value of 200Hz results in <code>200 +
(200*0.5)</code> = 300Hz. Conversely, -50% results in
<code>200-(200*0.5)</code> = 100Hz.</p>
<dt><strong>x-low</strong>, <strong>low</strong>, <strong>medium</strong>,
<strong>high</strong>, <strong>x-high</strong>
<dd>
<p>A sequence of monotonically non-decreasing pitch levels that are
implementation and voice specific. When the computed value for a given
element is only a keyword (i.e. no relative offset is specified), then
the corresponding absolute frequency will be re-evaluated on a voice
change. Conversely, the application of a relative offset requires the
calculation of the resulting frequency based on the current voice at the
point at which the relative offset is specified, so the computed
frequency will inherit absolutely regardless of any voice change further
down the style cascade. Authors should therefore only use keyword values
in cases where they wish that voice changes trigger the re-evaluation of
the conversion from a keyword to a concrete, voice-dependent frequency.</p>
</dl>
<p> Computed absolute frequencies that are negative are clamped to zero
Hertz. Speech-capable user agents are likely to support a specific range
of values rather than the full range of possible calculated numerical
values for frequencies. The actual values in user agents may therefore be
clamped to implementation-dependent minimum and maximum boundaries. For
example: although the 0Hz frequency can be legitimately calculated, it may
be clamped to a more meaningful value in the context of the speech
synthesizer.
<div class=example>
<p>Examples of property values:</p>
<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: 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 => value ignored ("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-range><span class=secno>10.4. </span>The ‘<a
href="#voice-range"><code class=property>voice-range</code></a>’
property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-range>voice-range</dfn>
<tr>
<td> <em>Value:</em>
<td><frequency> && absolute | [[x-low | low | medium |
high | x-high] || [<frequency> | <semitones> |
<percentage>]]
<tr>
<td> <em>Initial:</em>
<td>medium
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>refer to inherited value
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td> one of the predefined pitch keywords if only the keyword is
specified by itself, otherwise an absolute frequency calculated by
converting the keyword value (if any) to a fixed frequency based on the
current voice-family and by applying the specified relative offset (if
any)
</table>
<p> The ‘<a href="#voice-range"><code
class=property>voice-range</code></a>’ property specifies the
variability in the "baseline" pitch, i.e. how much the fundamental
frequency may deviate from the average pitch of the speech output. The
dynamic pitch range of the generated speech generally increases for a
highly animated voice, for example when variations in inflection are used
to convey meaning and emphasis in speech. Typically, a low range produces
a flat, monotonic voice, whereas a high range produces an animated voice.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_prosody"><code>range</code>
attribute of the <code>prosody</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong><frequency></strong>
<dd>
<p> A value in <a href="#frequency-def">frequency</a> units (Hertz or
kiloHertz, e.g. "100Hz", "+2kHz"). Values are restricted to positive
numbers when the ‘<code class=property>absolute</code>’
keyword is specified. Otherwise (when the ‘<code
class=property>absolute</code>’ keyword is not specified), a
negative value represents a decrement, and a positive value represents
an increment, relative to the inherited value. For example, "2kHz" is a
positive offset (strictly equivalent to "+2kHz"), and "+2kHz absolute"
is an absolute frequency (strictly equivalent to "2kHz absolute").</p>
<dt> <strong>absolute</strong>
<dd>
<p> If specified, this keyword indicates that the specified frequency
represents an absolute value. If a negative frequency is specified, the
computed frequency will be zero.</p>
<dt> <strong><semitones></strong>
<dd>
<p> Specifies a relative change (decrement or increment) to the inherited
value. The syntax of allowed values is a <<a
href="#number-def">number</a>> followed immediately by "st"
(semitones). A semitone interval corresponds to the step between each
note on an equal temperament chromatic scale. A semitone can therefore
be quantified as the difference between two consecutive pitch
frequencies on such scale. The ratio between two consecutive frequencies
separated by exactly one semitone is the twelfth root of two
(approximately 11011/10393, which equals exactly 1.0594631). As a
result, the value in Hertz corresponding to a semitone offset is
relative to the initial frequency the offset is applied to (in other
words, a semitone doesn't correspond to a fixed numerical value in
Hertz).</p>
<dt> <strong><percentage></strong>
<dd>
<p> Positive and negative <a href="#percentage-def">percentage</a> values
are allowed, to represent an increment or decrement (respectively)
relative to the inherited value. Computed values are calculated by
adding (or subtracting) the specified fraction of the inherited value,
to (from) the inherited value. For example, 50% (which is equivalent to
+50%) with a inherited value of 200Hz results in <code>200 +
(200*0.5)</code> = 300Hz. Conversely, -50% results in
<code>200-(200*0.5)</code> = 100Hz.</p>
<dt><strong>x-low</strong>, <strong>low</strong>, <strong>medium</strong>,
<strong>high</strong>, <strong>x-high</strong>
<dd>
<p>A sequence of monotonically non-decreasing pitch levels that are
implementation and voice specific. When the computed value for a given
element is only a keyword (i.e. no relative offset is specified), then
the corresponding absolute frequency will be re-evaluated on a voice
change. Conversely, the application of a relative offset requires the
calculation of the resulting frequency based on the current voice at the
point at which the relative offset is specified, so the computed
frequency will inherit absolutely regardless of any voice change further
down the style cascade. Authors should therefore only use keyword values
in cases where they wish that voice changes trigger the re-evaluation of
the conversion from a keyword to a concrete, voice-dependent frequency.</p>
</dl>
<p> Computed absolute frequencies that are negative are clamped to zero
Hertz. Speech-capable user agents are likely to support a specific range
of values rather than the full range of possible calculated numerical
values for frequencies. The actual values in user agents may therefore be
clamped to implementation-dependent minimum and maximum boundaries. For
example: although the 0Hz frequency can be legitimately calculated, it may
be clamped to a more meaningful value in the context of the speech
synthesizer.
<div class=example>
<p>Examples of inherited values:</p>
<pre>
<body>
<e1>
<e2>
<e3>
<e4>
<e5>
<e6>
...
</e6>
</e5>
</e4>
</e3>
</e2>
</e1>
</body>
body { voice-range: inherit; } /* the initial value is 'medium'
(the actual frequency value
depends on the current voice) */
e1 { voice-range: +25%; } /* the computed value is
['medium' + 25%] which resolves
to the frequency corresponding to 'medium'
plus 0.25 times the frequency
corresponding to 'medium' */
e2 { voice-range: +10Hz; } /* the computed value is
[FREQ + 10Hz] where "FREQ" is the absolute frequency
calculated in the "e1" rule above.
*/
e3 { voice-range: inherit; /* this could be omitted,
but we explicitly specify it for clarity purposes */
voice-family: "another-voice"; } /* this voice change would have resulted in
the re-evaluation of the initial 'medium' keyword
inherited by the "body" element
(i.e. conversion from a voice-dependent keyword value
to a concrete, absolute frequency),
but because relative offsets were applied down the style
cascade, the inherited value is actually the frequency
calculated at the "e2" rule above. */
e4 { voice-range: 200Hz absolute; } /* override with an absolute frequency
which doesn't depend on the current voice */
e5 { voice-range: 2st; } /* the computed value is an absolute frequency,
which is the result of the
calculation: 200Hz + two semitones
(reminder: the actual frequency corresponding to a semitone
depends on the base value to which it applies) */
e6 { voice-range: inherit; /* this could be omitted,
but we explicitly specify it for clarity purposes */
voice-family: "yet-another-voice"; } /* despite the voice change,
the computed value is the same as
for "e5" (i.e. an absolute frequency value,
independent from the current voice) */
</pre>
</div>
<h3 id=voice-props-voice-stress><span class=secno>10.5. </span>The
‘<a href="#voice-stress"><code
class=property>voice-stress</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-stress>voice-stress</dfn>
<tr>
<td> <em>Value:</em>
<td>normal | strong | moderate | none | reduced
<tr>
<td> <em>Initial:</em>
<td>normal
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>yes
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p>The ‘<a href="#voice-stress"><code
class=property>voice-stress</code></a>’ property manipulates the
strength of emphasis, which is normally applied using a combination of
pitch change, timing changes, loudness and other acoustic differences. The
precise meaning of the values therefore depend on the language being
spoken.
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_emphasis"><code>emphasis</code>
element</a> from the SSML markup language <a href="#SSML"
rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong>normal</strong>
<dd>
<p>Represents the default emphasis produced by the speech synthesizer.</p>
<dt> <strong>none</strong>
<dd>
<p>Prevents the synthesizer from emphasizing text it would normally
emphasize.</p>
<dt><strong>moderate</strong> and <strong>strong</strong>
<dd>
<p>These values are monotonically non-decreasing in strength. Their
application results in more emphasis than what the speech synthesizer
would normally produce (i.e. more than the value corresponding to
‘<code class=property>normal</code>’).</p>
<dt> <strong>reduced</strong>
<dd>
<p>Effectively the opposite of emphasizing a word.</p>
</dl>
<div class=example>
<p>Examples of property values, with HTML sample:</p>
<pre>
span.default-emphasis { voice-stress: normal; }
span.lowered-emphasis { voice-stress: reduced; }
span.removed-emphasis { voice-stress: none; }
span.normal-emphasis { voice-stress: moderate; }
span.huge-emphasis { voice-stress: strong; }
...
<p>This is a big car.</p>
<!-- The speech output from the line above is identical to the line below: -->
<p>This is a <span class="default-emphasis">big</span> car.</p>
<p>This car is <span class="lowered-emphasis">massive</span>!</p>
<!-- The "span" below is totally de-emphasized, whereas the emphasis in the line above is only reduced: -->
<p>This car is <span class="removed-emphasis">massive</span>!</p>
<!-- The lines below demonstrate increasing levels of emphasis: -->
<p>This is a <span class="normal-emphasis">big</span> car!</p>
<p>This is a <span class="huge-emphasis">big</span> car!!!</p></pre>
</div>
<h2 id=duration-props><span class=secno>11. </span>Voice duration property</h2>
<h3 id=mixing-props-voice-duration><span class=secno>11.1. </span>The
‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’ property</h3>
<table class=propdef summary="name: syntax">
<tbody>
<tr>
<td>Name:
<td> <dfn id=voice-duration>voice-duration</dfn>
<tr>
<td> <em>Value:</em>
<td>auto | <time>
<tr>
<td> <em>Initial:</em>
<td> <em>auto</em>
<tr>
<td> <em>Applies to:</em>
<td>all elements
<tr>
<td> <em>Inherited:</em>
<td>no
<tr>
<td> <em>Percentages:</em>
<td>N/A
<tr>
<td> <em>Media:</em>
<td>speech
<tr>
<td> <em>Computed value:</em>
<td>specified value
</table>
<p> The ‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’ property specifies how
long it should take to render the selected element's content (not
including <a href="#cue-props">audio cues</a>, <a href="#pause-props">
pauses</a> and <a href="#rest-props">rests</a> ). Unless the value
‘<code class=property>auto</code>’ is specified, this property
takes precedence over the ‘<a href="#voice-rate"><code
class=property>voice-rate</code></a>’ property, and should be used
to determine a suitable speaking rate for the voice. An element for which
the ‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’ property value is not
‘<code class=property>auto</code>’ may have descendants for
which the ‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’ and ‘<a
href="#voice-rate"><code class=property>voice-rate</code></a>’
properties are specified, but these must be ignored. In other words, when
a ‘<code class=property>time</code>’ is specified for the
‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’ of a selected element, it
applies to the entire element subtree (children cannot override the
property).
<p class=note> Note that the functionality provided by this property is
related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_prosody"><code>duration</code>
attribute of the <code>prosody</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<dl>
<dt> <strong>auto</strong>
<dd>
<p>Resolves to a used value corresponding to the duration of the speech
synthesis when using the inherited ‘<a href="#voice-rate"><code
class=property>voice-rate</code></a>’.</p>
<dt> <strong><time></strong>
<dd>
<p> Specifies a value in absolute <a href="#time-def">time</a> units
(seconds and milliseconds, e.g. "+3s", "250ms"). Only non-negative
values are allowed.</p>
</dl>
<h2 id=lists><span class=secno>12. </span>List items and counters styles</h2>
<p>The ‘<code class=css><a href="#list-style-type-def"> <code
class=property>list-style-type</code></a></code>’ property of <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> specifies three
types of list item markers: glyphs, numbering systems, and alphabetic
systems. The values allowed for this property are also used for the
counter() function of the ‘<a href="#content-def"><code
class=property>content</code></a>’ property. The CSS Speech module
defines how to render these styles in the aural dimension, using speech
synthesis. The ‘<code class=css><a
href="#list-style-image-def"><code
class=property>list-style-image</code></a></code>’ property of <a
href="#CSS21" rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a> is ignored, and
instead the ‘<code class=css><a href="#list-style-type-def"><code
class=property>list-style-type</code></a></code>’ is used.
<p class=note> Note that the speech rendering of new features from the CSS
Lists and Counters Module Level 3 <a href="#CSS3LIST"
rel=biblioentry>[CSS3LIST]<!--{{CSS3LIST}}--></a> is not covered in this
level of CSS Speech, but may be defined in a future specification.
<dl>
<dt> <strong>disc, circle, square</strong>
<dd>
<p> For these list item styles, the user-agent defines (possibly based on
user preferences) what equivalent phrase is spoken or what audio cue is
played. List items with graphical bullets are therefore announced
appropriately in an implementation-dependent manner.</p>
<dt> <strong>decimal, decimal-leading-zero, lower-roman, upper-roman,
georgian, armenian</strong>
<dd>
<p> For these list item styles, corresponding numbers are spoken as-is by
the speech synthesizer, and may be complemented with additional audio
cues or speech phrases in the document's language (i.e. with the same
TTS voice used to speak the list item content) in order to indicate the
presence of list items. For example, when using the English language,
the list item counter could be prefixed with the word "Item", which
would result in list items being announced with "Item one", "Item two",
etc.</p>
<dt> <strong>lower-latin, lower-alpha, upper-latin, upper-alpha,
lower-greek</strong>
<dd>
<p> These list item styles are spelled out letter-by-letter by the speech
synthesizer, in the document language (i.e. with the same TTS voice used
to speak the list item content). For example, ‘<code
class=property>lower-greek</code>’ in English would be read out as
"alpha", "beta", "gamma", etc. Conversely, ‘<code
class=property>upper-latin</code>’ in French would be read out as
/a/, /be/, /se/, etc. (phonetic notation)</p>
</dl>
<p class=note>Note that it is common for user-agents such as screen readers
to announce the nesting depth of list items, or more generally, to
indicate additional structural information pertaining to complex
hierarchical content. The verbosity of these additional audio cues and/or
speech output can usually be controlled by users, and contribute to
increasing usability. These navigation aids are implementation-dependent,
but it is recommended that user-agents supporting the CSS Speech module
ensure that these additional audio cues and speech output don't generate
redundancies or create inconsistencies (for example: duplicated or
different list item numbering scheme).
<h2 id=content><span class=secno>13. </span>Inserted and replaced content</h2>
<p class=note>Note that this entire section is non-normative.
<p>Sometimes, authors will want to specify a mapping from the source text
into another string prior to the application of the regular pronunciation
rules. This may be used for uncommon abbreviations or acronyms which are
unlikely to be recognized by the synthesizer. The ‘<a
href="#content-def"><code class=property>content</code></a>’
property can be used to replace one string by another. The functionality
provided by this property is related to the <a
href="http://www.w3.org/TR/speech-synthesis11/#edef_sub"><code>alias</code>
attribute of the <code>sub</code> element</a> from the SSML markup
language <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>.
<div class=example>
<p> In this example, the abbreviation is rendered using the content of the
title attribute instead of the element's content.</p>
<pre>
/* This replaces the content of the selected element
by the string "World Wide Web Consortium". */
abbr { content: attr(title); }
...
<abbr title="World Wide Web Consortium">W3C</abbr></pre>
</div>
<p>In a similar way, text strings in a document can be replaced by a
previously recorded version.
<div class=example>
<p>In this example - assuming the format is supported, the file is
available and the UA is configured to do so - a recording of Sir John
Gielgud's declamation of the famous monologue is played. Otherwise the UA
falls back to render the text using synthesized speech.</p>
<pre>
.hamlet { content: url(./audio/gielgud.wav); }
...
<div class="hamlet">
To be, or not to be: that is the question:
</div></pre>
</div>
<p>Furthermore, authors (or users via a user stylesheet) may add some
information to ease the understanding of structures during non-visual
interaction with the document. They can do so by using the ‘<code
class=css>::before</code>’ and ‘<code
class=css>::after</code>’ pseudo-elements. Note that different
stylesheets can be used to define the level of verbosity for additional
information spoken by screen readers.
<div class=example>
<p>This example inserts the string "Start list: " before a list and the
string "List item: " before the content of each list item. Likewise, the
string "List end: " gets inserted after the list to inform the user that
the list speech output is over.</p>
<pre>
ul::before { content: "Start list: "; }
ul::after { content: "List end. "; }
li::before { content: "List item: "; }</pre>
</div>
<p>Detailed information can be found in the CSS3 Generated and Replaced
Content module <a href="#CSS3GENCON"
rel=biblioentry>[CSS3GENCON]<!--{{CSS3GENCON}}--></a>.
<h2 id=pronunciation><span class=secno>14. </span> Pronunciation, phonemes</h2>
<p class=note>Note that this entire section is non-normative.
<p> CSS does not specify how to define the pronunciation (expressed using a
well-defined phonetic alphabet) of a particular piece of text within the
markup document. A "phonemes" property was described in earlier drafts of
this specification, but objections were raised due to breaking the
principle of separation between content and presentation (the "phonemes"
authored within aural CSS stylesheets would have needed to be updated each
time text changed within the markup document). The "phonemes"
functionality is therefore considered out-of-scope in CSS (the
presentation layer) and should be addressed in the markup / content layer.
<p> The <a
href="http://microformats.org/wiki/rel-pronunciation">"pronunciation"</a>
<code>rel</code> value allows importing pronunciation lexicons in HTML
documents using the <code>link</code> element (similar to how CSS
stylesheets can be included). The W3C PLS (Pronunciation Lexicon
Specification) <a href="#PRONUNCIATION-LEXICON"
rel=biblioentry>[PRONUNCIATION-LEXICON]<!--{{PRONUNCIATION-LEXICON}}--></a>
is one format that can be used to describe such a lexicon.
<p> Additionally, an attribute-based mechanism can be used within the
markup to author text-pronunciation associations. At the time of writing,
such mechanism isn't formally defined in the W3C HTML standard(s).
However, the <a href="http://idpf.org/epub/30">EPUB 3.0 draft
specification</a> allows (x)HTML5 documents to contain attributes derived
from the <a href="#SSML" rel=biblioentry>[SSML]<!--{{!SSML}}--></a>
specification, that describe how to pronounce text based on a particular
phonetic alphabet.</p>
<!-- p>
One avenue to explore is the use CSS to "bind" HTML text with a
phoneme (also declared in the HTML document). This would maintain a
clear separation between content and presentation, and it would allow
authors to define different pronunciations for one given text token
(Media Queries could drive the switch of stylesheet to import). This
possibility has been mentioned several times by Working Group members
as well as people from the public mailing-list, so it cannot be
ignored. However, there are architectural considerations (e.g.
collision between CSS versus HTML -defined phonemes) which make this a
lot trickier to standardize than it sounds. The
whole "speech synthesis" issue should be tackled globally at the level
of the W3C ecosystem. For example, there are many cross-cutting
concerns with the work done by the HTML-Audio and HTML-Speech
Incubator Groups.
</p -->
<h2 class=no-num id=property-index>Appendix A — Property index</h2>
<!--begin-properties-->
<table class=proptable>
<thead>
<tr>
<th>Property
<th>Values
<th>Initial
<th>Applies to
<th>Inh.
<th>Percentages
<th>Media
<tbody>
<tr>
<th><a class=property href="#cue">cue</a>
<td><‘cue-before’> <‘cue-after’>?
<td>N/A (see individual properties)
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#cue-after">cue-after</a>
<td><uri> <decibel>? | none
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#cue-before">cue-before</a>
<td><uri> <decibel>? | none
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#pause">pause</a>
<td><‘pause-before’>
<‘pause-after’>?
<td>N/A (see individual properties)
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#pause-after">pause-after</a>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#pause-before">pause-before</a>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#rest">rest</a>
<td><‘rest-before’> <‘rest-after’>?
<td>N/A (see individual properties)
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#rest-after">rest-after</a>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#rest-before">rest-before</a>
<td><time> | none | x-weak | weak | medium | strong | x-strong
<td>none
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#speak">speak</a>
<td>auto | none | normal
<td>auto
<td>all elements
<td>yes
<td>N/A
<td>speech
<tr>
<th><a class=property href="#speak-as">speak-as</a>
<td>normal | spell-out || digits || [ literal-punctuation |
no-punctuation ]
<td>normal
<td>all elements
<td>yes
<td>N/A
<td>speech
<tr>
<th><a class=property href="#voice-balance">voice-balance</a>
<td><number> | left | center | right | leftwards | rightwards
<td>center
<td>all elements
<td>yes
<td>N/A
<td>speech
<tr>
<th><a class=property href="#voice-duration">voice-duration</a>
<td>auto | <time>
<td>auto
<td>all elements
<td>no
<td>N/A
<td>speech
<tr>
<th><a class=property href="#voice-family">voice-family</a>
<td>[[<name> | <generic-voice>],]* [<name> |
<generic-voice>] | preserve
<td>implementation-dependent
<td>all elements
<td>yes
<td>N/A
<td>speech
<tr>
<th><a class=property href="#voice-pitch">voice-pitch</a>
<td><frequency> && absolute | [[x-low | low | medium |
high | x-high] || [<frequency> | <semitones> |
<percentage>]]
<td>medium
<td>all elements
<td>yes
<td>refer to inherited value
<td>speech
<tr>
<th><a class=property href="#voice-range">voice-range</a>
<td><frequency> && absolute | [[x-low | low | medium |
high | x-high] || [<frequency> | <semitones> |
<percentage>]]
<td>medium
<td>all elements
<td>yes
<td>refer to inherited value
<td>speech
<tr>
<th><a class=property href="#voice-rate">voice-rate</a>
<td>[normal | x-slow | slow | medium | fast | x-fast] ||
<percentage>
<td>normal
<td>all elements
<td>yes
<td>refer to default value
<td>speech
<tr>
<th><a class=property href="#voice-stress">voice-stress</a>
<td>normal | strong | moderate | none | reduced
<td>normal
<td>all elements
<td>yes
<td>N/A
<td>speech
<tr>
<th><a class=property href="#voice-volume">voice-volume</a>
<td>silent | [[x-soft | soft | medium | loud | x-loud] ||
<decibel>]
<td>medium
<td>all elements
<td>yes
<td>N/A
<td>speech
</table>
<!--end-properties-->
<p>The following properties are defined in other modules or specifications:
<ul>
<li> <dfn id=display-def> <a
href="http://www.w3.org/TR/CSS21/visuren.html#display-prop"> display
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=padding-def> <a
href="http://www.w3.org/TR/CSS21/box.html#padding-properties"> padding
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=border-def> <a
href="http://www.w3.org/TR/CSS21/box.html#border-properties"> border
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=margin-def> <a
href="http://www.w3.org/TR/CSS21/box.html#margin-properties"> margin
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=font-family-def> <a
href="http://www.w3.org/TR/CSS21/fonts.html#font-family-prop">
font-family </a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li><dfn id=content-def>content</dfn> <a href="#CSS3GENCON"
rel=biblioentry>[CSS3GENCON]<!--{{CSS3GENCON}}--></a>
<li> <dfn id=list-style-type-def> <a
href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-type">
list-style-type </a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=list-style-image-def> <a
href="http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-image">
list-style-image </a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
</ul>
<p>The following definitions are provided by other modules or
specifications:
<ul>
<li> <dfn id=cascade-def> <a
href="http://www.w3.org/TR/CSS21/cascade.html#cascade"> cascade
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=box-model-def> <a href="http://www.w3.org/TR/CSS21/box.html">
visual box model </a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=time-def> <a href="http://www.w3.org/TR/css3-values/#times">
time </a></dfn> <a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=frequency-def> <a
href="http://www.w3.org/TR/css3-values/#frequencies"> frequency
</a></dfn> <a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=number-def> <a
href="http://www.w3.org/TR/css3-values/#ltnumbergt"> number </a></dfn>
<a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=integer-def> <a
href="http://www.w3.org/TR/css3-values/#ltintegergt"> integer </a></dfn>
<a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=non-negative-number-def> <a
href="http://www.w3.org/TR/css3-values/#non-negative">
non-negative-number </a></dfn> <a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=percentage-def> <a
href="http://www.w3.org/TR/css3-values/#percentages"> percentage
</a></dfn> <a href="#CSS3VAL"
rel=biblioentry>[CSS3VAL]<!--{{!CSS3VAL}}--></a>
<li> <dfn id=identifier-def> <a
href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">
identifier </a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
<li> <dfn id=strings-def> <a
href="http://www.w3.org/TR/CSS21/syndata.html#strings"> strings
</a></dfn> <a href="#CSS21"
rel=biblioentry>[CSS21]<!--{{!CSS21}}--></a>
</ul>
<h2 class=no-num id=index>Appendix B — Index</h2>
<!--begin-index-->
<ul class=indexlist>
<li>aural "box" model, <a href="#aural-box-model" title="aural
"box" model"><strong>4.</strong></a>
<li>authoring tool, <a href="#authoring-tool" title="authoring
tool"><strong>#</strong></a>
<li>border, <a href="#border-def" title=border><strong>#</strong></a>
<li>cascade, <a href="#cascade-def" title=cascade><strong>#</strong></a>
<li>content, <a href="#content-def" title=content><strong>#</strong></a>
<li>cue, <a href="#cue" title=cue><strong>9.2.</strong></a>
<li>cue-after, <a href="#cue-after"
title=cue-after><strong>9.1.</strong></a>
<li>cue-before, <a href="#cue-before"
title=cue-before><strong>9.1.</strong></a>
<li>display, <a href="#display-def" title=display><strong>#</strong></a>
<li>document, <a href="#document" title=document><strong>#</strong></a>
<li>documents, <a href="#document" title=documents><strong>#</strong></a>
<li>font-family, <a href="#font-family-def"
title=font-family><strong>#</strong></a>
<li>frequency, <a href="#frequency-def"
title=frequency><strong>#</strong></a>
<li>identifier, <a href="#identifier-def"
title=identifier><strong>#</strong></a>
<li>integer, <a href="#integer-def" title=integer><strong>#</strong></a>
<li>list-style-image, <a href="#list-style-image-def"
title=list-style-image><strong>#</strong></a>
<li>list-style-type, <a href="#list-style-type-def"
title=list-style-type><strong>#</strong></a>
<li>margin, <a href="#margin-def" title=margin><strong>#</strong></a>
<li>non-negative-number, <a href="#non-negative-number-def"
title=non-negative-number><strong>#</strong></a>
<li>number, <a href="#number-def" title=number><strong>#</strong></a>
<li>padding, <a href="#padding-def" title=padding><strong>#</strong></a>
<li>pause, <a href="#pause" title=pause><strong>7.2.</strong></a>
<li>pause-after, <a href="#pause-after"
title=pause-after><strong>7.1.</strong></a>
<li>pause-before, <a href="#pause-before"
title=pause-before><strong>7.1.</strong></a>
<li>percentage, <a href="#percentage-def"
title=percentage><strong>#</strong></a>
<li>renderer, <a href="#renderer" title=renderer><strong>#</strong></a>
<li>rest, <a href="#rest" title=rest><strong>8.2.</strong></a>
<li>rest-after, <a href="#rest-after"
title=rest-after><strong>8.1.</strong></a>
<li>rest-before, <a href="#rest-before"
title=rest-before><strong>8.1.</strong></a>
<li>speak, <a href="#speak" title=speak><strong>6.1.</strong></a>
<li>speak-as, <a href="#speak-as" title=speak-as><strong>6.2.</strong></a>
<li>strings, <a href="#strings-def" title=strings><strong>#</strong></a>
<li>style sheet, <a href="#style-sheet" title="style
sheet"><strong>#</strong></a>
<ul>
<li>as conformance class, <a href="#style-sheet0" title="style sheet, as
conformance class"><strong>#</strong></a>
</ul>
<li>time, <a href="#time-def" title=time><strong>#</strong></a>
<li>UA, <a href="#ua" title=UA><strong>#</strong></a>
<li>User Agent, <a href="#user-agent" title="User
Agent"><strong>#</strong></a>
<li>visual box model, <a href="#box-model-def" title="visual box
model"><strong>#</strong></a>
<li>voice-balance, <a href="#voice-balance"
title=voice-balance><strong>5.2.</strong></a>
<li>voice-duration, <a href="#voice-duration"
title=voice-duration><strong>11.1.</strong></a>
<li>voice-family, <a href="#voice-family"
title=voice-family><strong>10.1.</strong></a>
<li>voice-pitch, <a href="#voice-pitch"
title=voice-pitch><strong>10.3.</strong></a>
<li>voice-range, <a href="#voice-range"
title=voice-range><strong>10.4.</strong></a>
<li>voice-rate, <a href="#voice-rate"
title=voice-rate><strong>10.2.</strong></a>
<li>voice-stress, <a href="#voice-stress"
title=voice-stress><strong>10.5.</strong></a>
<li>voice-volume, <a href="#voice-volume"
title=voice-volume><strong>5.1.</strong></a>
</ul>
<!--end-index-->
<h2 class=no-num id=definitions>Appendix C — Definitions</h2>
<h3 class=no-num id=glossary>Glossary</h3>
<p>The following terms and abbreviations are used in this module.
<dl>
<dt> <dfn id=ua>UA</dfn>
<dt> <dfn id=user-agent>User Agent</dfn>
<dd>
<p>A program that reads and/or writes CSS style sheets on behalf of a
user in either or both of these categories: programs whose purpose is to
render <a href="#document">documents</a> (e.g., browsers) and programs
whose purpose is to create style sheets (e.g., editors). A UA may fall
into both categories. (There are other programs that read or write style
sheets, but this module gives no rules for them.)</p>
<dt> <dfn id=document title="document|documents">document</dfn>
<dd>
<p>A tree-structured document with elements and attributes, such as an
SGML or XML document <a href="#XML11"
rel=biblioentry>[XML11]<!--{{!XML11}}--></a>.</p>
<dt> <dfn id=style-sheet>style sheet</dfn>
<dd>
<p>A <a href="http://www.w3.org/TR/CSS21/conform.html#style-sheet">CSS
style sheet</a></p>
</dl>
<h3 class=no-num id=conformance>Conformance</h3>
<p>Conformance requirements are expressed with a combination of descriptive
assertions and RFC 2119 terminology. The key words "MUST", "MUST NOT",
"REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED",
"MAY", and "OPTIONAL" in the normative parts of this document are to be
interpreted as described in RFC 2119. However, for readability, these
words do not appear in all uppercase letters in this specification. All of
the text of this specification is normative except sections explicitly
marked as non-normative, examples, and notes. <a href="#RFC2119"
rel=biblioentry>[RFC2119]<!--{{!RFC2119}}--></a>
<p>Examples in this specification are introduced with the words "for
example" or are set apart from the normative text with
<code>class="example"</code>, like this:
<div class=example>
<p>This is an example of an informative example.</p>
</div>
<p>Informative notes begin with the word "Note" and are set apart from the
normative text with <code>class="note"</code>, like this:
<p class=note>Note, this is an informative note.
<p>Conformance to the CSS3 Speech module is defined for three classes:
<dl>
<dt> <dfn id=style-sheet0 title="style sheet!!as conformance class">style
sheet</dfn>
<dd>A <a href="http://www.w3.org/TR/CSS21/conform.html#style-sheet">CSS
style sheet</a>.
<dt> <dfn id=renderer>renderer</dfn>
<dd>A UA that interprets the semantics of a style sheet and renders <a
href="#document">documents</a> that use them.
<dt> <dfn id=authoring-tool>authoring tool</dfn>
<dd>A UA that writes a style sheet.
</dl>
<p>A style sheet is conformant to the CSS3 Speech module if all of its
declarations that use properties defined in this module have values that
are valid according to the generic CSS grammar and the individual grammars
of each property as given in this module.
<p>A renderer is conformant to the CSS3 Speech module if, in addition to
interpreting the style sheet as defined by the appropriate specifications,
it supports all the properties defined by CSS3 Speech module by parsing
them correctly and rendering the document accordingly. However the
inability of a UA to correctly render a document due to limitations of the
device does not make the UA non-conformant. (For example, a UA is not
required to render color on a monochrome monitor.)
<p>An authoring tool is conformant to CSS3 Speech module if it writes
syntactically correct style sheets, according to the generic CSS grammar
and the individual grammars of each property in this module.</p>
<!-- h3 class="no-num" id="levels">Levels</h3>
<p><em>This section is informative.</em> CSS has different levels of
features, each a subset of the other. (See [[CSSBEIJING]] for a full
explanation.) The lists below describe which features from this
specification are in each level.
<h4 class="no-num" id="level-1">CSS Level 1</h4>
<ul>
<li>'background-color'
<li>'background-image' only one image (no layers)
<li>'background-repeat': only 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat'
<li>'background-attachment': only 'scroll' | 'fixed'
<li>'background-position': only one or two values allowed
<li>'background' shorthand: only color, image, repeat, attachment and position
<li>'border-color' properties
<li>'border-style' properties
<li>'border-width' properties
<li>'border-top', 'border-bottom', 'border-right', 'border-left', and 'border' shorthands
</ul>
<h4 class="no-num" id="level-2">CSS Level 2</h4>
<ul>
<li>'background-color'
<li>'background-image': only one image (no layers)
<li>'background-repeat': only 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat'
<li>'background-attachment': only 'scroll' | 'fixed'
<li>'background-position': only one or two values allowed
<li>'background': only color, image, repeat, attachment and position
<li>'border-color' properties
<li>'border-style' properties
<li>'border-width' properties
<li>'border-top', 'border-bottom', 'border-right', 'border-left', and 'border' shorthands
</ul>
<h4 class="no-num" id="level-3">CSS Level 3</h4>
<ul>
<li>All features described in the CSS3 Speech module
</ul -->
<h3 class=no-num id=exit>CR exit criteria</h3>
<p>As described in the W3C process document, a <a
href="http://www.w3.org/2005/10/Process-20051014/tr.html#cfi">Candidate
Recommendation</a> (CR) is a specification that W3C recommends for use on
the Web. The next stage is "Recommendation" when the specification is
sufficiently implemented.
<p>For this specification to be proposed as a W3C Recommendation, the
following conditions shall be met. There must be at least two independent,
interoperable implementations of each feature. Each feature may be
implemented by a different set of products, there is no requirement that
all features be implemented by a single product. For the purposes of this
criterion, we define the following terms:
<dl>
<dt>independent
<dd>each implementation must be developed by a different party and cannot
share, reuse, or derive from code used by another qualifying
implementation. Sections of code that have no bearing on the
implementation of this specification are exempt from this requirement.
<dt>interoperable
<dd>passing the respective test case(s) in the official CSS test suite,
or, if the implementation is not a Web browser, an equivalent test. Every
relevant test in the test suite should have an equivalent test created if
such a user agent (UA) is to be used to claim interoperability. In
addition if such a UA is to be used to claim interoperability, then there
must one or more additional UAs which can also pass those equivalent
tests in the same way for the purpose of interoperability. The equivalent
tests must be made publicly available for the purposes of peer review.
<dt>implementation
<dd>a user agent which:
<ol class=inline>
<li>implements the specification.
<li>is available to the general public. The implementation may be a
shipping product or other publicly available version (i.e., beta
version, preview release, or "nightly build"). Non-shipping product
releases must have implemented the feature(s) for a period of at least
one month in order to demonstrate stability.
<li>is not experimental (i.e., a version specifically designed to pass
the test suite and is not intended for normal usage going forward).
</ol>
</dl>
<p>A minimum of sixth months of the CR period must have elapsed. This is to
ensure that enough time is given for any remaining major errors to be
caught.
<p>Features will be dropped if two or more interoperable implementations
are not found by the end of the CR period.
<p>Features may/will also be dropped if adequate/sufficient (by judgment of
CSS WG) tests have not been produced for those feature(s) by the end of
the CR period.
<h2 class=no-num id=ack>Appendix D — Acknowledgements</h2>
<p>The editors would like to thank the members of the W3C Voice Browser and
Cascading Style Sheets working groups for their assistance in preparing
this specification. Special thanks to Ellen Eide (IBM) for her detailed
comments, and to Elika Etemad (Fantasai) for her thorough reviews.
<h2 class=no-num id=changes>Appendix E — Changes from previous draft</h2>
<p> Note that the <a
href="http://www.w3.org/TR/2011/WD-css3-speech-20110419">previous Working
Draft</a> includes <a
href="http://www.w3.org/TR/2011/WD-css3-speech-20110419#changes">its own
list of changes</a>, which - for succinctness - is not repeated here.
<ul>
<li>Renamed ‘<code class=property>voice-pitch-range</code>’ to
‘<a href="#voice-range"><code
class=property>voice-range</code></a>’, which is compatible with
SSML's notation, and removes the possibility to interpret this property
as being a subset of ‘<a href="#voice-pitch"><code
class=property>voice-pitch</code></a>’.
<li>Fixed "computed value" for ‘<a href="#voice-pitch"><code
class=property>voice-pitch</code></a>’ and ‘<a
href="#voice-range"><code class=property>voice-range</code></a>’
properties, and added the possibility to combine a keyword with a
relative change.
<li>Removed the "phonemes" property (and its associated "@alphabet"
at-rule).
<li>Renamed ‘<code class=property>speakability</code>’ to
‘<a href="#speak"><code class=property>speak</code></a>’, and
‘<a href="#speak"><code class=property>speak</code></a>’ to
‘<a href="#speak-as"><code
class=property>speak-as</code></a>’. Reorganized the ‘<a
href="#speak-as"><code class=property>speak-as</code></a>’ values
to allow mixing different types.
<li>Added support for lists and counters (item styles, numbering, etc.).
<li>Adjusted the [initial] value for shorthand properties, to be
consistent with other CSS specifications (i.e. "see individual
properties"), and removed the erroneous "inherit" value.
<li>Fixed ‘<a href="#voice-volume"><code
class=property>voice-volume</code></a>’ by conforming to SSML 1.1
(dB scale, etc.).
<li>Fixed the [initial] values for ‘<a href="#pause"><code
class=property>pause</code></a>’ and ‘<a href="#rest"><code
class=property>rest</code></a>’, which should be zero (were
"implementation-dependent").
<li>Corrected the [initial] values for ‘<a href="#voice-range"><code
class=property>voice-range</code></a>’ and ‘<a
href="#voice-pitch"><code class=property>voice-pitch</code></a>’ to
"medium".
<li>Added an "auto" value to ‘<a href="#voice-duration"><code
class=property>voice-duration</code></a>’, which is the [initial]
property value as well.
<li>Handling of ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ values outside of the
allowed range (clamping).
<li>Fixed ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ prose to better explain
the relationship between author intent (stereo sound distribution) and
actual user sound system setup (mono, stereo, or surround speaker layout
/ mixing capabilities).
<li>Added prose for ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’ to describe the mapping
between stereo left-right sound axis and three-dimensional sound stage
(azimuth support in future versions of CSS-Speech).
<li>Fixed the "computed value" for ‘<a href="#voice-balance"><code
class=property>voice-balance</code></a>’.
<li>Added the ‘<code class=property>normal</code>’ value for
voice-rate ("default" in SSML 1.1).
<li>Fixed the "computed value" for voice-rate, and added the possibility
to combine keywords and percentages (to be consistent with ‘<a
href="#voice-volume"><code
class=property>voice-volume</code></a>’). Added an example to
illustrate inheritance and value resolution.
<li>Renamed voice-family fields to be consistent with SSML.
<li>Improved the ‘<a href="#voice-family"><code
class=property>voice-family</code></a>’ selection algorithm to
cater for language changes.
<li>Separated definition of semitones (pitch properties).
<li>More consistent behavior when audio cue URI fails (for whatever
reason).
<li>Enabled voice-family names to contain spaces, matching ‘<code
class=property>font-family</code>’ syntax which is based on quoted
strings and concatenated identifiers.
<li>Added a new section to define the relationship of this specification
with CSS2.1.
<li>Added the missing "Computed value" line to each property definition.
<li>Cleaned-up the list of module dependencies, and removed redundant
"module dependencies" section.
<li> Voice age keywords now mapped to SSML ages.
<li>Improved the pause collapsing prose, removed redundant paragraphs.
<li>Added the missing ‘<code class=property>normal</code>’
value for ‘<a href="#voice-stress"><code
class=property>voice-stress</code></a>’.
<li>Separated the ‘<code class=property>absolute</code>’
keyword for ‘<a href="#voice-pitch"><code
class=property>voice-pitch</code></a>’ and ‘<a
href="#voice-range"><code class=property>voice-range</code></a>’.
<li>Improved document structure by adding sub-sections.
<li>Removed the implicit ‘<code class=property>inherit</code>’
value for all properties.
<li>Fixed typos and made other minor edits.
</ul>
<!-- For reference only, changes in previous draft: -->
<!-- ul>
<li>Removed the "mark" property, see the <a href="http://lists.w3.org/Archives/Public/www-style/2011Feb/0029.html">Working Group resolution</a></li>
<li>Added the 'speakability' property and removed the 'none' value of the 'speak' property,
as per this <a href="http://lists.w3.org/Archives/Public/www-style/2011Jan/0483.html">discussion</a></li>
<li>Fixed 'voice-family' grammar as per <a href="http://lists.w3.org/Archives/Public/www-style/2010Dec/0231.html">this discussion</a></li>
<li>The volume level of audio cues can only be set relatively to the inherited 'voice-volume' property (to avoid cues being spoken when the main element is silent, which contradicts the "aural box model").</li>
<li>Added "HTML" to "CSS defines aural properties that give control over rendering
XML to speech" in the abstract.</li>
<li>Removed unused normative links to CSS3 modules (actually moved to informative references), now the only dependency is CSS3 Values and Units.</li>
<li>Removed issue about the 'sub' SSML element given that the CSS "content" replacement functionality addresses the same requirement.</li>
<li>Added support for semitones in pitch alterations.</li>
<li>Added reference to "time" values syntax (s, ms) for 'voice-duration'.</li>
<li>Moved "content" outside of "phonetics", as the ::before and ::after use-cases do not relate to pronunciation rules (this is actually more similar to audio cues, only applied with text rather than audio files)</li>
<li>Added prose to explicitly support alphabet other than IPA, via the "x-" vendor-specific prefix.</li>
<li>Reworked HTML source code to work with the <a href="http://cgi.w3.org/member-bin/process.cgi">members-only W3C pre-processor/generator</a></li>
<li>Added note about the "speech" and "aural" media types.</li>
<li>Harmonized all hyperlinks so that CSS properties get auto-linked by the pre-processor</li>
<li>Clarified computation rules for positive percentages with "+" prefixes (i.e. they do not denote increments, the regular multiplicative behavior is used).</li>
<li>Fixed IPA URL reference</li>
<li>Reorganized appendixes</li>
<li>Fixed minor typos</li>
</ul -->
<h2 class=no-num id=references>Appendix F — References</h2>
<h3 class=no-num id=normative-references>Normative references</h3>
<!--begin-normative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
<dt id=CSS21>[CSS21]
<dd>Bert Bos; et al. <a
href="http://www.w3.org/TR/2011/REC-CSS2-20110607"><cite>Cascading Style
Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 June
2011. W3C Recommendation. URL: <a
href="http://www.w3.org/TR/2011/REC-CSS2-20110607">http://www.w3.org/TR/2011/REC-CSS2-20110607</a>
</dd>
<!---->
<dt id=CSS3VAL>[CSS3VAL]
<dd>Håkon Wium Lie; Chris Lilley. <a
href="http://www.w3.org/TR/2006/WD-css3-values-20060919"><cite>CSS3
Values and Units.</cite></a> 19 September 2006. W3C Working Draft. (Work
in progress.) URL: <a
href="http://www.w3.org/TR/2006/WD-css3-values-20060919">http://www.w3.org/TR/2006/WD-css3-values-20060919</a>
</dd>
<!---->
<dt id=RFC2119>[RFC2119]
<dd>S. Bradner. <a href="http://www.ietf.org/rfc/rfc2119.txt"><cite>Key
words for use in RFCs to Indicate Requirement Levels.</cite></a> Internet
RFC 2119. URL: <a
href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a>
</dd>
<!---->
<dt id=SSML>[SSML]
<dd>Daniel C. Burnett; 双志伟 (Zhi Wei Shuang). <a
href="http://www.w3.org/TR/2010/REC-speech-synthesis11-20100907/"><cite>Speech
Synthesis Markup Language (SSML) Version 1.1.</cite></a> 7 September
2010. W3C Recommendation. URL: <a
href="http://www.w3.org/TR/2010/REC-speech-synthesis11-20100907/">http://www.w3.org/TR/2010/REC-speech-synthesis11-20100907/</a>
</dd>
<!---->
<dt id=XML11>[XML11]
<dd>Eve Maler; et al. <a
href="http://www.w3.org/TR/2006/REC-xml11-20060816"><cite>Extensible
Markup Language (XML) 1.1 (Second Edition).</cite></a> 16 August 2006.
W3C Recommendation. URL: <a
href="http://www.w3.org/TR/2006/REC-xml11-20060816">http://www.w3.org/TR/2006/REC-xml11-20060816</a>
</dd>
<!---->
</dl>
<!--end-normative-->
<h3 class=no-num id=other-references>Other references</h3>
<!--begin-informative-->
<!-- Sorted by label -->
<dl class=bibliography>
<dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
<!---->
<dt id=CSS3GENCON>[CSS3GENCON]
<dd>Ian Hickson. <a
href="http://www.w3.org/TR/2003/WD-css3-content-20030514"><cite>CSS3
Generated and Replaced Content Module.</cite></a> 14 May 2003. W3C
Working Draft. (Work in progress.) URL: <a
href="http://www.w3.org/TR/2003/WD-css3-content-20030514">http://www.w3.org/TR/2003/WD-css3-content-20030514</a>
</dd>
<!---->
<dt id=CSS3LIST>[CSS3LIST]
<dd>Tab Atkins Jr. <a
href="http://www.w3.org/TR/2011/WD-css3-lists-20110524"><cite>CSS Lists
and Counters Module Level 3.</cite></a> 24 May 2011. W3C Working Draft.
(Work in progress.) URL: <a
href="http://www.w3.org/TR/2011/WD-css3-lists-20110524">http://www.w3.org/TR/2011/WD-css3-lists-20110524</a>
</dd>
<!---->
<dt id=PRONUNCIATION-LEXICON>[PRONUNCIATION-LEXICON]
<dd>Paolo Baggia. <a
href="http://www.w3.org/TR/2008/REC-pronunciation-lexicon-20081014/"><cite>Pronunciation
Lexicon Specification (PLS) Version 1.0.</cite></a> 14 October 2008. W3C
Recommendation. URL: <a
href="http://www.w3.org/TR/2008/REC-pronunciation-lexicon-20081014/">http://www.w3.org/TR/2008/REC-pronunciation-lexicon-20081014/</a>
</dd>
<!---->
<dt id=SSML-SAYAS>[SSML-SAYAS]
<dd>Daniel C. Burnett; et al. <a
href="http://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526"><cite>SSML 1.0
say-as attribute values.</cite></a> 26 May 2005. W3C Working Group Note.
URL: <a
href="http://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526">http://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526</a>
</dd>
<!---->
</dl>
<!--end-informative-->
</html>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-default-doctype-name:"html"
sgml-minimize-attributes:t
End:
-->