results
234 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
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>Results of Questionnaire HTML WG tasks - Web-Based Straw-poll and Balloting System</title>
<link rel='stylesheet' type='text/css' href='/2002/09/wbs/style.css' title='default' /><link rel='alternate' type='application/atom+xml' href='/2002/09/wbs/myQuestionnaires.atom' title='ATOM feed of my Questionnaires' /><link rel='stylesheet' type='text/css' href='/StyleSheets/public' /><script type='text/javascript' src='http://www.w3.org/2008/05/table_processing.js'></script>
<script type='text/javascript' src='/2002/09/wbs/results_processing.js'></script>
<link rel='start' href='/2002/09/wbs/' title='WBS Home page' /><link rel='bookmark' href='/2002/09/wbs/myQuestionnaires' title='My questionnaires' /><link rel='bookmark' href='/2002/09/wbs/showq' title='List of open questionnaires' /></head>
<body>
<div class='head'><a href="/"><img src='/Icons/w3c_home' alt='W3C' height='48'
width='72' /></a>
<a href='/2002/09/wbs/'>WBS Home</a></div>
<h1>Results of Questionnaire <a href='./'><cite>HTML WG tasks</cite></a></h1>
<div id='Menu'>
<p><span class='navhead'>Nearby:</span><a accesskey='h' href='/2002/09/wbs/'>WBS Home</a><span
class='dot'>·</span><a href='/2002/09/wbs/showq'
title='Current questionnaires for all the groups'>Current
questionnaires</a><span class='dot'>·</span><a accesskey='m'
href='/2002/09/wbs/myQuestionnaires' title='List of questionnaires
you are supposed to answer'><em>My</em> questionnaires</a><span
class='dot'>·</span><a href='/2004/01/pp-impl/'
title='Working Group management system and Call for
Participation'><abbr title='Working Group'>WG</abbr> Management
(<abbr title='Implementation of the Patent Policy'>IPP</abbr>)</a><span class='dot'>·</span><a href='/2000/09/dbwg/details?group=40318'>Group details</a></p>
</div>
<div id='Content'><p>The <a href='results'>results of this questionnaire</a> are available to anybody.</p><p>This questionnaire was open from 2007-04-24 to 2009-12-31.</p>
<p>132 answers have been received.</p><p>Jump to results for question:</p><ol>
<li><a href='#xbgbio'>What background experience and expertise do you bring to the group?</a></li>
<li><a href='#xtasks'>What tasks are you here to help with?</a></li>
<li><a href='#xwhichsec'>Which section(s) are you planning to review in detail in the coming weeks?</a></li>
<li><a href='#xrevwhen'>When do you plan to complete your detailed review of the above section(s)?</a></li>
</ol>
<div class='question'>
<h3><a id='xbgbio' name='xbgbio'>What background experience and expertise do you bring to the group?</a></h3>
<p>Please say a few words about any relevant background experience that you bring to the HTML WG.</p>
<h4>Details</h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Responder</th>
<th scope='col' class='meta'>What background experience and expertise do you bring to the group?</th></tr>
</thead>
<tbody>
<tr><th scope='row'>Chasen Le Hara</th>
<td class='meta'>I am very, very familiar with the HTML 4 spec (and the XTML 1 "spec," but that's not saying much). I write XHTML every day, CSS every other day, and JS at least once a week.</td></tr>
<tr><th scope='row'>Dylan Smith</th>
<td class='meta'>Daily user of a blithering array of tag-soup: html 4 (strict and trans), xhtml, xml, newsml, nitf. It'd be nice if something made the pieces fit together better.... ; )</td></tr>
<tr><th scope='row'>Murray Maloney</th>
<td class='meta'>I am a technical writer. <br />
My W3C experience is extensive.<br />
I have been a member of every HTML WG, <br />
including the earliest one in the IETF. <br />
I was product manager for HTML editing and viewing tools,<br />
including accessibility tools. <br />
<br />
I have also been quite effective in a QA role.<br />
</td></tr>
<tr><th scope='row'>Kornel Lesinski</th>
<td class='meta'>Senior-level experience in web development, including DOM scripting, OOP design patterns. <br />
Technical writer. Involved in "open the web" initiative.<br />
</td></tr>
<tr><th scope='row'>David Dailey</th>
<td class='meta'>Didn't we already fill this out when we signed up? That's fine -- I think my earlier version may have been more complete though.<br />
<br />
PhD quantitative psychology, faculty appointments in depts of math, computer science and psychology. Publications in mathematics, linguistics, computer science, psychology. Single artist gallery exhibit last year, including over 50 works in HTML, SVG, pen and ink, Adobe Photoshop. Research in graph theory and some relations to statistics. Recent manuscript submitted for publication on SVG (under review Addison Wesley). Ten years in academic administration including development of instructional software and university web policy and administration. Development of some 2000 web pages for use in instruction on interface design and javascript. Several of these are ranked in the top ten for the query by Google. I am "spec-challenged."</td></tr>
<tr><th scope='row'>Chris Veenboer</th>
<td class='meta'>Software/web development.</td></tr>
<tr><th scope='row'>Mihai Sucan</th>
<td class='meta'>Extensive experience with HTML, XHTML, CSS, DOM, and JavaScript - all started 8-9 years ago.<br />
<br />
A good knowledge of Voice Interactivity technologies, like VoiceXML, Speech Grammar, Semantic Interpretation, and related.<br />
<br />
Recent experience with SVG development.<br />
<br />
On a daily basis, I do a lot of JavaScript+DOM+PHP work (and assorted HTML+CSS work).<br />
<br />
I also have experience with Atom and RSS.<br />
<br />
I do lots of web browser testing, especially Opera and Firefox. Submitted various bug reports, ranging from UI bugs to errors in implementations of specifications (SVG, CSS, Voice, etc).<br />
<br />
Since 2006 I started to be interested of contributing to web standards, and related discussions on the WHATWG and W3C mailing lists. Since then I have contributed reviews and suggestions to Web Forms 2, HTML 5 and XBL 2. All of this work is done in spare time.<br />
<br />
My site has more details and lists most of my work: robodesign.ro/mihai.</td></tr>
<tr><th scope='row'>Asbjørn Ulsberg</th>
<td class='meta'>I've worked as a professional web developer for 7 years and had it as a hobby for 10. I've invested large amounts of time in working groups, mailing lists and similar over the years to keep up to date on the current state of affairs and I feel that I am on the technical forefront of web development in Norway.</td></tr>
<tr><th scope='row'>Brad Fults</th>
<td class='meta'>My relevant expertise lies in HTML implementation and interoperability, spec editing, ECMAScript expertise in specifications, design, implementation and performance. I have previous experience contributing to groups including the WHATWG, Mozilla and W3-Style. I regularly write about technology for the novice. I hold two academic degrees, one in Mathematics-Computer Science and one in Philosophy.</td></tr>
<tr><th scope='row'>Roger Johansson</th>
<td class='meta'>Several years' experience from writing tutorials and articles related to Web standards and best practices in Web development.</td></tr>
<tr><th scope='row'>David Baron</th>
<td class='meta'>I work on the layout engine in Mozilla/Firefox (since 1998, full time since 2003) and have been involved in the CSS community for about the same amount of time (and on the CSS Working Group since 2000). I've also been a bit involved with the WHATWG, I was on the CDF working group for about a year, and I'm Mozilla's representative to the W3C Advisory Committee.</td></tr>
<tr><th scope='row'>John-Mark Bell</th>
<td class='meta'>I've been using web technologies for 8 or so years. For about the last 4 years, I've been heavily involved in implementing support fo HTML and CSS (amongst other things) in the engine of a lightweight web browser (http://www.netsurf-browser.org)</td></tr>
<tr><th scope='row'>Tim McMahon</th>
<td class='meta'>I am a full time web designer with the American Mathematical Society and own my own design firm Eleven Limited, LLC.</td></tr>
<tr><th scope='row'>M. Jackson Wilkinson</th>
<td class='meta'>Experience developing parsers, microformats, and other standardized blocks of semantic markup. Experience in education and design that may be useful in developing reference materials.</td></tr>
<tr><th scope='row'>Maciej Stachowiak</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Neitsch</th>
<td class='meta'>Software development experience, technical aptitude, lots of free time.</td></tr>
<tr><th scope='row'>Bhasker V Kode</th>
<td class='meta'>I have been tracking developments in human-computer interaction ,which started with my college project titled ajacss where i developed low resolution css based displays and animation built entirely from css, apart from a SALT compliant speech recognition implementation for kiosks . <br />
<br />
I am currently working with TutorVista -the online tutoring startup ,in developing its rich and interactive applications using XML and SVG as the standards for communication. Apart from authoring the javascript library and client-side frameworks at work, ive has also worked on human-computer proof-of-concepts and other garage hacks since my college days .I have also been featured on Ajaxian previously for my prototypes on speech recognition with ajax ,and accessable css prototypes . These days I spends my free time spear-heading the Returnable Project - the web delivery mashup framework , authoring the Reusable javascript library , part of the team at TechEnclave.com , and other things client-side . My blog that has been active since 2003 , is over at http://bosky101.blogspot.com where i talk about javascript , scripting and technology . </td></tr>
<tr><th scope='row'>Magnus Kristiansen</th>
<td class='meta'>Some years of experience with web applications and the related technologies. Testing and writing test cases.</td></tr>
<tr><th scope='row'>Alfonso Martínez de Lizarrondo</th>
<td class='meta'>Web development for 7 years.</td></tr>
<tr><th scope='row'>Szymon Pilkowski</th>
<td class='meta'>Front-end developer - big experience with xhtml 1.0/1.1 + CSS, as well as html 4.01 and browser-compatibility issues.</td></tr>
<tr><th scope='row'>Josef Spillner</th>
<td class='meta'>I'm a researcher in the area of forms generation and thus particularly interested in WF2 adoption and evaluation of its merits. Such work will probably not always be carried out by me personally, depending on the need students might register for the WG as well, but the general idea is that I'll take care of WG-related issues for them.<br />
Beside that I'm firmly rooted in the free software community and will<br />
watch out for issues such as free codecs and KDE-related topics (KHTML renderer, Quanta+ editor) in the HTML5 specification process.</td></tr>
<tr><th scope='row'>Henrik Lied</th>
<td class='meta'>Worked with HTML for several years, been a participant to the WHATWG Mailing list.</td></tr>
<tr><th scope='row'>Stephen Stewart</th>
<td class='meta'>Web designer working with HTML for several years.</td></tr>
<tr><th scope='row'>Matthew Ratzloff</th>
<td class='meta'>Close to a decade of web development experience.</td></tr>
<tr><th scope='row'>Dominik Tomaszuk</th>
<td class='meta'>Extensive experience with HTML, CSS, JavaScript, XHTML, XML, XSLT, RDF etc.</td></tr>
<tr><th scope='row'>Thomas Higginbotham</th>
<td class='meta'>I would consider myself proficient in HTML/XHTML, CSS, JavaScript, and ASP.Net. I spend much of my spare time reading about web standards, accessibility, and best practices.</td></tr>
<tr><th scope='row'>David Hyatt</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Nicolas Le Gall</th>
<td class='meta'>I'm not so experienced in HTML, I practice web standards every day since only 2 years. I'm currently a 23 years old student and love to share my knowledge. I think I can bring a "fresh vision" of HTML, just like new HTML users (or future users).</td></tr>
<tr><th scope='row'>Serdar Kiliç</th>
<td class='meta'>Web developer since 1998. </td></tr>
<tr><th scope='row'>John Boyer</th>
<td class='meta'>Currently chair of Forms working group and editor of XForms. Previously involved heavily in authoring and editing the family of specs related to XML Signatures, including XML canonicalization, exclusive canonicalization, XML signatures, and XPath filter 2.</td></tr>
<tr><th scope='row'>Isac Lagerblad</th>
<td class='meta'>I've worked as a professional web developer for 4 years and had it as a hobby for 9. I've spent allot of time in following mailinglists and some webstandartisas bloggers. </td></tr>
<tr><th scope='row'>Rene Saarsoo</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Patrick Taylor</th>
<td class='meta'>Web developer for over 10 years. Intimately familiar with HTML 4.01 spec and the implementation issues among browsers. I've followed WHAT WG spec development for last year, I'm currently educating myself in the fine details of HTML5 as defined by WHAT WG to be better able to contribute to W3 HTML WG.</td></tr>
<tr><th scope='row'>Jonas Sicking</th>
<td class='meta'>Been working with web development since 1996 and implementing various web standards in the gecko engine since 2000. I've also been doing some W3C spec work.</td></tr>
<tr><th scope='row'>Roman Kitainik</th>
<td class='meta'>I had been introduced to HTML in 1999. Since then, the front-end web development is my profession.</td></tr>
<tr><th scope='row'>Addam Wassel</th>
<td class='meta'>Web developer/designer with several years experience creating standards-compliant HTML, XHTML, and CSS.</td></tr>
<tr><th scope='row'>James VanDyke</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Wilcox</th>
<td class='meta'>Three years practical experience designing and coding standards compliant and accessible websites using HTML4, XHTML (all flavours, including 1.1 sent as xml), and CSS. I have designed and coded numerous sites, large and small, working with organisations of varying sizes, especially as part of my full time job of the last two years as Designer and now Senior Designer at karova.com<br />
<br />
Example sites I have coded/designed include:<br />
<br />
http://shop.wwf.org.uk/ [WWF World Wide Fund for Nature]<br />
http://www.dedicatetrees.com/ [Woodland Trust]<br />
http://www.wt-store.com/ [Woodland Trust]<br />
http://stdavidshospice.org.uk/ [Small hospice charity]<br />
<br />
I have also worked on other non-web HTML based applications for business.<br />
<br />
I am familiar with creating bi-lingual websites. <br />
I have good experience of real-world usage of accessible HTML/CSS and their role/importance as exists currently in the charity and business sector.</td></tr>
<tr><th scope='row'>Anne van Kesteren</th>
<td class='meta'>I'm quite comfortable with the WHATWG proposals having contributed to them since their inception. Some more information can be found here: http://annevankesteren.nl/about</td></tr>
<tr><th scope='row'>Craig Saila</th>
<td class='meta'>Web standards advocate for nearly 6 years, contributor to CSS 2.1</td></tr>
<tr><th scope='row'>Darren West</th>
<td class='meta'>3 years web development experience using web standards, and 10 years other IT experience.</td></tr>
<tr><th scope='row'>Michael Turnwall</th>
<td class='meta'>Worked as Team Lead for all front-end code for Gateway.com bringing their site closer to web standards. Was the key proponent for web standards at my current job to the point that it became a selling point to help bring in new clients.</td></tr>
<tr><th scope='row'>James Graham</th>
<td class='meta'>Participant in WHATWG mailing list since 2004. (Co)developer of a few HTML-related tools including html5lib parser.</td></tr>
<tr><th scope='row'>Gregory Rosmaita</th>
<td class='meta'>i have been an invited expert to the Web Accessibility Initiative (WAI) since 1997. i have served on the Protocols and Formats WG (since before it had a name); the Authoring Tool Accessibility WG; the Evaluation & Repair WG; the User Agent Accessibility Guidelines WG; the Education and Outreach WG; and i served as the Interest-Group Member-at-Large of the WAI Coordination group.<br />
<br />
i played a role in drafting:<br />
<br />
* Authoring Tool Accessibility Guidelines, 1.0 (ATAG)<br />
* User Agent Accessibility Guidelines, 1.0 (UAAG)<br />
* Web Content Accessibility Guidelines, 1.0 (WCAG)<br />
* XML Authoring Guidelines (XAG)<br />
<br />
in addition, i am a member of the Acessibility Working Group (A11Y) at freestandards.org with a concentration on Compound Document Formats (CDF), Scaleable Vector Graphics (SVG), and Web APIs.</td></tr>
<tr><th scope='row'>Benjamin Hedrington</th>
<td class='meta'>7 years deep web experience, been messing around with the web more than 10. I am particularly interested the new web technologies and standards that I see emerging further every day through W3C and outside work (Mobile, Future HTML, RDFa, Semantic Web, etc.)</td></tr>
<tr><th scope='row'>Karl Dubost</th>
<td class='meta'>QA, HTML through all the specifications since the start of the Web.</td></tr>
<tr><th scope='row'>Yannick Croissant</th>
<td class='meta'>Three years practical experience coding standards compliant. Front-end developer since one year.</td></tr>
<tr><th scope='row'>Marco Battilana</th>
<td class='meta'>10 years personal and 7 years professional experience in a web-related role. HTML, CSS, Layout design, Graphic design, Identity design, UI design, User-centered design, Information Architecture, Usability.</td></tr>
<tr><th scope='row'>Andrew Smith</th>
<td class='meta'>8 years experience as a professional web designer / developer</td></tr>
<tr><th scope='row'>Jens Meiert</th>
<td class='meta'>Almost 10 years of document markup expertise with special focus on large-scale, multi-client platforms and portals (based on web standards). Familiar with affiliated topics, especially usability (applies to document authors, too, sure). W3C-close generalist.<br />
<br />
http://meiert.com/en/</td></tr>
<tr><th scope='row'>Eric Eggert</th>
<td class='meta'>Student of media informatics. Web design since 2002 with a focus on document structure and semantics. </td></tr>
<tr><th scope='row'>Stephen Axthelm</th>
<td class='meta'>software development experience, front end web development experience, documentation experience, front and back end scripting experience</td></tr>
<tr><th scope='row'>Account Deleted</th>
<td class='meta'>I'm web developer for over 4 years. From 2003 to 2005 web development is my hobby, since 2005 I work as a professional web developer.<br />
I'm a student of National Aviation University of Ukraine.</td></tr>
<tr><th scope='row'>Andrei Polushin</th>
<td class='meta'>Commercial software development, esp. document viewers. Familiar with various Web technologies from the implementation point.</td></tr>
<tr><th scope='row'>Chris Adams</th>
<td class='meta'>I am currently a student studying web development with a strong focus on usability and accessibility.</td></tr>
<tr><th scope='row'>Jirka Kosek</th>
<td class='meta'>I have been involved with markup and Web technologies since 1995. I have written several books about Web technologies (HTML, CSS, PHP, XML) and I teach all those technologies on university.<br />
<br />
I'm member of other standardization bodies OASIS (DocBook and RELAX NG TC) and ISO JTC1/SC34. My primary expertise is in XML based publishing systems and validation technologies (RELAX NG, Schematron, NVDL). </td></tr>
<tr><th scope='row'>Marco Neumann</th>
<td class='meta'>XML, OWL, RDF, Spatial Data</td></tr>
<tr><th scope='row'>Ian Hickson</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Henri Sivonen</th>
<td class='meta'>I've been involved in the WHATWG work since 2004. I'm developing an HTML5 conformance checker and wrote my master's thesis about it. Previously, I've been involved in the Atom working group (feed format—not protocol) at the IETF. I've been involved in the Mozilla project in varying and fluctuating ways since 1999.</td></tr>
<tr><th scope='row'>Lee Kowalkowski</th>
<td class='meta'>10 years web development. 5 years development lead for UK government web applications. Specialist in client-tier technologies (JS/CSS/HTML/HTTP) which I practise, study and mentor almost every day.</td></tr>
<tr><th scope='row'>Robert Burns</th>
<td class='meta'>Currently developing an HTML/XML/CSS authoring tool. Detailed familiarity with several standards including XML, XML namespaces, Unicode, MathML, CSS2, CSS3, HTML 4.01, and XHTML.</td></tr>
<tr><th scope='row'>Henrik Dvergsdal</th>
<td class='meta'>MSc Computer Science, teaching experience, developer experience. Speciality: universally accessible web applications.</td></tr>
<tr><th scope='row'>Ariel Pérez</th>
<td class='meta'>I'm a web designer and developer since 2001. I would like to contribute with my modest knowledge about HTML. Deeply interested in standards</td></tr>
<tr><th scope='row'>David Håsäther</th>
<td class='meta'>Several years of experience with HTML, XML and related technologies. Been following the WHATWG since the start (although not super closely).</td></tr>
<tr><th scope='row'>Laurens Holst</th>
<td class='meta'>Through personal interest, my work at Backbase (XBL, XForms and Web Forms 2.0-like languages) and study projects, I have gained experience with declarative web apps and various browser and W3C technologies such as Javascript, HTML, CSS, XSLT, XBL, DOM, XML Events, XML Schema, RDF, etc. I also have used XHTML2 as a document markup language for an internal publishing system.</td></tr>
<tr><th scope='row'>Joshue O Connor</th>
<td class='meta'>Years as a web developer with particular experience working directly with people with disabilities, accessibility auditing, consultancy, usability and user testing.</td></tr>
<tr><th scope='row'>Mark Martin</th>
<td class='meta'>HTML/CSS authoring full-time for 5 years. JS/DOM for 3 years.</td></tr>
<tr><th scope='row'>John Bradley</th>
<td class='meta'>I bring a strong and growing knowledge of how the semantic web can work for higher education, and how standards-based web design/development can be taught at the 2-to-4-year college level.</td></tr>
<tr><th scope='row'>Sean Fraser</th>
<td class='meta'>Eleven years in aerospace Quality Assurance writing process documents and performing data analysis; numerous years constructing web sites; and, several years advocating Web Standards.</td></tr>
<tr><th scope='row'>Benoit Piette</th>
<td class='meta'>I have +10 years of experience in web development.<br />
I am the president of a local Web development user group (W3Québec) that promotes good web development practices and web standards in the province of Québec Canada</td></tr>
<tr><th scope='row'>Denis Boudreau</th>
<td class='meta'>Extensive experience with (x)HTML, CSS and WCAG. Experience in standardization with the Quebec governement and ISO (participating in working groups related to human interfaces and accessibility).</td></tr>
<tr><th scope='row'>Carol King</th>
<td class='meta'>Several years of standards-based Web development experience: HTML, XHTML, and XML.</td></tr>
<tr><th scope='row'>Balakumar Muthu</th>
<td class='meta'>Fell in love with Web since 1996 and involved in Designing, Development and User Experience technologies. Has a Tech Blog @ http://i5bala.com</td></tr>
<tr><th scope='row'>Gonzalo Rubio</th>
<td class='meta'>I'm working on the web since 1999 and i've been the leader of the user-experience design department at a regional company for almost a year.</td></tr>
<tr><th scope='row'>Alejandro Fernandez</th>
<td class='meta'>Web designer and developer for 5 years.<br />
Interested in standards developing and usability.</td></tr>
<tr><th scope='row'>Stéphane Deschamps</th>
<td class='meta'>I have made web sites for ten years and have advocated for standards for several years, either through helping translation projects (<http://www.pompage.net/>) or by co-organising a cycle of conferences devoted to best practices (<http://www.paris-web.fr/>).</td></tr>
<tr><th scope='row'>Marek Pawlowski</th>
<td class='meta'>BSc Automatics. Active webdeveloper also involved in some intranet webapps. Major experience in HTML, CSS, JS, PHP, Object Pascal. Minor: C++, Java. Recent experience: SVG, Atom/RSS, Microformats. Experience in beta testing.</td></tr>
<tr><th scope='row'>Masataka Yakura</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Bradley</th>
<td class='meta'>Several years education and experience in front-end and back-end development and design.</td></tr>
<tr><th scope='row'>Jon Barnett</th>
<td class='meta'>intimate familiarity with HTML, XML, CSS, Javascript, DOM, XSLT, XPath, and PHP.</td></tr>
<tr><th scope='row'>Debi Orton</th>
<td class='meta'>I've been coding web sites since 1996, and have spent MANY hours wandering through the HTML/XHTML/CSS documentation learning how to make it work. I have also been involved in the New York State (U. S.) accessibility initiative since 1999. Since 2003, I have been the co-chair of the NYS Forum's IT Accessibility Committee, which provides support and resources to state agency web developers, and it is in that role that I joined this group. Although New York's policy and standards diverged from the WCAG when the threat of 2.0 seemed close (2004), we have urged using web standards, such as HTML, XHTML, CSS, XML to achieve accessibility. I write supporting documentation on a regular basis. Most recently, our Governor signed an executive order decreeing that all public meetings were to made available to the public via video webcasts -- an entirely new concept to State web developers -- and I have been working with our committee to provide information and resources on implementing the executive order in an accessible way. I have been following the ARIA group, since AJAX is becoming somewhat of a problem for people using screen readers, and saw the call to join this working group.</td></tr>
<tr><th scope='row'>Marcin Hanclik</th>
<td class='meta'>parsers, compilers, browser internals, browser development, multimedia standards</td></tr>
<tr><th scope='row'>Jason White</th>
<td class='meta'>From 1993-96 I was an observer in the International Committee for Accessible<br />
Document Design, which developed an SGML DTD for use by publishers to enable<br />
books to be made more accessible to people with print disabilities. In 1997, I<br />
joined the first W3C Web Accessibility Initiative working group, and<br />
participated in discussions surrounding the accessibility of what was then<br />
known as HTML Cougar, which later became HTML 4, and CSS 2.0. In 1998-99 I<br />
participated in the Web Content Accessibility Guidelines working group, which<br />
took WCAG 1.0 to Recommendation status. From 2000-2004 I was privileged to<br />
serve, with Gregg Vanderheiden, as co-Chair of the WCAG working group. I have<br />
also been involved in the WAI Protocols and Formats working group, discussing<br />
accessibility issues related to a number of W3C technologies. Other relevant<br />
activities include participation in technical committees of the Daisy<br />
Consortium, and involvement, as an invited expert, in the W3C's Device<br />
Independence working group. I use both braille and speech output systems to<br />
access the Web and have an abiding interest in research related to non-visual<br />
user interfaces and document processing applications.</td></tr>
<tr><th scope='row'>Sander van Lambalgen</th>
<td class='meta'>Professional web application developer since 2000-2003 (depending on where you draw the line of professionalism; see http://have-skill.com/ for specific skills). Active participant in the WHATWG during 2004 and early 2005; only lurking since, although I try to at least keep up with changes to the draft.</td></tr>
<tr><th scope='row'>Charles McCathieNevile</th>
<td class='meta'>Worked on the accessibility implementations of Opera and Amaya, and a number of authoring tools. Worked on various accessibility specs and teaching people to produce accessible web content.</td></tr>
<tr><th scope='row'>David McClure</th>
<td class='meta'>MS Computer Science, developer experience</td></tr>
<tr><th scope='row'>Eric Daspet</th>
<td class='meta'>Expertise from the authoring point of view (xml, sgml, html, accessibility)<br />
Experience in writing and reviewing spec</td></tr>
<tr><th scope='row'>Ben Boyle</th>
<td class='meta'>Web developer (10 years); interested in seeing HTML5 provide richer semantics.</td></tr>
<tr><th scope='row'>Dimitri Glazkov</th>
<td class='meta'>Web developer since 1995, write server-side software that produces, consumes, and processes markup on an organization scale (CMS), as well as client-side (JS) part of the software.</td></tr>
<tr><th scope='row'>Kai Hendry</th>
<td class='meta'>http://hendry.iki.fi/cv - my resume<br />
<br />
I'm generally interested with the Web in the mobile/handheld device context. I wrote my Master thesis about it: http://hendry.iki.fi/msc.pdf</td></tr>
<tr><th scope='row'>Matthew Raymond</th>
<td class='meta'>Web developer with several years of programming experience outside Web development. Previously worked on Web sites and various Web standards as a hobby. Degree in Computer Systems Engineering from Boston University.</td></tr>
<tr><th scope='row'>Adam Roben</th>
<td class='meta'>Have worked on Safari/WebKit since July 2006. Sporadic web development experience since 1998.</td></tr>
<tr><th scope='row'>Ryan King</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Shawn Medero</th>
<td class='meta'>I've been involved web development since 1996 (starting professionally in 1997). I've coded (and still do) HTML pages by hand but also with WYSIWYG editors for academic institutions, large corporations, small business, and personal use. I've constructed web sites that used Arabic, Bengali, Chinese, English, French, German, and many others. Additionally, I am well versed in the server-side scripting languages and content management systems that are often used to generate HTML pages. Finally, I have wore other hats like system administrator (setting up Apache or IIS), project manager and my current role as an interface designer. Currently I work at a non-profit research institution that creates large-scale linguistic data for research purposes (biomedical study, text mining, machine translation, social-linguistic study...) that are often sourced from web-based content.</td></tr>
<tr><th scope='row'>Weston Ruter</th>
<td class='meta'>I've been web developing since late 90's, and I did my undergrad in Computer Science. I have been developing a cross-browser implementation of Web Forms 2.0 (http://code.google.com/p/webforms2/) so I am pretty familiar with that spec.</td></tr>
<tr><th scope='row'>Mikko Honkala</th>
<td class='meta'>Prototype browser implementation (XHTML, CSS, SVG, XForms), XForms standardization</td></tr>
<tr><th scope='row'>Mark Baker</th>
<td class='meta'>Former HTML WG member (1999-2000), where I was a co-editor of XHTML Basic. Expertise as a former mobile browser developer (three different browsers). Also very knowledgeable about HTTP, URIs, Web history, Web & Internet architecture, REST, etc..</td></tr>
<tr><th scope='row'>Marghanita da Cruz</th>
<td class='meta'>Authoring and publishing webpages in HTML since 1997. <br />
Apache Webserver (user), Linux and MSWindows Desktops<br />
Programmer to sales roles in ICT since 1982.<br />
<br />
Assisted in Drafting AS8015-2005 Australian Standard for Corporate Governance of ICT <br />
<http://www.ramin.com.au/itgovernance/as8015.html><br />
<br />
Presentations on Video Editing and Publishing content on the Web using Ogg Theora/Vorbis <br />
<br />
Open Source Video Editing and Publication Sydney, 27th July 2006<br />
<http://www.ramin.com.au/linux/acs-os-sig.html><br />
<br />
Capture and Editing in Linux using Kino, Sydney 31 August 2007<br />
<http://www.ramin.com.au/linux/video-capture-editing-using-kino.shtml><br />
</td></tr>
<tr><th scope='row'>Joseph D'Andrea</th>
<td class='meta'>Conceived/lead AT&T Labs' Web Standards Initiative, cultivating "environmentally responsible" site development techniques benefiting content managers, developers, and designers.<br />
<br />
Developed AT&T-internal, enhanced version of GeraldO's Kinder, Gentler Validator (before it moved to the W3C and before source was available).<br />
<br />
Contributed testing/feedback to DaveR's HTML Tidy in it's early stages.<br />
<br />
Rewrote Google Enterprise's XSLT with standards compliance and accessibility in mind. (Also supports [X]HTML5.)<br />
<br />
Over fifteen years experience in IA, software engineering, key web technologies and mentoring others on their use.<br />
<br />
AT&T project info: http://www.joesapt.net/article/weeklystandards/<br />
Google project info: http://code.google.com/p/gsa-xhtml-stylesheet/<br />
LinkedIn Profile: http://www.linkedin.com/in/jdandrea</td></tr>
<tr><th scope='row'>Geoffrey Sneddon</th>
<td class='meta'>Been part of the standards movement since 2003, familiar with HTML 4.01 spec (and, as I always end up saying, <i> is NOT deprecated), decent knowledge of XML 1.0 and XHTML 1.0 specs, as well as knowledge of parts of CSS 2.1 (but what parts I do know, I know well). I'm an implementer of Atom and RSS, with plans to implement HTML5.</td></tr>
<tr><th scope='row'>Scott Vesey</th>
<td class='meta'>web browser deployment in large intranet <br />
issues for large corporate environments <br />
legacy user agent dependancies<br />
</td></tr>
<tr><th scope='row'>Justin Thorp</th>
<td class='meta'>I've done plenty of education and outreach work concerning web standards and web accessibility, including being on WAI's EOWG for the last 4+ years.<br />
<br />
I have also worked on many teams where we have authored standards-compliant large scale Web sites for all types of people and organization.</td></tr>
<tr><th scope='row'>Doug Jones</th>
<td class='meta'>spec, standard procedure authoring; instruction to users.</td></tr>
<tr><th scope='row'>Ivan Enderlin</th>
<td class='meta'>I'm developing on web since 1999, and I've always read W3C's recommandations. I try — in each of my development — to make the best work as possible. I hear by best work, a work that correctly written for everyone (including accessible). The accessibility (and a fortiori well-formed HTML, CSS, Javascript and co.) is my first reason to join and contribute to this working group. The second reason is that I think Internet has a great future ahead of him. Internet could be very powerfull, and my little (but strong) experience should be usefull.</td></tr>
<tr><th scope='row'>Wesley Upchurch</th>
<td class='meta'>7 years of web design and development experience.</td></tr>
<tr><th scope='row'>Preston Bannister</th>
<td class='meta'>Of immediate relevance is the exercise of the past few years, in replacing a desktop application with a web-based equivalent. The task called for pushing (hard!) on the limits of HTML/CSS/Javascript in current browsers, so I have a pretty good grasp of that domain. <br />
<br />
Played with HTML a bit since 1992, but stayed away from trying to do anything complex until the playing field was less of a mess (when we saw NN4 fading, IE6 dominant, and Mozilla/Firefox rising).<br />
<br />
As a single common thread, pretty much everything I've worked on in the past 25 years has had a network in the middle - all commercial software of various sorts, mostly for intranets. Worked on GUI applications (on and off) starting in the early 1980's.<br />
<br />
Played the role of security "expert" (not a title I'd claim) for most of the projects I've been involved with - mainly as I'd read up on security/encryption/authentication for a task in 1985, figured out what needed to be done, and got an unexpected visit from the NSA.<br />
<br />
An interest in artificial intelligence (AI) was what originally brought me to software. Sent a good amount of time using Lisp, after signing up for a couple AI-related projects.</td></tr>
<tr><th scope='row'>Sierk Bornemann</th>
<td class='meta'>Senior-level experience in document markup and CSS, grown since 1997. Familiar with affiliated topics, especially contributing (code, ideas) to W3C QA Tools (W3C Markup Validator) and promoting them (openSUSE Linux). W3C-close generalist.<br />
<br />
<http://sierkbornemann.de/></td></tr>
<tr><th scope='row'>Sam Kuper</th>
<td class='meta'>I've been working with HTML since 1998. Wrote help files using HTML and JavaScript for Nortel Networks in 1999 and became a freelance HTML/JavaScript/Flash debugger and author in 2000.</td></tr>
<tr><th scope='row'>Samuel Santos</th>
<td class='meta'>I work mainly as a J2EE Web Developer.<br />
I am very confident with both the HTML/XHTML and CSS specifications and strict following of web standards has always been a goal.<br />
I am a strong advocate of usability and accessibility standards, after all the web is for everyone.</td></tr>
<tr><th scope='row'>Raphael Champeimont</th>
<td class='meta'>I have written HTML documents for 5 years...</td></tr>
<tr><th scope='row'>Karl Groves</th>
<td class='meta'>I have been designing & developing websites since 1996 and have done so professionally since 2001. I have a background in psychology and philosophy and have worked as a usability & accessibility consultant for the past 4 years. During that time, I've had a lot of experiences which have lead to a broad view of how sites are being produced - by everything from small companies to Fortune 200 companies. </td></tr>
<tr><th scope='row'>aurélien levy</th>
<td class='meta'>co-writing of the french accessibility guidelines</td></tr>
<tr><th scope='row'>David Singer</th>
<td class='meta'>I am a multimedia standards person, focused on the new media tags.</td></tr>
<tr><th scope='row'>David Randall</th>
<td class='meta'>Working on the web for 9 years with extensive knowledge with xhtml/css, web standards, semantic markup and accessiblity.</td></tr>
<tr><th scope='row'>Bill Mason</th>
<td class='meta'>Eight years mostly in front-end web development: (X)HTML, CSS, Javascript, accessibility.</td></tr>
<tr><th scope='row'>Kelly Gifford</th>
<td class='meta'>Professional Web Developer/Software Engineer since 2001 (experienced in both front and back-end technologies). Started coding HTML way back in 1995.</td></tr>
<tr><th scope='row'>Sam Johnston</th>
<td class='meta'>Extensive web application development since 1996 across many environments. Technical and policy writing experience. CISSP.<br />
</td></tr>
<tr><th scope='row'>Dean Edridge</th>
<td class='meta'></td></tr>
<tr><th scope='row'>Cynthia Shelly</th>
<td class='meta'>I'm a member of the new Accessiblity Labs team at Microsoft, and am responsible for strategy and incubation around Web Accessibility. I've worked at Microsoft since 1996, mostly on projects that touched the web in one way or another. Among other roles, I was a development lead on the www.msn.com home page, a program manager on Office Graphics, and drove accessiblity for Windows Live. <br />
<br />
I have a lot of experience with making complex, dynamic web applications accessible, while still making them compelling in a highly competetive market. I have a strong interest in semantics of documents, graphics, and especially of user interface controls and their behavior.<br />
<br />
I've been a member of the WCAG 2.0 working group since 2000, and have recently joined PF.</td></tr>
<tr><th scope='row'>Dionysios Synodinos</th>
<td class='meta'>* Web Engineer,<br />
* Technical Editor for online publications and magazines &<br />
* Freelance consultant <br />
<br />
Focusing on: <br />
* Rich Internet Applications<br />
* Web Application Security<br />
* Multi-channel access and Web Services<br />
<br />
Going back and forth between server side programming and UI design for more than a decade, been involved in diverse software projects and contributed to different publications. Strong research background on the area of Mobile WWW.</td></tr>
<tr><th scope='row'>Simon Pieters</th>
<td class='meta'>I am participating in the WHATWG since 2005. I'm doing QA and spec work for Opera since 2007.</td></tr>
<tr><th scope='row'>Terry Morris</th>
<td class='meta'>I am an associate professor of Computer Information Systems at William Rainey Harper College in Palatine, IL, USA. I've been teaching web development since 1999. My background also include over a decade as an information technology professional doing software development, systems analysis, and web development. Please seem http://terrymorris.net for more information. </td></tr>
<tr><th scope='row'>Ben Millard</th>
<td class='meta'>* Professional frontend developer (HTML, CSS, accessibility) working on UK commercial and public sector websites at different scales:<br />
<http://www.sdesign1.com/ben.htm><br />
* Moderator and active participant at Accessify Forum:<br />
<http://www.accessifyforum.com/profile.php?mode=viewprofile&u=2202><br />
* Website markup collection and analysis leading to development of HTML5 accessibility features. Most recent work funded by Mozilla Foundation (1st September 2008 to 1st December 2008):<br />
<http://projectcerbera.com/web/study/><br />
* Reads about accessibility, usability, standards and web technology generally.</td></tr>
<tr><th scope='row'>Dan Connolly</th>
<td class='meta'>been involved with development/standardization of HTML, HTTP, URIs, XML, RDF, OWL, etc. Some commercial software development too.<br />
http://www.w3.org/People/Connolly/<br />
</td></tr>
<tr><th scope='row'>Julian Reschke</th>
<td class='meta'>- some product experience automatically extracting metadata from HTML (DC in meta elements, XPath based extractors)<br />
<br />
- support of RFC2629 engine in XSLT (IETF XML format for spec writing), generating (X)HTML with microformats</td></tr>
<tr><th scope='row'>Channy Yun</th>
<td class='meta'>Web standards evangelist involved in WaSP ilg group member since 2007, joining WHATWG mailing list since 2004. Mozilla l10n Korean owner from 2002.</td></tr>
<tr><th scope='row'>Larry Masinter</th>
<td class='meta'>I've been working on standards development since the early 1980s (25 years) including development of Internet and Web standards since the early 1990s. I've been deeply involved (as working group chair and document editor) in numerous efforts -- see my web site http://larry.masinter.net for a sample.</td></tr>
<tr><th scope='row'>Laura Carlson</th>
<td class='meta'>Web Designer for over a dozen years. Experience in in web standards design and development, HTML, accessibility, CSS, training, learning technologies, instructional design, and technology documentation. Education includes a Bachelors and Masters degree. For more information visit "Ten questions for Laura Carlson" Web Standards Group Interview:<br />
http://webstandardsgroup.org/features/laura-carlson.cfm</td></tr>
<tr><th scope='row'>Martin McEvoy</th>
<td class='meta'>I have been involved with HTML markup languages since 1997.<br />
I have Designed and Implemented new microformats using the microformats process.<br />
I have also built many GRDDL profiles using XSLT<br />
I also have Built a RDFa plugin for Dreamweaver</td></tr>
<tr><th scope='row'>Ryan Mitchell</th>
<td class='meta'>User of HTML for 14+ years, open source web developer with in emphasis on UX. </td></tr>
<tr><th scope='row'>John Stewart</th>
<td class='meta'>- Work in a government lab that promotes creation of international standards;<br />
- have open-source implementation of X3D;<br />
- participant in X3D design and evolution process.<br />
</td></tr>
<tr><th scope='row'>Jace Voracek</th>
<td class='meta'>I have extensive experience with web development primarily with open source coding and HTML. I also am a motion graphics designer, and look forward to the enhancement of multimedia content with HTML 5. As an iPhone developer, I am also interested in the growth of mobile web content.</td></tr>
</tbody>
</table>
</div><div class='question'>
<h3><a id='xtasks' name='xtasks'>What tasks are you here to help with?</a></h3>
<p><a href='#xtasks-sum'>summary</a> | <a href='#xtasks-resp'>by responder</a> | <a href='#xtasks-choice'>by choice</a></p>
<p>Choose one or more tasks that you're particularly interested to work on. Some options have questions; if you check one of those, please answer the question in a comment.</p>
<p>Bonus points for providing pointers to relevant work that you have already done and/or dates by which you plan to have something for the WG to look at.</p>
<p>If you're willing to lead in certain areas, please note that in a comment too.</p>
<p>See also <a href="http://esw.w3.org/topic/HtmlTaskBrainstorm">HtmlTaskBrainstorm</a>,
<a href="http://lists.w3.org/Archives/Public/public-html/2007Apr/0532.html">invitation 11 Apr</a>.
</p>
<h4><a id='xtasks-sum' name='xtasks-sum'>Summary</a></h4>
<table class='summary'>
<colgroup span='1'></colgroup>
<colgroup span='1'></colgroup><thead><tr><th scope='col' rowspan='2'>Choice</th><th scope='colgroup'>All responders</th></tr><tr>
<th scope='col'>Results</th></tr></thead>
<tbody>
<tr class='odd'>
<th scope='row'>drafting spec text (which features/sections?)</th>
<td>28</td>
</tr>
<tr class='even'>
<th scope='row'>detailed review of substantial sections of spec (which features/sections?)</th>
<td>48</td>
</tr>
<tr class='odd'>
<th scope='row'>test case development (which kind?)</th>
<td>32</td>
</tr>
<tr class='even'>
<th scope='row'>manual test result (which browser? authoring tools?)</th>
<td>29</td>
</tr>
<tr class='odd'>
<th scope='row'>test suite organization/editing</th>
<td>12</td>
</tr>
<tr class='even'>
<th scope='row'>tutorial development, quick reference, course materials, ...</th>
<td>56</td>
</tr>
<tr class='odd'>
<th scope='row'>formalization (schemas, formal rules, ...)</th>
<td>12</td>
</tr>
<tr class='even'>
<th scope='row'>a periodic survey of top web sites</th>
<td>25</td>
</tr>
<tr class='odd'>
<th scope='row'>usability testing</th>
<td>38</td>
</tr>
<tr class='even'>
<th scope='row'>design principles, goals requirements (drafting, review, liaison)</th>
<td>35</td>
</tr>
<tr class='odd'>
<th scope='row'>orientation: documenting group norms, helping people learn them</th>
<td>14</td>
</tr>
<tr class='even'>
<th scope='row'>web browser maintenance (esp. fixing bugs around spec compliance)</th>
<td>14</td>
</tr>
<tr class='odd'>
<th scope='row'>web browser enhancements</th>
<td>16</td>
</tr>
<tr class='even'>
<th scope='row'>authoring tool development</th>
<td>15</td>
</tr>
<tr class='odd'>
<th scope='row'>prototyping new features using scripting</th>
<td>20</td>
</tr>
<tr class='even'>
<th scope='row'>validation/checking service development</th>
<td>15</td>
</tr>
<tr class='odd'>
<th scope='row'>validation/checking service operations</th>
<td>8</td>
</tr>
<tr class='even'>
<th scope='row'>issue tracking, summarization, and clustering</th>
<td>22</td>
</tr>
<tr class='odd'>
<th scope='row'>security review, risk analysis</th>
<td>11</td>
</tr>
<tr class='even'>
<th scope='row'>forms taskforce</th>
<td>17</td>
</tr>
<tr class='odd'>
<th scope='row'>translation to languages other than English</th>
<td>7</td>
</tr>
<tr class='even'>
<th scope='row'>serve as scribe for teleconferences</th>
<td>3</td>
</tr>
</tbody>
</table>
<p>Skip to <a href='#xtasks-choice'>view by choice</a>.</p>
<h4><a id='xtasks-resp' name='xtasks-resp'>View by responder</a></h4>
<h4>Details</h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Responder</th>
<th scope='col'>What tasks are you here to help with?</th><th scope='col' class='meta'>Comments</th></tr>
</thead>
<tbody>
<tr><th scope='row'>Chasen Le Hara</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>authoring tool development</li>
<li>prototyping new features using scripting</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
<li>issue tracking, summarization, and clustering</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'>I'm willing to work with or build any test cases. I can check tests in Safari, Firefox, and Opera (any version of those browsers).<br />
<br />
I like making tutorials and would be happy to make some for HTML 5.</td></tr>
<tr><th scope='row'>Dylan Smith</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Murray Maloney</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'>I am not able to commit myself sufficiently to offer my services as an editor (due to ongoing health issues). However, I would like to have a significant role in the development of the HTML specification, as an occasional writer and/or as a critical reviewer.</td></tr>
<tr><th scope='row'>Kornel Lesinski</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>prototyping new features using scripting</li>
<li>validation/checking service development</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'>I'm going to write tutorials for new features, in Polish, and gather feedback.<br />
<br />
I'm testing Web Forms on some of my websites, usually writing JS implementations.<br />
<br />
I have prototype of non-schema based conformance checker + tidy tool for HTML4 and XHTML, which (if time permits) I plan to update for HTML5.<br />
</td></tr>
<tr><th scope='row'>David Dailey</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>I could help as needed (and as appropriate to my expertise) with any of the checked areas, but certainly not with all. Sign me up for slots where I can be useful and where there seems to be an undersupply of volunteers, or where my expertise (whatever that is) may prove valuable. Concerning tutorials and other training materials, I my expertise is currently limited to proofreading. After some preliminary guides are developed I might be able to help with course materials or even test suites. <br />
<br />
In the area of design principles, I could work on non-normative principles.</td></tr>
<tr><th scope='row'>Chris Veenboer</th>
<!-- MutExcStates --> <td><ul><li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mihai Sucan</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>authoring tool development</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>(when time allows)<br />
<br />
I review any section of the spec, and provide my suggestions.<br />
<br />
I can do test case development: from parsing to interoperability tests, JavaScript, DOM, HTML, XML and anything needed. I have experience making test cases for bug reports (most of them for Opera).<br />
<br />
I can do complete, in-depth reviews/surveys of top web sites, when needed. I can precisely pin-point errors made, provide tips for fixing/improving the sites, provide links to resources for learning and related work. However, given my current schedule I cannot do it periodically.<br />
<br />
Tutorial development experience: I wrote a tutorial about Voice Interactivity for Opera (see dev.opera.com). I plan to write more tutorials going over new teritory (not only Voice Interactivity).<br />
<br />
Regarding authoring tool development: I am working on my own WYSIWYG editor, which includes a page cleaner - both projects are not yet public.<br />
<br />
I plan to contribute more to this working group over the summer.</td></tr>
<tr><th scope='row'>Asbjørn Ulsberg</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>I'd like to point out that my level of involvement in the HTML WG is higly dependent on the time I have available for it. I participate in the WG on my private time which is often quite pressed already. I would love to participate in the WG in my working hours, but unfortunately my employer does not acknowledge or support my choice in joining this WG, so I have to do it outside of work.<br />
<br />
Given this, the checked items above does only reflect what I would like to contribute with, not what I will necessarily do. E.g., I can't really commit to anything with my current work situation. If my employer embraces my membership, I will be able to commit more strongly to given tasks, but at the moment, I'm just trying to contribute the best I can with discussing issues on the lists and doing as much work as possible off-list.</td></tr>
<tr><th scope='row'>Brad Fults</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Roger Johansson</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Baron</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John-Mark Bell</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'>I'm likely to be implementing the parsing section of the WHATWG spec in the relatively near future. As part of that process, I'll be reviewing that section (at least) in some detail.<br />
<br />
Being involved in UA development, more testcases are always beneficial. I'd be happy to contribute in this area as much as time allows. I probably don't have sufficient time to help with editing any testsuite, however.</td></tr>
<tr><th scope='row'>Tim McMahon</th>
<!-- MutExcStates --> <td><ul><li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>authoring tool development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>M. Jackson Wilkinson</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>willing to lead insofar as educational materials are concerned</td></tr>
<tr><th scope='row'>Maciej Stachowiak</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
<li>security review, risk analysis</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>detailed review: mainly DOM APIs and scripting issues<br />
test case development: mainly scripting & media features<br />
manual test result: happy to test on Safari (latest shipping and WebKit trunk) as needed<br />
design principles: willing to continue editing if needed and desired<br />
web browser maintenance, web browser enhancements: it's my job! at least for Safari/WebKit<br />
<br />
<br />
</td></tr>
<tr><th scope='row'>Andrew Neitsch</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bhasker V Kode</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser enhancements</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>I am a quick learner and a proficient speaker and writer. With guidance,I am willing to work on new enhancements,understand w3c writing guidelines and help in editing,and extending documents - both with my expertise as well as those who work in collaboration.</td></tr>
<tr><th scope='row'>Magnus Kristiansen</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>No particular reservations on test case types (yet).</td></tr>
<tr><th scope='row'>Alfonso Martínez de Lizarrondo</th>
<!-- MutExcStates --> <td><ul><li>authoring tool development</li>
</ul></td>
<td class='meta'>Now I'm colaborating in the development of FCKeditor, so I can try to help adding there new features or fix existing problems.</td></tr>
<tr><th scope='row'>Szymon Pilkowski</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
</ul></td>
<td class='meta'>Browser: I mostly use Opera for surfing and Firefox for development.<br />
I test my pages in: Firefox 1.5, Firefox 2.0, Opera 9, IE 6.0, IE 5.5, eventually IE 5.0.<br />
</td></tr>
<tr><th scope='row'>Josef Spillner</th>
<!-- MutExcStates --> <td><ul><li>formalization (schemas, formal rules, ...)</li>
<li>authoring tool development</li>
<li>validation/checking service development</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>A student thesis will be written to compare XF/XF-Transitional/WF2 and to find out about declarative vs. imperative forms needs (cf discussion on public-html).</td></tr>
<tr><th scope='row'>Henrik Lied</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Stewart</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Ratzloff</th>
<!-- MutExcStates --> <td><ul><li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'>Time permitting, I'm interested in helping to edit a document targeted at content authors, created from the final recommendation but pared down considerably. This would contain no implementation information.<br />
<br />
I would also like to create a document for content authors detailing differences from HTML 4.</td></tr>
<tr><th scope='row'>Dominik Tomaszuk</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>usability testing</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Higginbotham</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Hyatt</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Nicolas Le Gall</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Serdar Kiliç</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>a periodic survey of top web sites</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Boyer</th>
<!-- MutExcStates --> <td><ul><li>forms taskforce</li>
</ul></td>
<td class='meta'>I am interested in working out a forms language for HTML that meets as well as possible the requirements that inspired both XForms and WF2. I am especially interested in an architecture that allows relatively seamless scale up from html4 tag soup forms to xforms, where I view aspects of WF2 as being somewhere in the middle with possibly some pieces not being able to morph, without adjustment, to something more like xforms (which I see ultimately manifesting itself in the lifecycle of forms that grow sufficiently complex over time).</td></tr>
<tr><th scope='row'>Isac Lagerblad</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Rene Saarsoo</th>
<!-- MutExcStates --> <td><ul><li>a periodic survey of top web sites</li>
</ul></td>
<td class='meta'>I have done some previous work on analyzing/validating the markup on a number of pages [1]. Also some periodic surveys on Estonian websites [2].<br />
<br />
Both of these studies should be repeated, or some other selection of sites could be tested, but I don't have enough resources at the moment to survey more than 100,000 sites.<br />
<br />
[1] http://triin.net/2006/06/12/Coding_practices_of_web_pages<br />
[2] http://triin.net/2005/04/27/Web_Standards_in_Estonia</td></tr>
<tr><th scope='row'>Patrick Taylor</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>authoring tool development</li>
</ul></td>
<td class='meta'>Detailed review of sections of spec - which features/sections - as much as is needed<br />
Manual test result - which browser? - Safari, Opera, Firefox, legacy browsers on both Mac and Windows<br />
Tutorials, course materials - happy to assist in writing or review any tutorials or course materials<br />
Authoring tool development - will work or help on HTML5 bundle for Textmate <br />
</td></tr>
<tr><th scope='row'>Jonas Sicking</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'>Drafting for and reviewing the full HTML spec.<br />
Tests for the 4 major browsers though mostly for firefox.<br />
Browser maintenance and development for firefox.</td></tr>
<tr><th scope='row'>Roman Kitainik</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
<li>authoring tool development</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>It would be rewarding to see the skills and expertise I was lucky to accumulate put to good use. Any kind of good use.</td></tr>
<tr><th scope='row'>Addam Wassel</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>James VanDyke</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Wilcox</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'>I am interested in any elements of the HTML5 specification that will potentially differ from those set out in existing HTML/XHTML specification. Main concerns are accessibility features and semantics in the language. I would like to review any such potential modifications, with the intent to question why such changes may be being proposed, how those changes may effect existing sites, ramifications of any changes, and whether such modifications or additions enhance and clarify the accessibility and semantics of the language.</td></tr>
<tr><th scope='row'>Anne van Kesteren</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>I have worked on tests for Web Forms 2, <canvas>, the HTML5 parsing algorithm and several smaller features. I'm planning to continue that work whenever time lets me. I might be willing to help out with test suite organization, but I'm not sure if I have enough time to fully help with getting it to work.</td></tr>
<tr><th scope='row'>Craig Saila</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'>Re: review, I can tackle any section that's needed. <br />
<br />
Re: testing results in IE6, IE7, WebKit, Gecko, Opera 9 and TextMate authoring tool. </td></tr>
<tr><th scope='row'>Darren West</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>prototyping new features using scripting</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>Interested in forms and accessibility and would like to help out where ever I can. I'm very interested in maintaining and expanding HTML's semantics while also creating purposeful? UI elements.</td></tr>
<tr><th scope='row'>Michael Turnwall</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>I'm open to any section. Just let me know what is expected.</td></tr>
<tr><th scope='row'>James Graham</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>validation/checking service development</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>Test cases for parsing in particular</td></tr>
<tr><th scope='row'>Gregory Rosmaita</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>authoring tool development</li>
<li>validation/checking service development</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>i have contributed to and built test suites; i have contributed to the drafting of guidelines; i have extensive experience in usability testing; i serve as my own authoring tool; and am interested in furthering the accessibility advances of HTML 4.01</td></tr>
<tr><th scope='row'>Benjamin Hedrington</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>prototyping new features using scripting</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>I'd be willing to help efforts in any of these areas, I hesitate so say I could lead as I do not know if there are prescribed processes or procedures the W3C expects. I clicked through in response to Dan's call for more help with "issue tracking, summarization, and clustering" I don't know exactly what that entails (e.g. monitoring the Email list, convening small groups to discuss issues via phone or email, etc.) I have been told I have a way of summarizing and crystallizing an issue or discussion so other can better understand it which may be an asset here and I am willing to help.<br />
<br />
Thanks,<br />
-Ben</td></tr>
<tr><th scope='row'>Karl Dubost</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Yannick Croissant</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Battilana</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Smith</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jens Meiert</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Eric Eggert</th>
<!-- MutExcStates --> <td><ul><li>a periodic survey of top web sites</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Axthelm</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>validation/checking service operations</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>My reasons for joining the WG were in part to help make the new specifications more approachable to the average developer. I'll gladly pitch in where ever help is needed but I'd be keenly interested in helping with any tasks that where I can help improve the developer/spec interface.</td></tr>
<tr><th scope='row'>Account Deleted</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>usability testing</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>manual test result: I use Opera for development and for surfing.<br />
I test my web-projects in such browsers: Opera 9, Firefox 2.0, IE 6.0</td></tr>
<tr><th scope='row'>Andrei Polushin</th>
<!-- MutExcStates --> <td><ul><li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Chris Adams</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>web browser enhancements</li>
<li>prototyping new features using scripting</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jirka Kosek</th>
<!-- MutExcStates --> <td><ul><li>formalization (schemas, formal rules, ...)</li>
<li>validation/checking service development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Neumann</th>
<!-- MutExcStates --> <td><ul><li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ian Hickson</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>issue tracking, summarization, and clustering</li>
<li>security review, risk analysis</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>As editor I'll have to interact with all of the groups, of course, but the ones I've checked are the ones I imagine I'll spend the most time dealing with.</td></tr>
<tr><th scope='row'>Henri Sivonen</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
</ul></td>
<td class='meta'>A conformance checking service and a schema are already well under way:<br />
http://hsivonen.iki.fi/validator/html5/<br />
http://syntax.whattf.org/<br />
As a side effect, I have to do substantial review of the sections concerning parsing and non-script-related document conformance.<br />
Already participated in the drafting of the design principles.</td></tr>
<tr><th scope='row'>Lee Kowalkowski</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'>Sections to review are detailed in answer to next question.</td></tr>
<tr><th scope='row'>Robert Burns</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>web browser enhancements</li>
<li>authoring tool development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henrik Dvergsdal</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>usability testing</li>
<li>validation/checking service development</li>
</ul></td>
<td class='meta'>I can provide quick references in various formats (print, html, widgets etc.) and develop different types of formal grammars. I can also assist in accessibility reviewing.</td></tr>
<tr><th scope='row'>Ariel Pérez</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>Interested in participate in the definition of the spec, test it in available browsers and eventually elaborate some documentation in Spanish - my mother tongue- about HTML 5</td></tr>
<tr><th scope='row'>David Håsäther</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
</ul></td>
<td class='meta'>I've done some test cases, and I expect to do more.</td></tr>
<tr><th scope='row'>Laurens Holst</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>prototyping new features using scripting</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>Review of sections related to my experience and interests.</td></tr>
<tr><th scope='row'>Joshue O Connor</th>
<!-- MutExcStates --> <td><ul><li>usability testing</li>
</ul></td>
<td class='meta'>We have a full user testing facility in our head office where we can video users (using Morae) and conduct extensive user tests.</td></tr>
<tr><th scope='row'>Mark Martin</th>
<!-- MutExcStates --> <td><ul><li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>prototyping new features using scripting</li>
<li>validation/checking service operations</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Bradley</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sean Fraser</th>
<!-- MutExcStates --> <td><ul><li>a periodic survey of top web sites</li>
</ul></td>
<td class='meta'>I removed my participation in "tutorial development, quick reference, course materials,..." due to schedule conflicts. However, I will be available with to offer assistance with any member who wants it.</td></tr>
<tr><th scope='row'>Benoit Piette</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>I am still figuring out how I can help. I don't have much time, so I can't be in charge of anything big or time consuming. I should also add evangelization of the spec in our local user group. Translation of specs / tutorials in french is also something I could work on.</td></tr>
<tr><th scope='row'>Denis Boudreau</th>
<!-- MutExcStates --> <td><ul><li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Carol King</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Balakumar Muthu</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>validation/checking service development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Gonzalo Rubio</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Alejandro Fernandez</th>
<!-- MutExcStates --> <td><ul><li>usability testing</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'>If can do the translation of the documents to spanish.</td></tr>
<tr><th scope='row'>Stéphane Deschamps</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'>I'd like to contribute translations to French with an educational approach.</td></tr>
<tr><th scope='row'>Marek Pawlowski</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'>Few weeks ago I started moving some of my site to HTML5 to check its backward compatibility. I always use most recent versions of IE, Opera, Firefox and Safari.<br />
Being betatester and minor contributor of Polish leading HTML editor I can track issues connected with authoring tools.</td></tr>
<tr><th scope='row'>Masataka Yakura</th>
<!-- MutExcStates --> <td><ul><li>translation to languages other than English</li>
</ul></td>
<td class='meta'>I could do some translation work (Japanese)</td></tr>
<tr><th scope='row'>Thomas Bradley</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>Concentration on semantics, structure and accessibility.</td></tr>
<tr><th scope='row'>Jon Barnett</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>authoring tool development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Debi Orton</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>I can help with issue tracking, etc, if you use the "breadth-first" approach...I'm a little hesitant to volunteer if you use the "depth-first" approach</td></tr>
<tr><th scope='row'>Marcin Hanclik</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
</ul></td>
<td class='meta'>3.14.x</td></tr>
<tr><th scope='row'>Jason White</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'>I am interested in reviewing sections of the spec that have significant<br />
accessibility-related impact, including media elements and the forthcoming<br />
draft of the Forms section. From recent discussions it appears that most of<br />
the relevant issues have already been raised, but I will nevertheless review<br />
the draft and report any further comments. I plan to participate in working<br />
group discussions, particularly, but not exclusively, related to accessibility<br />
and hope to play a constructive role in clarifying issues, discussing<br />
proposals and facilitating the emergence of well designed and practical<br />
solutions.</td></tr>
<tr><th scope='row'>Sander van Lambalgen</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>(time permitting)<br />
<br />
Specifically for sections 3/4 of the current WHATWG web-apps draft, and sections 2/3 of the current WHATWG web-forms draft.</td></tr>
<tr><th scope='row'>Charles McCathieNevile</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
</ul></td>
<td class='meta'>Accessibility features<br />
<br />
- what were they in HTML 4 and if they worked did they get into the draft yet?<br />
- what are the new accessibility improvements in the HTML 5 draft.</td></tr>
<tr><th scope='row'>David McClure</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>authoring tool development</li>
<li>issue tracking, summarization, and clustering</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>Other tasks as needed.<br />
<br />
drafting spec text: any features/sections needed<br />
test case development: any needed<br />
manual test result: Safari/Mac, Firefox/Win are primary, but can download others<br />
<br />
<br />
<br />
<br />
</td></tr>
<tr><th scope='row'>Eric Daspet</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>issue tracking, summarization, and clustering</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'>- translation of the wg publications in french</td></tr>
<tr><th scope='row'>Ben Boyle</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'>Particular interest in forms. Also in the new document semantics (sections, articles, etc) and newly specificied behaviour of elements (e.g. DFN).</td></tr>
<tr><th scope='row'>Dimitri Glazkov</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>authoring tool development</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kai Hendry</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>Testing mobile UAs</td></tr>
<tr><th scope='row'>Matthew Raymond</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
<li>authoring tool development</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Adam Roben</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'>Happy to provide testing on Safari/WebKit</td></tr>
<tr><th scope='row'>Ryan King</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Shawn Medero</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>Happy to help run a usability session with either lo-fi (paper) or hi-fi (working demo) prototypes in the Philadelphia area. Likewise, I can test prototypes and report back my findings. I usually have access to Linux, Mac OS X, and Windows workstations.</td></tr>
<tr><th scope='row'>Weston Ruter</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>test suite organization/editing</li>
<li>prototyping new features using scripting</li>
</ul></td>
<td class='meta'>I've been developing a WF2 cross-browser implementation (a prototype of the new features using scripting); I will be continuing to prototype new features in the implementation. I've also been developing a WF2 test suite (http://webforms2.googlecode.com/svn/trunk/testsuite/index.html) to test this implementation, and I can head up the development of more tests.</td></tr>
<tr><th scope='row'>Mikko Honkala</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>My PhD thesis at should be relevant info:<br />
http://lib.tkk.fi/Diss/2007/isbn9789512285662/</td></tr>
<tr><th scope='row'>Mark Baker</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'>mostly interested in parts of spec that touch on other aspects of the Web, e.g. HTTP-related, URI-related, media types, ...</td></tr>
<tr><th scope='row'>Marghanita da Cruz</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'><http://www.ramin.com.au/linux/review-of-html5.shtml></td></tr>
<tr><th scope='row'>Joseph D'Andrea</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
</ul></td>
<td class='meta'>All MacOS X-based browsers available (and Windows XP via Parallels on MacOS). Happy to pitch in with Validation/Checking service dev/ops as needed.</td></tr>
<tr><th scope='row'>Geoffrey Sneddon</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>Detailed review of any sections that involve the parsing of any HTML documents (through reading them with a fine tooth-comb while implementing them).<br />
<br />
I'm willing to help with the tutorial/whatever writing (as general writing of things like that is far far better than my writing of specs), depending on what the decision is of what sort of document(s) to write.<br />
<br />
I'm also willing to help move data into the issue tracker, from external sources, though how much I do that will inevitably be very time dependant (as I'd rather do the two above before I did such a thing).</td></tr>
<tr><th scope='row'>Scott Vesey</th>
<!-- MutExcStates --> <td><ul><li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'>exploring release of internal test framework to public domain.</td></tr>
<tr><th scope='row'>Justin Thorp</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Doug Jones</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ivan Enderlin</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'>I'm particulary interesting by making turorial development and helping people to learn.</td></tr>
<tr><th scope='row'>Wesley Upchurch</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Preston Bannister</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>prototyping new features using scripting</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sierk Bornemann</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>validation/checking service development</li>
<li>validation/checking service operations</li>
</ul></td>
<td class='meta'>I would participate or lead (with help of experts) in working out a solution to enrich (X)HTML 5 with appropriate markup elements and attributes for an effective anti-SPAM protection mechanism against harvesting email addresses and chat messenger IDs, as http://www.w3.org/TR/xmldsig-core/ and, more concrete, http://xmlns.com/foaf/spec/#term_mbox_sha1sum provide and recommend for their purposes.</td></tr>
<tr><th scope='row'>Sam Kuper</th>
<!-- MutExcStates --> <td><ul><li>formalization (schemas, formal rules, ...)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Samuel Santos</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>issue tracking, summarization, and clustering</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>Drafting for and reviewing mainly the "Semantics and structure of HTML elements" section.<br />
Since I'm a developer, my main concern is to help producing a specification that is the best it can be for web applications.</td></tr>
<tr><th scope='row'>Raphael Champeimont</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Karl Groves</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>I would be deeply interested in assisting wherever I am capable, but primarily in areas cited above as my areas of interest. As I get my feet wet within the WG, I may be interested in expanding my involvement. <br />
<br />
Specifically regarding my answer to which sections of the spec I'd be willing to review, I would say on a broad view it would be "Semantics and structure of HTML elements" and more specifically, Section 3.3, "3.3 Documents and document fragments" as well as the discussions of forms and tables.</td></tr>
<tr><th scope='row'>aurélien levy</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>usability testing</li>
</ul></td>
<td class='meta'>accessibility features of html</td></tr>
<tr><th scope='row'>David Singer</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Randall</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bill Mason</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kelly Gifford</th>
<!-- MutExcStates --> <td><ul><li>tutorial development, quick reference, course materials, ...</li>
<li>usability testing</li>
<li>orientation: documenting group norms, helping people learn them</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sam Johnston</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>security review, risk analysis</li>
</ul></td>
<td class='meta'>Primarily interested in items relevant to web application development.</td></tr>
<tr><th scope='row'>Dean Edridge</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Cynthia Shelly</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>issue tracking, summarization, and clustering</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'>My primary goal in this group is around driving practical technical solutions for tricky accessibiltiy problems, in a way that can meet the needs of both accessibility consumers and mainstream web authors. I'm happy to do whatever is needed to further that goal. <br />
<br />
Areas where I think I can have the most impact are forms, reviewing existing spec text, and issue tracking. I'd be glad to write spec text or test cases where needed, and I've done both for WCAG.</td></tr>
<tr><th scope='row'>Dionysios Synodinos</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>security review, risk analysis</li>
<li>forms taskforce</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Simon Pieters</th>
<!-- MutExcStates --> <td><ul><li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Terry Morris</th>
<!-- MutExcStates --> <td><ul><li>a periodic survey of top web sites</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ben Millard</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>a periodic survey of top web sites</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>* Research into accessible table markup:<br />
<http://projectcerbera.com/web/study/2007/tables/><br />
* Newest round of research, with broader scope:<br />
<http://projectcerbera.com/web/study/2008/collection/><br />
* Some ability to summarise differing views on controversial issues.<br />
* Trends, changes and practices in the web industry.<br />
* Tidying markup examples in discussions and examples.<br />
* Accessibility impact of proposals.</td></tr>
<tr><th scope='row'>Dan Connolly</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>validation/checking service development</li>
<li>issue tracking, summarization, and clustering</li>
<li>serve as scribe for teleconferences</li>
</ul></td>
<td class='meta'>I'm particularly interested in testing the tree construction stuff in a validator-like online service.</td></tr>
<tr><th scope='row'>Julian Reschke</th>
<!-- MutExcStates --> <td><ul><li>formalization (schemas, formal rules, ...)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>issue tracking, summarization, and clustering</li>
<li>serve as scribe for teleconferences</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Channy Yun</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Larry Masinter</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>test suite organization/editing</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>formalization (schemas, formal rules, ...)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>orientation: documenting group norms, helping people learn them</li>
<li>authoring tool development</li>
<li>prototyping new features using scripting</li>
<li>issue tracking, summarization, and clustering</li>
<li>security review, risk analysis</li>
<li>serve as scribe for teleconferences</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Laura Carlson</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>design principles, goals requirements (drafting, review, liaison)</li>
<li>issue tracking, summarization, and clustering</li>
</ul></td>
<td class='meta'>TEXT ALTERNATIVES ISSUE (@alt):<br />
<br />
- Working on ISSUE 31 with SteveF, Joshue O Connor and others<br />
http://www.w3.org/html/wg/tracker/issues/31<br />
<br />
- Created Wiki page on the "Omitting Text Alternatives for Critical Content" issue.<br />
http://esw.w3.org/topic/HTML/IssueAltAttribute<br />
<br />
- Requested PFWG WAI to review Omitting alt Attribute for Critical Content and provide advice on the potential accessibility impact.<br />
http://lists.w3.org/Archives/Public/wai-xtech/2007Oct/0044.html<br />
<br />
- Worked on ACTION 54 with SteveF, Joshue O Connor and others to draft text for HTML 5 spec to require producers/authors to include @alt on img elements.<br />
http://www.w3.org/html/wg/tracker/actions/54<br />
<br />
- Created Wiki page "Action 54: First Draft"<br />
http://esw.w3.org/topic/HTML/Action54AltAttribute<br />
<br />
- Created Discussion Page for "Action 54: First Draft"<br />
http://esw.w3.org/topic/HTML/Action54AltAttributeDiscussion<br />
<br />
- Created Wiki page "Action 54: Second Draft"<br />
http://esw.w3.org/topic/HTML/Action54AltAttributeSecondDraft<br />
<br />
- Created Wiki page "Action 54: Third Draft"<br />
http://esw.w3.org/topic/HTML/Action54AltAttributeThirdDraft<br />
<br />
- Participated in WAI CG Task Force which produced Consensus Resolutions on Text alternatives in HTML 5<br />
http://www.w3.org/2009/06/Text-Alternatives-in-HTML5<br />
<br />
- Worked with SteveF Cynthia Shelly, Matt May and others on ACTION 131 to draft ALT spec<br />
http://www.w3.org/html/wg/tracker/actions/131<br />
<br />
- Action 131 Deliverable<br />
http://www.w3.org/2009/06/Text-Alternatives-in-HTML5<br />
<br />
<br />
@SUMMARY ISSUE:<br />
<br />
- Working on ISSUE-32 with SteveF, Joshue O Connor and others on table summary<br />
http://www.w3.org/html/wg/tracker/issues/32<br />
<br />
- Worked on "Mechanism to Summarize a Table" Wiki page<br />
http://esw.w3.org/topic/HTML/SummaryForTABLE<br />
<br />
- Worked on ACTION-66 with SteveF, Joshue O Connor and others to collate information<br />
http://www.w3.org/html/wg/tracker/actions/66<br />
<br />
- Worked on ACTION-111 to move issue 32 toward resolution by asking PFWG for comments on several items:<br />
http://lists.w3.org/Archives/Public/public-html/2009May/0033.html<br />
http://www.w3.org/html/wg/tracker/actions/111<br />
<br />
<br />
CANVAS ELEMENT<br />
<br />
- Working on ISSUE-74 Canvas accessibility<br />
http://www.w3.org/html/wg/tracker/issues/74<br />
<br />
- Created Wiki page "New canvas Element Accessibility Issues"<br />
http://esw.w3.org/topic/HTML/AddedElementCanvas<br />
<br />
<br />
MULTIMEDIA <Audio> <Video><br />
<br />
- Created Wiki page "Multimedia Accessibility (<Audio> <Video>)"<br />
http://esw.w3.org/topic/HTML/MultimediaAccessibilty<br />
<br />
- Requested PFWG WAI to review multimedia accessibility requirements <audio> <video><br />
http://lists.w3.org/Archives/Public/public-html/2008Sep/0421.html<br />
<br />
<br />
DESIGN PRINCIPLES<br />
<br />
- Collaborated with other working group members to author:<br />
"Request to Strengthen the HTML5 Accessibility Design Principle"<br />
http://esw.w3.org/topic/HTML/AccessibilityDesignPrinciple<br />
http://lists.w3.org/Archives/Public/public-html/2009Jun/0661.html<br />
http://lists.w3.org/Archives/Public/public-html/2009Jul/0249.html<br />
<br />
- Helped with Design Principles Wiki page. e.g. helped identify and document disputed principles.<br />
http://esw.w3.org/topic/HTML/ProposedDesignPrinciples?action=recall&rev=78#head-f6eb28b3b561a144b2d4a9af50467f4692b8bffc<br />
<br />
<br />
ACCESSIBILITY ISSUES PROCEDURE<br />
<br />
- Collaborated with other working group members to author:<br />
"Procedure to Promote Progress With Accessibility Issues in HTML5" Proposal<br />
http://esw.w3.org/topic/HTML/AccessibilityIssueProcedure<br />
<br />
- Created Discussion Page for Accessibility Issues Procedure:<br />
http://esw.w3.org/topic/HTML/AccessibilityIssueProcedure/Discussion<br />
<br />
<br />
@HEADERS ISSUE:<br />
<br />
- Requested PFWG WAI to review headers/id attribute and provide advice on the on the potential accessibility impact.<br />
http://lists.w3.org/Archives/Public/wai-xtech/2007May/0049.html<br />
<br />
- Created Wiki page "headers attribute Issue"<br />
http://esw.w3.org/topic/HTML/IssueTableHeaders<br />
<br />
- Worked on ISSUES-57/20 with SteveF, Joshue O Connor and others on @headers<br />
http://www.w3.org/html/wg/tracker/issues/57<br />
http://www.w3.org/html/wg/tracker/issues/20<br />
<br />
- Worked on ACTION-72 with SteveF, Joshue O Connor and others to draft text for the HTML 5 spec<br />
http://www.w3.org/html/wg/tracker/actions/72<br />
<br />
- Created Wiki page "ACTION 72: @headers rewrite" deliverable:<br />
http://esw.w3.org/topic/HTML/Action72Headers<br />
<br />
- Created Wiki page "headers/id Testing (Bug 5822)"<br />
http://esw.w3.org/topic/HTML/TableHeadersTestingBug5822<br />
<br />
- Created Wiki page "Cyclic Header Chains"<br />
http://esw.w3.org/topic/HTML/CyclicHeaderChains<br />
<br />
<br />
- FURTHER WG WORK<br />
<br />
- Helped with HTML Working Group Issue and Action Definitions<br />
http://esw.w3.org/topic/HTML<br />
<br />
- Created Wiki page "HTML WG Meeting Minutes"<br />
http://esw.w3.org/topic/HTML/Minutes<br />
<br />
- Created Wiki page "HTML WG Surveys"<br />
http://esw.w3.org/topic/HTML/Surveys<br />
<br />
- Created Wiki page "HTML WG Email Lists"<br />
http://esw.w3.org/topic/HTML/EmailLists<br />
<br />
- Created Wiki page "HTML WG Teleconferences"<br />
http://esw.w3.org/topic/HTML/Teleconferences<br />
<br />
- Created Wiki page "HTMLWG Requests and PFWG Responses"<br />
http://esw.w3.org/topic/HTML/HTMLRequestsPFresponse<br />
<br />
- Participating in PFWG Caucus on HTML5 Issues<br />
http://esw.w3.org/topic/PF/XTech/HTML5/Caucus<br />
<br />
- Started justification Wiki pages for dropped/added/changed elements and attributes.</td></tr>
<tr><th scope='row'>Martin McEvoy</th>
<!-- MutExcStates --> <td><ul><li>design principles, goals requirements (drafting, review, liaison)</li>
<li>web browser enhancements</li>
<li>authoring tool development</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ryan Mitchell</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Stewart</th>
<!-- MutExcStates --> <td><ul><li>drafting spec text (which features/sections?)</li>
<li>detailed review of substantial sections of spec (which features/sections?)</li>
<li>test case development (which kind?)</li>
<li>web browser enhancements</li>
</ul></td>
<td class='meta'>X3D integration related tasks.</td></tr>
<tr><th scope='row'>Jace Voracek</th>
<!-- MutExcStates --> <td><ul><li>test case development (which kind?)</li>
<li>manual test result (which browser? authoring tools?)</li>
<li>tutorial development, quick reference, course materials, ...</li>
<li>a periodic survey of top web sites</li>
<li>usability testing</li>
<li>web browser maintenance (esp. fixing bugs around spec compliance)</li>
<li>web browser enhancements</li>
<li>validation/checking service development</li>
<li>translation to languages other than English</li>
</ul></td>
<td class='meta'>Due to my occupied work schedule, my time availability affects the work of what I am able to do time-based. Because of this, my interest of what I am able to do may shift depending on my schedule. Overall, I am generally willing to assist in tasks that are in current demand.<br />
<br />
Regarding testing, I primarily use Apple Safari. I am also willing to test on the iPhone's Mobile Safari.</td></tr>
</tbody>
</table>
<h4><a id='xtasks-choice' name='xtasks-choice'>View by choice</a></h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Choice</th><th>Responders</th></tr></thead>
<tbody>
<tr><th scope='row'>drafting spec text (which features/sections?)</th>
<td><ul><li>Murray Maloney</li>
<li>Dominik Tomaszuk</li>
<li>David Hyatt</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Matthew Wilcox</li>
<li>Michael Turnwall</li>
<li>Gregory Rosmaita</li>
<li>Karl Dubost</li>
<li>Ian Hickson</li>
<li>Ariel Pérez</li>
<li>Gonzalo Rubio</li>
<li>Debi Orton</li>
<li>David McClure</li>
<li>Dimitri Glazkov</li>
<li>Mikko Honkala</li>
<li>Mark Baker</li>
<li>Marghanita da Cruz</li>
<li>Ivan Enderlin</li>
<li>Samuel Santos</li>
<li>David Singer</li>
<li>Sam Johnston</li>
<li>Cynthia Shelly</li>
<li>Dionysios Synodinos</li>
<li>Ben Millard</li>
<li>Larry Masinter</li>
<li>Laura Carlson</li>
<li>John Stewart</li>
</ul></td>
</tr><tr><th scope='row'>detailed review of substantial sections of spec (which features/sections?)</th>
<td><ul><li>Murray Maloney</li>
<li>Asbjørn Ulsberg</li>
<li>John-Mark Bell</li>
<li>Maciej Stachowiak</li>
<li>Andrew Neitsch</li>
<li>Thomas Higginbotham</li>
<li>David Hyatt</li>
<li>Serdar Kiliç</li>
<li>Isac Lagerblad</li>
<li>Patrick Taylor</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Matthew Wilcox</li>
<li>Anne van Kesteren</li>
<li>Craig Saila</li>
<li>Darren West</li>
<li>Karl Dubost</li>
<li>Jens Meiert</li>
<li>Ian Hickson</li>
<li>Henri Sivonen</li>
<li>Lee Kowalkowski</li>
<li>Robert Burns</li>
<li>Henrik Dvergsdal</li>
<li>Ariel Pérez</li>
<li>David Håsäther</li>
<li>Laurens Holst</li>
<li>Carol King</li>
<li>Debi Orton</li>
<li>Marcin Hanclik</li>
<li>Jason White</li>
<li>Sander van Lambalgen</li>
<li>Charles McCathieNevile</li>
<li>Eric Daspet</li>
<li>Ben Boyle</li>
<li>Dimitri Glazkov</li>
<li>Ryan King</li>
<li>Mikko Honkala</li>
<li>Mark Baker</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Sierk Bornemann</li>
<li>Karl Groves</li>
<li>Sam Johnston</li>
<li>Cynthia Shelly</li>
<li>Dionysios Synodinos</li>
<li>Simon Pieters</li>
<li>Larry Masinter</li>
<li>John Stewart</li>
</ul></td>
</tr><tr><th scope='row'>test case development (which kind?)</th>
<td><ul><li>Chasen Le Hara</li>
<li>Mihai Sucan</li>
<li>Asbjørn Ulsberg</li>
<li>David Baron</li>
<li>John-Mark Bell</li>
<li>Maciej Stachowiak</li>
<li>Magnus Kristiansen</li>
<li>Henrik Lied</li>
<li>Thomas Higginbotham</li>
<li>David Hyatt</li>
<li>Roman Kitainik</li>
<li>Anne van Kesteren</li>
<li>James Graham</li>
<li>Gregory Rosmaita</li>
<li>Karl Dubost</li>
<li>Marco Battilana</li>
<li>David Håsäther</li>
<li>Jon Barnett</li>
<li>David McClure</li>
<li>Kai Hendry</li>
<li>Ryan King</li>
<li>Shawn Medero</li>
<li>Weston Ruter</li>
<li>Marghanita da Cruz</li>
<li>Justin Thorp</li>
<li>aurélien levy</li>
<li>Simon Pieters</li>
<li>Dan Connolly</li>
<li>Channy Yun</li>
<li>Larry Masinter</li>
<li>John Stewart</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>manual test result (which browser? authoring tools?)</th>
<td><ul><li>Chasen Le Hara</li>
<li>Maciej Stachowiak</li>
<li>Szymon Pilkowski</li>
<li>Serdar Kiliç</li>
<li>Patrick Taylor</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Craig Saila</li>
<li>Gregory Rosmaita</li>
<li>Marco Battilana</li>
<li>Andrew Smith</li>
<li>Stephen Axthelm</li>
<li>Account Deleted</li>
<li>Chris Adams</li>
<li>Ariel Pérez</li>
<li>David Håsäther</li>
<li>Marek Pawlowski</li>
<li>Jon Barnett</li>
<li>David McClure</li>
<li>Adam Roben</li>
<li>Shawn Medero</li>
<li>Joseph D'Andrea</li>
<li>Scott Vesey</li>
<li>Justin Thorp</li>
<li>aurélien levy</li>
<li>Simon Pieters</li>
<li>Ben Millard</li>
<li>Larry Masinter</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>test suite organization/editing</th>
<td><ul><li>Chasen Le Hara</li>
<li>Matthew Ratzloff</li>
<li>Dominik Tomaszuk</li>
<li>Roman Kitainik</li>
<li>Gregory Rosmaita</li>
<li>David Håsäther</li>
<li>Jon Barnett</li>
<li>David McClure</li>
<li>Kai Hendry</li>
<li>Weston Ruter</li>
<li>Simon Pieters</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>tutorial development, quick reference, course materials, ...</th>
<td><ul><li>Chasen Le Hara</li>
<li>Dylan Smith</li>
<li>Kornel Lesinski</li>
<li>David Dailey</li>
<li>Mihai Sucan</li>
<li>Asbjørn Ulsberg</li>
<li>Brad Fults</li>
<li>Roger Johansson</li>
<li>M. Jackson Wilkinson</li>
<li>Bhasker V Kode</li>
<li>Henrik Lied</li>
<li>Stephen Stewart</li>
<li>Matthew Ratzloff</li>
<li>Dominik Tomaszuk</li>
<li>Nicolas Le Gall</li>
<li>Isac Lagerblad</li>
<li>Patrick Taylor</li>
<li>Roman Kitainik</li>
<li>Addam Wassel</li>
<li>James VanDyke</li>
<li>Craig Saila</li>
<li>Benjamin Hedrington</li>
<li>Karl Dubost</li>
<li>Yannick Croissant</li>
<li>Jens Meiert</li>
<li>Chris Adams</li>
<li>Lee Kowalkowski</li>
<li>Henrik Dvergsdal</li>
<li>Ariel Pérez</li>
<li>John Bradley</li>
<li>Benoit Piette</li>
<li>Balakumar Muthu</li>
<li>Stéphane Deschamps</li>
<li>Marek Pawlowski</li>
<li>Thomas Bradley</li>
<li>Jon Barnett</li>
<li>Debi Orton</li>
<li>Sander van Lambalgen</li>
<li>David McClure</li>
<li>Ben Boyle</li>
<li>Kai Hendry</li>
<li>Matthew Raymond</li>
<li>Joseph D'Andrea</li>
<li>Geoffrey Sneddon</li>
<li>Scott Vesey</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Ivan Enderlin</li>
<li>Wesley Upchurch</li>
<li>Preston Bannister</li>
<li>Karl Groves</li>
<li>David Randall</li>
<li>Kelly Gifford</li>
<li>Channy Yun</li>
<li>Larry Masinter</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>formalization (schemas, formal rules, ...)</th>
<td><ul><li>Josef Spillner</li>
<li>Dominik Tomaszuk</li>
<li>Gregory Rosmaita</li>
<li>Andrew Smith</li>
<li>Jirka Kosek</li>
<li>Henri Sivonen</li>
<li>Henrik Dvergsdal</li>
<li>Laurens Holst</li>
<li>Sam Kuper</li>
<li>Dan Connolly</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>a periodic survey of top web sites</th>
<td><ul><li>M. Jackson Wilkinson</li>
<li>Serdar Kiliç</li>
<li>Rene Saarsoo</li>
<li>Patrick Taylor</li>
<li>Roman Kitainik</li>
<li>James VanDyke</li>
<li>Craig Saila</li>
<li>Michael Turnwall</li>
<li>Benjamin Hedrington</li>
<li>Karl Dubost</li>
<li>Marco Battilana</li>
<li>Andrew Smith</li>
<li>Eric Eggert</li>
<li>Mark Martin</li>
<li>Sean Fraser</li>
<li>Balakumar Muthu</li>
<li>Thomas Bradley</li>
<li>Shawn Medero</li>
<li>Justin Thorp</li>
<li>Samuel Santos</li>
<li>Karl Groves</li>
<li>David Randall</li>
<li>Terry Morris</li>
<li>Ben Millard</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>usability testing</th>
<td><ul><li>Chasen Le Hara</li>
<li>Dylan Smith</li>
<li>David Dailey</li>
<li>Tim McMahon</li>
<li>M. Jackson Wilkinson</li>
<li>Andrew Neitsch</li>
<li>Henrik Lied</li>
<li>Dominik Tomaszuk</li>
<li>Isac Lagerblad</li>
<li>Patrick Taylor</li>
<li>Roman Kitainik</li>
<li>Addam Wassel</li>
<li>James VanDyke</li>
<li>Michael Turnwall</li>
<li>Gregory Rosmaita</li>
<li>Marco Battilana</li>
<li>Andrew Smith</li>
<li>Jens Meiert</li>
<li>Account Deleted</li>
<li>Henrik Dvergsdal</li>
<li>Ariel Pérez</li>
<li>Joshue O Connor</li>
<li>Mark Martin</li>
<li>John Bradley</li>
<li>Denis Boudreau</li>
<li>Balakumar Muthu</li>
<li>Alejandro Fernandez</li>
<li>Debi Orton</li>
<li>Jason White</li>
<li>David McClure</li>
<li>Kai Hendry</li>
<li>Shawn Medero</li>
<li>Samuel Santos</li>
<li>Karl Groves</li>
<li>aurélien levy</li>
<li>David Randall</li>
<li>Kelly Gifford</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>design principles, goals requirements (drafting, review, liaison)</th>
<td><ul><li>Murray Maloney</li>
<li>Kornel Lesinski</li>
<li>David Dailey</li>
<li>Brad Fults</li>
<li>David Baron</li>
<li>Tim McMahon</li>
<li>Maciej Stachowiak</li>
<li>Bhasker V Kode</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Matthew Wilcox</li>
<li>Anne van Kesteren</li>
<li>Craig Saila</li>
<li>Gregory Rosmaita</li>
<li>Benjamin Hedrington</li>
<li>Marco Battilana</li>
<li>Andrew Smith</li>
<li>Jens Meiert</li>
<li>Eric Eggert</li>
<li>Ian Hickson</li>
<li>Henri Sivonen</li>
<li>Denis Boudreau</li>
<li>Jason White</li>
<li>Mark Baker</li>
<li>Marghanita da Cruz</li>
<li>Preston Bannister</li>
<li>Sierk Bornemann</li>
<li>Samuel Santos</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Terry Morris</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
<li>Laura Carlson</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>orientation: documenting group norms, helping people learn them</th>
<td><ul><li>David Dailey</li>
<li>Nicolas Le Gall</li>
<li>Roman Kitainik</li>
<li>Yannick Croissant</li>
<li>Marco Battilana</li>
<li>Stephen Axthelm</li>
<li>Jason White</li>
<li>David McClure</li>
<li>Ryan King</li>
<li>Justin Thorp</li>
<li>Ivan Enderlin</li>
<li>Preston Bannister</li>
<li>Kelly Gifford</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>web browser maintenance (esp. fixing bugs around spec compliance)</th>
<td><ul><li>Chris Veenboer</li>
<li>David Baron</li>
<li>John-Mark Bell</li>
<li>Maciej Stachowiak</li>
<li>Szymon Pilkowski</li>
<li>David Hyatt</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Gregory Rosmaita</li>
<li>Andrei Polushin</li>
<li>Matthew Raymond</li>
<li>Adam Roben</li>
<li>Simon Pieters</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>web browser enhancements</th>
<td><ul><li>David Baron</li>
<li>John-Mark Bell</li>
<li>Maciej Stachowiak</li>
<li>Bhasker V Kode</li>
<li>David Hyatt</li>
<li>Jonas Sicking</li>
<li>Roman Kitainik</li>
<li>Andrei Polushin</li>
<li>Chris Adams</li>
<li>Robert Burns</li>
<li>Matthew Raymond</li>
<li>Adam Roben</li>
<li>David Randall</li>
<li>Martin McEvoy</li>
<li>John Stewart</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>authoring tool development</th>
<td><ul><li>Chasen Le Hara</li>
<li>Mihai Sucan</li>
<li>Tim McMahon</li>
<li>Alfonso Martínez de Lizarrondo</li>
<li>Josef Spillner</li>
<li>Patrick Taylor</li>
<li>Roman Kitainik</li>
<li>Gregory Rosmaita</li>
<li>Robert Burns</li>
<li>Jon Barnett</li>
<li>David McClure</li>
<li>Dimitri Glazkov</li>
<li>Matthew Raymond</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>prototyping new features using scripting</th>
<td><ul><li>Chasen Le Hara</li>
<li>Kornel Lesinski</li>
<li>Chris Veenboer</li>
<li>Mihai Sucan</li>
<li>Asbjørn Ulsberg</li>
<li>Bhasker V Kode</li>
<li>Magnus Kristiansen</li>
<li>Serdar Kiliç</li>
<li>Darren West</li>
<li>Benjamin Hedrington</li>
<li>Chris Adams</li>
<li>Marco Neumann</li>
<li>Laurens Holst</li>
<li>Mark Martin</li>
<li>Benoit Piette</li>
<li>Thomas Bradley</li>
<li>Dimitri Glazkov</li>
<li>Weston Ruter</li>
<li>Preston Bannister</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>validation/checking service development</th>
<td><ul><li>Chasen Le Hara</li>
<li>Kornel Lesinski</li>
<li>Josef Spillner</li>
<li>Dominik Tomaszuk</li>
<li>James Graham</li>
<li>Gregory Rosmaita</li>
<li>Karl Dubost</li>
<li>Jirka Kosek</li>
<li>Henri Sivonen</li>
<li>Henrik Dvergsdal</li>
<li>Balakumar Muthu</li>
<li>Joseph D'Andrea</li>
<li>Sierk Bornemann</li>
<li>Dan Connolly</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>validation/checking service operations</th>
<td><ul><li>Chasen Le Hara</li>
<li>Dominik Tomaszuk</li>
<li>Karl Dubost</li>
<li>Stephen Axthelm</li>
<li>Henri Sivonen</li>
<li>Mark Martin</li>
<li>Joseph D'Andrea</li>
<li>Sierk Bornemann</li>
</ul></td>
</tr><tr><th scope='row'>issue tracking, summarization, and clustering</th>
<td><ul><li>Chasen Le Hara</li>
<li>David Dailey</li>
<li>Roman Kitainik</li>
<li>James Graham</li>
<li>Benjamin Hedrington</li>
<li>Karl Dubost</li>
<li>Jens Meiert</li>
<li>Stephen Axthelm</li>
<li>Chris Adams</li>
<li>Ian Hickson</li>
<li>Debi Orton</li>
<li>David McClure</li>
<li>Eric Daspet</li>
<li>Shawn Medero</li>
<li>Geoffrey Sneddon</li>
<li>Samuel Santos</li>
<li>Cynthia Shelly</li>
<li>Ben Millard</li>
<li>Dan Connolly</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
<li>Laura Carlson</li>
</ul></td>
</tr><tr><th scope='row'>security review, risk analysis</th>
<td><ul><li>Chasen Le Hara</li>
<li>Kornel Lesinski</li>
<li>Maciej Stachowiak</li>
<li>Jonas Sicking</li>
<li>Ian Hickson</li>
<li>John Bradley</li>
<li>Marghanita da Cruz</li>
<li>Preston Bannister</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>forms taskforce</th>
<td><ul><li>Maciej Stachowiak</li>
<li>Josef Spillner</li>
<li>Dominik Tomaszuk</li>
<li>John Boyer</li>
<li>Anne van Kesteren</li>
<li>Darren West</li>
<li>Gregory Rosmaita</li>
<li>Account Deleted</li>
<li>Ian Hickson</li>
<li>Laurens Holst</li>
<li>Sander van Lambalgen</li>
<li>David McClure</li>
<li>Matthew Raymond</li>
<li>Mikko Honkala</li>
<li>Samuel Santos</li>
<li>Cynthia Shelly</li>
<li>Dionysios Synodinos</li>
</ul></td>
</tr><tr><th scope='row'>translation to languages other than English</th>
<td><ul><li>Gonzalo Rubio</li>
<li>Alejandro Fernandez</li>
<li>Stéphane Deschamps</li>
<li>Masataka Yakura</li>
<li>Eric Daspet</li>
<li>Channy Yun</li>
<li>Jace Voracek</li>
</ul></td>
</tr><tr><th scope='row'>serve as scribe for teleconferences</th>
<td><ul><li>Dan Connolly</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr></tbody>
</table></div><div class='question'>
<h3><a id='xwhichsec' name='xwhichsec'>Which section(s) are you planning to review in detail in the coming weeks?</a></h3>
<p><a href='#xwhichsec-sum'>summary</a> | <a href='#xwhichsec-resp'>by responder</a> | <a href='#xwhichsec-choice'>by choice</a></p>
<p>Please choose one or a few sections that you plan to review in detail in the coming weeks.</p>
<p>Suggestions on sending comments for review:</p>
<ul>
<li>Cite the material you're reviewing by URI, date, and section title. Don't rely on "section 3.2" remaining unambiguous for long.</li>
<li>For significant issues, send a separate message for each issue</li>
<li>For editorial issues, use your own discretion about how many to lump in one message.</li>
<li>Bonus points for attaching test cases</li>
<li>Send a message to signal that you're done with your review. It's OK to include editorial comments in this message, but if you're going to mention significant technical issues, do so by reference to separate messages about those issues.</li>
</ul>
<p>Consider summarizing the discussion of the issues you raised in the <a href="http://esw.w3.org/topic/HTML">wiki issues list</a>. Keep in mind an obligation to summarize points of view even when you disagree with them.</p>
<p>This list of sections to review is based on <a href="http://dev.w3.org/cvsweb/~checkout~/html5/spec/Overview.html?rev=1.78">v1.78 of Thu Jun 7 00:53:39 2007 UTC of the editor's draft of the HTML 5 spec </a>, with some arbitrary choices about which subsections to lump together.</p>
<h4><a id='xwhichsec-sum' name='xwhichsec-sum'>Summary</a></h4>
<table class='summary'>
<colgroup span='1'></colgroup>
<colgroup span='1'></colgroup><thead><tr><th scope='col' rowspan='2'>Choice</th><th scope='colgroup'>All responders</th></tr><tr>
<th scope='col'>Results</th></tr></thead>
<tbody>
<tr class='odd'>
<th scope='row'>1. Introduction</th>
<td>6</td>
</tr>
<tr class='even'>
<th scope='row'>2. The Document Object Model</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>3.1. Introduction (Semantics and structure of HTML elements)</th>
<td>12</td>
</tr>
<tr class='even'>
<th scope='row'>3.2. Common microsyntaxes</th>
<td>5</td>
</tr>
<tr class='odd'>
<th scope='row'>3.3. Documents and document fragments</th>
<td>8</td>
</tr>
<tr class='even'>
<th scope='row'>3.4. Global attributes</th>
<td>8</td>
</tr>
<tr class='odd'>
<th scope='row'>3.5. Interaction</th>
<td>4</td>
</tr>
<tr class='even'>
<th scope='row'>3.6. The root element</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>3.7. Document metadata</th>
<td>8</td>
</tr>
<tr class='even'>
<th scope='row'>3.8. Sections</th>
<td>10</td>
</tr>
<tr class='odd'>
<th scope='row'>3.9. Prose</th>
<td>8</td>
</tr>
<tr class='even'>
<th scope='row'>3.10. Preformatted text</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>3.11. Lists</th>
<td>7</td>
</tr>
<tr class='even'>
<th scope='row'>3.12. Phrase elements</th>
<td>7</td>
</tr>
<tr class='odd'>
<th scope='row'>3.13. Edits</th>
<td>6</td>
</tr>
<tr class='even'>
<th scope='row'>3.14. Embedded content (subsection 1-4, figure to embed)
</th>
<td>7</td>
</tr>
<tr class='odd'>
<th scope='row'>3.14.5. The object element (and o 3.14.6. The param element)</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>3.14.7. The video element</th>
<td>10</td>
</tr>
<tr class='odd'>
<th scope='row'>3.14.8. The audio element</th>
<td>8</td>
</tr>
<tr class='even'>
<th scope='row'>3.14.9. Media elements</th>
<td>8</td>
</tr>
<tr class='odd'>
<th scope='row'>3.14.10. The source element</th>
<td>4</td>
</tr>
<tr class='even'>
<th scope='row'>3.14.11. The canvas element</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>3.14.12. The map element thru 3.14.14. Image maps</th>
<td>4</td>
</tr>
<tr class='even'>
<th scope='row'>3.15. Tabular data</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>3.16. Forms</th>
<td>14</td>
</tr>
<tr class='even'>
<th scope='row'>3.17. Scripting</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>3.18. Interactive elements (inc. datagrid)</th>
<td>7</td>
</tr>
<tr class='even'>
<th scope='row'>3.19. Miscellaneous elements (legend, div)</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>
4. Web browsers (4.1 browsing context to 4.3 Session history)</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>4.4. Links</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>4.5. Interfaces for URI manipulation</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>4.6 Navigating across documents</th>
<td>2</td>
</tr>
<tr class='odd'>
<th scope='row'>4.7. Determining the type of a new resource in a browsing context</th>
<td>6</td>
</tr>
<tr class='even'>
<th scope='row'>4.8. User prompts</th>
<td>3</td>
</tr>
<tr class='odd'>
<th scope='row'>4.9. Scripting</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>4.10. Browser state</th>
<td>3</td>
</tr>
<tr class='odd'>
<th scope='row'>4.11. Client-side session and persistent storage of name/value pairs</th>
<td>6</td>
</tr>
<tr class='even'>
<th scope='row'>4.12. Client-side database storage</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>5. Editing</th>
<td>5</td>
</tr>
<tr class='even'>
<th scope='row'>6. Communication</th>
<td>2</td>
</tr>
<tr class='odd'>
<th scope='row'>7. Repetition templates</th>
<td>4</td>
</tr>
<tr class='even'>
<th scope='row'>8. The HTML syntax: * 8.1. Writing HTML documents</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>8.2. Parsing HTML documents</th>
<td>6</td>
</tr>
<tr class='even'>
<th scope='row'>8.3. Namespaces</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>8.4. Entities </th>
<td>2</td>
</tr>
<tr class='even'>
<th scope='row'>9. WYSIWYG editors</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>10. Rendering</th>
<td>1</td>
</tr>
<tr class='even'>
<th scope='row'>11. Things that you can't do with this</th>
<td>3</td>
</tr>
</tbody>
</table>
<p>Skip to <a href='#xwhichsec-choice'>view by choice</a>.</p>
<h4><a id='xwhichsec-resp' name='xwhichsec-resp'>View by responder</a></h4>
<h4>Details</h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Responder</th>
<th scope='col'>Which section(s) are you planning to review in detail in the coming weeks?</th><th scope='col' class='meta'>Comments</th></tr>
</thead>
<tbody>
<tr><th scope='row'>Chasen Le Hara</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dylan Smith</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Murray Maloney</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kornel Lesinski</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Dailey</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Chris Veenboer</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mihai Sucan</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Asbjørn Ulsberg</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Brad Fults</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Roger Johansson</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Baron</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John-Mark Bell</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Tim McMahon</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>M. Jackson Wilkinson</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Maciej Stachowiak</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Neitsch</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bhasker V Kode</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Magnus Kristiansen</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Alfonso Martínez de Lizarrondo</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Szymon Pilkowski</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Josef Spillner</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henrik Lied</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Stewart</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Ratzloff</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dominik Tomaszuk</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Higginbotham</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Hyatt</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Nicolas Le Gall</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Serdar Kiliç</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Boyer</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Isac Lagerblad</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Rene Saarsoo</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Patrick Taylor</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jonas Sicking</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Roman Kitainik</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Addam Wassel</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>James VanDyke</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Wilcox</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Anne van Kesteren</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Craig Saila</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Darren West</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Michael Turnwall</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>James Graham</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Gregory Rosmaita</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Benjamin Hedrington</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Karl Dubost</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Yannick Croissant</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Battilana</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Smith</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jens Meiert</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Eric Eggert</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Axthelm</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Account Deleted</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrei Polushin</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Chris Adams</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jirka Kosek</th>
<!-- MutExcStates --> <td><ul><li>8.3. Namespaces</li>
<li>8.4. Entities </li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Neumann</th>
<!-- MutExcStates --> <td><ul><li>3.7. Document metadata</li>
<li>3.14.12. The map element thru 3.14.14. Image maps</li>
<li>8.2. Parsing HTML documents</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ian Hickson</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henri Sivonen</th>
<!-- MutExcStates --> <td><ul><li>8.2. Parsing HTML documents</li>
<li>8.3. Namespaces</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Lee Kowalkowski</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
<li>2. The Document Object Model</li>
<li>
4. Web browsers (4.1 browsing context to 4.3 Session history)</li>
<li>4.4. Links</li>
<li>4.5. Interfaces for URI manipulation</li>
<li>4.6 Navigating across documents</li>
<li>4.7. Determining the type of a new resource in a browsing context</li>
<li>4.8. User prompts</li>
<li>4.9. Scripting</li>
<li>4.10. Browser state</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
<li>4.12. Client-side database storage</li>
</ul></td>
<td class='meta'>I might review other sections if I have the time.</td></tr>
<tr><th scope='row'>Robert Burns</th>
<!-- MutExcStates --> <td><ul><li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.15. Tabular data</li>
<li>9. WYSIWYG editors</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henrik Dvergsdal</th>
<!-- MutExcStates --> <td><ul><li>5. Editing</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ariel Pérez</th>
<!-- MutExcStates --> <td><ul><li>3.8. Sections</li>
<li>9. WYSIWYG editors</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Håsäther</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>This will depend on the amount of time I can commit.</td></tr>
<tr><th scope='row'>Laurens Holst</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Joshue O Connor</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>I am particularly interested in HTML 5 and accessibility/usability.</td></tr>
<tr><th scope='row'>Mark Martin</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Bradley</th>
<!-- MutExcStates --> <td><ul><li>2. The Document Object Model</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.2. Common microsyntaxes</li>
<li>3.3. Documents and document fragments</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sean Fraser</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Benoit Piette</th>
<!-- MutExcStates --> <td><ul><li>3.14.7. The video element</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Denis Boudreau</th>
<!-- MutExcStates --> <td><ul><li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Carol King</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Balakumar Muthu</th>
<!-- MutExcStates --> <td><ul><li>3.5. Interaction</li>
<li>3.11. Lists</li>
<li>3.16. Forms</li>
<li>9. WYSIWYG editors</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Gonzalo Rubio</th>
<!-- MutExcStates --> <td><ul><li>3.4. Global attributes</li>
<li>3.8. Sections</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Alejandro Fernandez</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stéphane Deschamps</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marek Pawlowski</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>I'm not sure I'd have time for detailed review but I'll try do some brief review.</td></tr>
<tr><th scope='row'>Masataka Yakura</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Bradley</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jon Barnett</th>
<!-- MutExcStates --> <td><ul><li>5. Editing</li>
</ul></td>
<td class='meta'>If the spec details the DOM of designMode, I'll happily review it.</td></tr>
<tr><th scope='row'>Debi Orton</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.11. Lists</li>
<li>3.15. Tabular data</li>
<li>3.16. Forms</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marcin Hanclik</th>
<!-- MutExcStates --> <td><ul><li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jason White</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sander van Lambalgen</th>
<!-- MutExcStates --> <td><ul><li>2. The Document Object Model</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.5. Interaction</li>
<li>3.6. The root element</li>
<li>3.7. Document metadata</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.11. Lists</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.14.11. The canvas element</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
<li>7. Repetition templates</li>
</ul></td>
<td class='meta'>This initial selection is what I plan to look at; as it's a lot of text, I'll probably narrow down that selection after a first pass, based on what I feel I'm actually qualified to say anything on.</td></tr>
<tr><th scope='row'>Charles McCathieNevile</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>Starting from http://www.w3.org/WAI/References/HTML4-access and HTML 4, and then chug through the differences document to find the things that seem to need reading</td></tr>
<tr><th scope='row'>David McClure</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Eric Daspet</th>
<!-- MutExcStates --> <td><ul><li>3.16. Forms</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ben Boyle</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.2. Common microsyntaxes</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.6. The root element</li>
<li>3.7. Document metadata</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.11. Lists</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>3.14.10. The source element</li>
<li>3.14.11. The canvas element</li>
<li>3.14.12. The map element thru 3.14.14. Image maps</li>
<li>3.15. Tabular data</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
<li>4.4. Links</li>
<li>4.5. Interfaces for URI manipulation</li>
<li>5. Editing</li>
<li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
<li>8.3. Namespaces</li>
<li>9. WYSIWYG editors</li>
<li>11. Things that you can't do with this</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dimitri Glazkov</th>
<!-- MutExcStates --> <td><ul><li>4.10. Browser state</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
<li>4.12. Client-side database storage</li>
<li>7. Repetition templates</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kai Hendry</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Raymond</th>
<!-- MutExcStates --> <td><ul><li>3.2. Common microsyntaxes</li>
<li>3.7. Document metadata</li>
<li>3.14.7. The video element</li>
<li>3.14.9. Media elements</li>
<li>3.16. Forms</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>7. Repetition templates</li>
</ul></td>
<td class='meta'>May review limited portions of sections not checked above.</td></tr>
<tr><th scope='row'>Adam Roben</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ryan King</th>
<!-- MutExcStates --> <td><ul><li>4.7. Determining the type of a new resource in a browsing context</li>
<li>8.2. Parsing HTML documents</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Shawn Medero</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Weston Ruter</th>
<!-- MutExcStates --> <td><ul><li>3.16. Forms</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mikko Honkala</th>
<!-- MutExcStates --> <td><ul><li>3.16. Forms</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
<li>4.12. Client-side database storage</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mark Baker</th>
<!-- MutExcStates --> <td><ul><li>4.7. Determining the type of a new resource in a browsing context</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
<li>5. Editing</li>
<li>6. Communication</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marghanita da Cruz</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
<li>2. The Document Object Model</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.14.5. The object element (and o 3.14.6. The param element)</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>
4. Web browsers (4.1 browsing context to 4.3 Session history)</li>
<li>4.8. User prompts</li>
<li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
</ul></td>
<td class='meta'><http://www.ramin.com.au/linux/review-of-html5.shtml#current-reviews></td></tr>
<tr><th scope='row'>Joseph D'Andrea</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Geoffrey Sneddon</th>
<!-- MutExcStates --> <td><ul><li>3.2. Common microsyntaxes</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.6. The root element</li>
<li>3.7. Document metadata</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.11. Lists</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
<li>4.4. Links</li>
<li>4.7. Determining the type of a new resource in a browsing context</li>
<li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
<li>8.2. Parsing HTML documents</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Scott Vesey</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Justin Thorp</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.5. Interaction</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.15. Tabular data</li>
<li>3.16. Forms</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Doug Jones</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ivan Enderlin</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Wesley Upchurch</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Preston Bannister</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sierk Bornemann</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sam Kuper</th>
<!-- MutExcStates --> <td><ul><li>2. The Document Object Model</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Samuel Santos</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.7. Document metadata</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Raphael Champeimont</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Karl Groves</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>I will defer answering this question until I can get a grasp on what is needed and/ or what I feel has yet to be said that I feel strongly about</td></tr>
<tr><th scope='row'>aurélien levy</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Singer</th>
<!-- MutExcStates --> <td><ul><li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>3.14.10. The source element</li>
</ul></td>
<td class='meta'>focus on the media elements, and their usage and accessibility</td></tr>
<tr><th scope='row'>David Randall</th>
<!-- MutExcStates --> <td><ul><li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.16. Forms</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bill Mason</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kelly Gifford</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sam Johnston</th>
<!-- MutExcStates --> <td><ul><li>3.12. Phrase elements</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.15. Tabular data</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>4.7. Determining the type of a new resource in a browsing context</li>
</ul></td>
<td class='meta'>Primarily interested in items relevant to web application development.</td></tr>
<tr><th scope='row'>Dean Edridge</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Cynthia Shelly</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>On the July 9, 2008 Editors draft<br />
2.5 Common DOM interfaces<br />
3.7 Dynamic Content Insertion<br />
4.7 Embedded Content<br />
4.9 Forms<br />
4.11 Interactive Elements<br />
10 Rendering and User Agent Behavior<br />
6. User Interaction</td></tr>
<tr><th scope='row'>Dionysios Synodinos</th>
<!-- MutExcStates --> <td><ul><li>3.3. Documents and document fragments</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.14.5. The object element (and o 3.14.6. The param element)</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>3.14.10. The source element</li>
<li>3.14.11. The canvas element</li>
<li>3.14.12. The map element thru 3.14.14. Image maps</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>4.9. Scripting</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Simon Pieters</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>I review most of the spec as it's being edited, and more throughly when we implement or write tests for something.</td></tr>
<tr><th scope='row'>Terry Morris</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ben Millard</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dan Connolly</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
</ul></td>
<td class='meta'>looks like the intro has most of the references to other work, i.e. cross-WG stuff, so the chair should look it over.</td></tr>
<tr><th scope='row'>Julian Reschke</th>
<!-- MutExcStates --> <td><ul><li>3.7. Document metadata</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.11. Lists</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
</ul></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Channy Yun</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Larry Masinter</th>
<!-- MutExcStates --> <td><ul><li>1. Introduction</li>
<li>2. The Document Object Model</li>
<li>3.1. Introduction (Semantics and structure of HTML elements)</li>
<li>3.2. Common microsyntaxes</li>
<li>3.3. Documents and document fragments</li>
<li>3.4. Global attributes</li>
<li>3.5. Interaction</li>
<li>3.6. The root element</li>
<li>3.7. Document metadata</li>
<li>3.8. Sections</li>
<li>3.9. Prose</li>
<li>3.10. Preformatted text</li>
<li>3.11. Lists</li>
<li>3.12. Phrase elements</li>
<li>3.13. Edits</li>
<li>3.14. Embedded content (subsection 1-4, figure to embed)
</li>
<li>3.14.5. The object element (and o 3.14.6. The param element)</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>3.14.10. The source element</li>
<li>3.14.11. The canvas element</li>
<li>3.14.12. The map element thru 3.14.14. Image maps</li>
<li>3.15. Tabular data</li>
<li>3.16. Forms</li>
<li>3.17. Scripting</li>
<li>3.18. Interactive elements (inc. datagrid)</li>
<li>3.19. Miscellaneous elements (legend, div)</li>
<li>
4. Web browsers (4.1 browsing context to 4.3 Session history)</li>
<li>4.4. Links</li>
<li>4.5. Interfaces for URI manipulation</li>
<li>4.6 Navigating across documents</li>
<li>4.7. Determining the type of a new resource in a browsing context</li>
<li>4.8. User prompts</li>
<li>4.9. Scripting</li>
<li>4.10. Browser state</li>
<li>4.11. Client-side session and persistent storage of name/value pairs</li>
<li>4.12. Client-side database storage</li>
<li>5. Editing</li>
<li>6. Communication</li>
<li>7. Repetition templates</li>
<li>8. The HTML syntax: * 8.1. Writing HTML documents</li>
<li>8.2. Parsing HTML documents</li>
<li>8.3. Namespaces</li>
<li>8.4. Entities </li>
<li>9. WYSIWYG editors</li>
<li>10. Rendering</li>
<li>11. Things that you can't do with this</li>
</ul></td>
<td class='meta'>This survey presumes something that I think no longer holds -- that there is a single document. I'm most interested in trying to help deal with the "generic" complaints (accessibility, methodology, nature of the specification, testability etc) and how to resolve them, as those are the issues which seem to be the show-stoppers for reaching consensus.</td></tr>
<tr><th scope='row'>Laura Carlson</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Martin McEvoy</th>
<!-- MutExcStates --> <td><ul><li>3.4. Global attributes</li>
<li>3.14.7. The video element</li>
<li>3.14.8. The audio element</li>
<li>3.14.9. Media elements</li>
<li>8.2. Parsing HTML documents</li>
<li>9. WYSIWYG editors</li>
</ul></td>
<td class='meta'>And Microdata</td></tr>
<tr><th scope='row'>Ryan Mitchell</th>
<!-- MutExcStates --> <td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Stewart</th>
<!-- MutExcStates --> <td><ul><li>11. Things that you can't do with this</li>
</ul></td>
<td class='meta'>X3D integration.</td></tr>
<tr><th scope='row'>Jace Voracek</th>
<!-- MutExcStates --> <td></td>
<td class='meta'>I currently am unable to make an absolute commitment due to my schedule. I can review current/recent items that I feel strongly about.</td></tr>
</tbody>
</table>
<h4><a id='xwhichsec-choice' name='xwhichsec-choice'>View by choice</a></h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Choice</th><th>Responders</th></tr></thead>
<tbody>
<tr><th scope='row'>1. Introduction</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Marghanita da Cruz</li>
<li>Justin Thorp</li>
<li>Samuel Santos</li>
<li>Dan Connolly</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>2. The Document Object Model</th>
<td><ul><li>Lee Kowalkowski</li>
<li>John Bradley</li>
<li>Sander van Lambalgen</li>
<li>Marghanita da Cruz</li>
<li>Sam Kuper</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.1. Introduction (Semantics and structure of HTML elements)</th>
<td><ul><li>John Bradley</li>
<li>Carol King</li>
<li>Debi Orton</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Marghanita da Cruz</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Wesley Upchurch</li>
<li>Samuel Santos</li>
<li>David Randall</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.2. Common microsyntaxes</th>
<td><ul><li>John Bradley</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Geoffrey Sneddon</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.3. Documents and document fragments</th>
<td><ul><li>John Bradley</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.4. Global attributes</th>
<td><ul><li>Gonzalo Rubio</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>3.5. Interaction</th>
<td><ul><li>Balakumar Muthu</li>
<li>Sander van Lambalgen</li>
<li>Justin Thorp</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.6. The root element</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.7. Document metadata</th>
<td><ul><li>Marco Neumann</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Geoffrey Sneddon</li>
<li>Samuel Santos</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.8. Sections</th>
<td><ul><li>Robert Burns</li>
<li>Ariel Pérez</li>
<li>Gonzalo Rubio</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.9. Prose</th>
<td><ul><li>Robert Burns</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Doug Jones</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.10. Preformatted text</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.11. Lists</th>
<td><ul><li>Balakumar Muthu</li>
<li>Debi Orton</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.12. Phrase elements</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Sam Johnston</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.13. Edits</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Justin Thorp</li>
<li>Julian Reschke</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.14. Embedded content (subsection 1-4, figure to embed)
</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Marghanita da Cruz</li>
<li>Wesley Upchurch</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.14.5. The object element (and o 3.14.6. The param element)</th>
<td><ul><li>Marghanita da Cruz</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.14.7. The video element</th>
<td><ul><li>Benoit Piette</li>
<li>Marcin Hanclik</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Marghanita da Cruz</li>
<li>Justin Thorp</li>
<li>David Singer</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>3.14.8. The audio element</th>
<td><ul><li>Marcin Hanclik</li>
<li>Ben Boyle</li>
<li>Marghanita da Cruz</li>
<li>Justin Thorp</li>
<li>David Singer</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>3.14.9. Media elements</th>
<td><ul><li>Marcin Hanclik</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Marghanita da Cruz</li>
<li>David Singer</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>3.14.10. The source element</th>
<td><ul><li>Ben Boyle</li>
<li>David Singer</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.14.11. The canvas element</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.14.12. The map element thru 3.14.14. Image maps</th>
<td><ul><li>Marco Neumann</li>
<li>Ben Boyle</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.15. Tabular data</th>
<td><ul><li>Robert Burns</li>
<li>Debi Orton</li>
<li>Ben Boyle</li>
<li>Justin Thorp</li>
<li>Sam Johnston</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.16. Forms</th>
<td><ul><li>Balakumar Muthu</li>
<li>Debi Orton</li>
<li>Sander van Lambalgen</li>
<li>Eric Daspet</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Weston Ruter</li>
<li>Mikko Honkala</li>
<li>Justin Thorp</li>
<li>Samuel Santos</li>
<li>David Randall</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.17. Scripting</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Samuel Santos</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.18. Interactive elements (inc. datagrid)</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Matthew Raymond</li>
<li>Wesley Upchurch</li>
<li>Sam Johnston</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>3.19. Miscellaneous elements (legend, div)</th>
<td><ul><li>Debi Orton</li>
<li>Sander van Lambalgen</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Wesley Upchurch</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>
4. Web browsers (4.1 browsing context to 4.3 Session history)</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Marghanita da Cruz</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.4. Links</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Ben Boyle</li>
<li>Geoffrey Sneddon</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.5. Interfaces for URI manipulation</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Ben Boyle</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.6 Navigating across documents</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.7. Determining the type of a new resource in a browsing context</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Ryan King</li>
<li>Mark Baker</li>
<li>Geoffrey Sneddon</li>
<li>Sam Johnston</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.8. User prompts</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Marghanita da Cruz</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.9. Scripting</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.10. Browser state</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Dimitri Glazkov</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.11. Client-side session and persistent storage of name/value pairs</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Dimitri Glazkov</li>
<li>Mikko Honkala</li>
<li>Mark Baker</li>
<li>Dionysios Synodinos</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>4.12. Client-side database storage</th>
<td><ul><li>Lee Kowalkowski</li>
<li>Dimitri Glazkov</li>
<li>Mikko Honkala</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>5. Editing</th>
<td><ul><li>Henrik Dvergsdal</li>
<li>Jon Barnett</li>
<li>Ben Boyle</li>
<li>Mark Baker</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>6. Communication</th>
<td><ul><li>Mark Baker</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>7. Repetition templates</th>
<td><ul><li>Sander van Lambalgen</li>
<li>Dimitri Glazkov</li>
<li>Matthew Raymond</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>8. The HTML syntax: * 8.1. Writing HTML documents</th>
<td><ul><li>Denis Boudreau</li>
<li>Ben Boyle</li>
<li>Marghanita da Cruz</li>
<li>Geoffrey Sneddon</li>
<li>Doug Jones</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>8.2. Parsing HTML documents</th>
<td><ul><li>Marco Neumann</li>
<li>Henri Sivonen</li>
<li>Ryan King</li>
<li>Geoffrey Sneddon</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>8.3. Namespaces</th>
<td><ul><li>Jirka Kosek</li>
<li>Henri Sivonen</li>
<li>Ben Boyle</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>8.4. Entities </th>
<td><ul><li>Jirka Kosek</li>
<li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>9. WYSIWYG editors</th>
<td><ul><li>Robert Burns</li>
<li>Ariel Pérez</li>
<li>Balakumar Muthu</li>
<li>Ben Boyle</li>
<li>Larry Masinter</li>
<li>Martin McEvoy</li>
</ul></td>
</tr><tr><th scope='row'>10. Rendering</th>
<td><ul><li>Larry Masinter</li>
</ul></td>
</tr><tr><th scope='row'>11. Things that you can't do with this</th>
<td><ul><li>Ben Boyle</li>
<li>Larry Masinter</li>
<li>John Stewart</li>
</ul></td>
</tr></tbody>
</table></div><div class='question'>
<h3><a id='xrevwhen' name='xrevwhen'>When do you plan to complete your detailed review of the above section(s)?</a></h3>
<p>Make your best guess. Feel free to update it later.</p>
<h4><a id='xrevwhen-sum' name='xrevwhen-sum'>Summary</a></h4>
<table class='summary'>
<colgroup span='1'></colgroup>
<colgroup span='1'></colgroup><thead><tr><th scope='col' rowspan='2'>Choice</th><th scope='colgroup'>All responders</th></tr><tr>
<th scope='col'>Results</th></tr></thead>
<tbody>
<tr class='odd'>
<th scope='row'>2007-06-15</th>
<td>2</td>
</tr>
<tr class='even'>
<th scope='row'>2007-06-30</th>
<td>4</td>
</tr>
<tr class='odd'>
<th scope='row'>2007-07-15</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>2007-07-31</th>
<td>6</td>
</tr>
<tr class='odd'>
<th scope='row'>2007-08-15</th>
<td>3</td>
</tr>
<tr class='even'>
<th scope='row'>2007-08-30</th>
<td>26</td>
</tr>
</tbody>
</table>
<p>(88 responses didn't contain an answer to this question)</p>
<h4>Details</h4>
<table class='results' border='1'>
<thead>
<tr>
<th>Responder</th>
<th scope='col'>When do you plan to complete your detailed review of the above section(s)?</th><th scope='col' class='meta'></th></tr>
</thead>
<tbody>
<tr><th scope='row'>Chasen Le Hara</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dylan Smith</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Murray Maloney</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kornel Lesinski</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Dailey</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Chris Veenboer</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mihai Sucan</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Asbjørn Ulsberg</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Brad Fults</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Roger Johansson</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Baron</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John-Mark Bell</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Tim McMahon</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>M. Jackson Wilkinson</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Maciej Stachowiak</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Neitsch</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bhasker V Kode</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Magnus Kristiansen</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Alfonso Martínez de Lizarrondo</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Szymon Pilkowski</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Josef Spillner</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henrik Lied</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Stewart</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Ratzloff</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dominik Tomaszuk</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Higginbotham</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Hyatt</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Nicolas Le Gall</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Serdar Kiliç</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Boyer</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Isac Lagerblad</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Rene Saarsoo</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Patrick Taylor</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jonas Sicking</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Roman Kitainik</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Addam Wassel</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>James VanDyke</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Wilcox</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Anne van Kesteren</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Craig Saila</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Darren West</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Michael Turnwall</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>James Graham</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Gregory Rosmaita</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Benjamin Hedrington</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Karl Dubost</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Yannick Croissant</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Battilana</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrew Smith</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jens Meiert</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Eric Eggert</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stephen Axthelm</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Account Deleted</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Andrei Polushin</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Chris Adams</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jirka Kosek</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marco Neumann</th>
<td>2007-06-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ian Hickson</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henri Sivonen</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Lee Kowalkowski</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Robert Burns</th>
<td>2007-06-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Henrik Dvergsdal</th>
<td>2007-06-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ariel Pérez</th>
<td>2007-07-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Håsäther</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Laurens Holst</th>
<td>2007-07-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Joshue O Connor</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mark Martin</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Bradley</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sean Fraser</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Benoit Piette</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Denis Boudreau</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Carol King</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Balakumar Muthu</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Gonzalo Rubio</th>
<td>2007-08-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Alejandro Fernandez</th>
<td>2007-07-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Stéphane Deschamps</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marek Pawlowski</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Masataka Yakura</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Thomas Bradley</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jon Barnett</th>
<td>2007-08-30</td>
<td class='meta'>possibly later as spec evolves.</td></tr>
<tr><th scope='row'>Debi Orton</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marcin Hanclik</th>
<td>2007-08-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jason White</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sander van Lambalgen</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Charles McCathieNevile</th>
<td>2007-08-30</td>
<td class='meta'>I don't really believe this guess :( But I will make an effort at it...</td></tr>
<tr><th scope='row'>David McClure</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Eric Daspet</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ben Boyle</th>
<td>2007-08-30</td>
<td class='meta'>(working my way through it)</td></tr>
<tr><th scope='row'>Dimitri Glazkov</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kai Hendry</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Matthew Raymond</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Adam Roben</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ryan King</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Shawn Medero</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Weston Ruter</th>
<td>2007-08-30</td>
<td class='meta'>I've been abroad for the past few months so have not had reliable Internet access. I am returning home now so will be more available to take on WG tasks. Probably September is more likely when I'll be able to finish reviewing.</td></tr>
<tr><th scope='row'>Mikko Honkala</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Mark Baker</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Marghanita da Cruz</th>
<td>2007-08-30</td>
<td class='meta'>New Target 31st October 2007<br />
<br />
</td></tr>
<tr><th scope='row'>Joseph D'Andrea</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Geoffrey Sneddon</th>
<td>2007-08-30</td>
<td class='meta'><del>I'll try to get 3.1–13, as well as 3.19 and 4.4, done by mid July (as I'm off on the 19th). 4.7 after that (probably early August), then however long the parsing takes.</del><br />
<br />
I hope to have everything bar the parsing section done by the end of August. Parsing will be done when I have time afterwards.</td></tr>
<tr><th scope='row'>Scott Vesey</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Justin Thorp</th>
<td></td>
<td class='meta'>The end of the year.</td></tr>
<tr><th scope='row'>Doug Jones</th>
<td>2007-06-15</td>
<td class='meta'>2008-03-31</td></tr>
<tr><th scope='row'>Ivan Enderlin</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Wesley Upchurch</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Preston Bannister</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sierk Bornemann</th>
<td>2007-08-30</td>
<td class='meta'>to be done</td></tr>
<tr><th scope='row'>Sam Kuper</th>
<td>2007-06-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Samuel Santos</th>
<td>2007-08-30</td>
<td class='meta'>2008-02-10</td></tr>
<tr><th scope='row'>Raphael Champeimont</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Karl Groves</th>
<td></td>
<td class='meta'>All options above are in the past. ;-)</td></tr>
<tr><th scope='row'>aurélien levy</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Singer</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>David Randall</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Bill Mason</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Kelly Gifford</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Sam Johnston</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dean Edridge</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Cynthia Shelly</th>
<td></td>
<td class='meta'>August 15, 2008</td></tr>
<tr><th scope='row'>Dionysios Synodinos</th>
<td></td>
<td class='meta'>2007-10-20</td></tr>
<tr><th scope='row'>Simon Pieters</th>
<td>2007-07-31</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Terry Morris</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ben Millard</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Dan Connolly</th>
<td>2007-08-15</td>
<td class='meta'>I said 30 June previously, but I haven't finished a couple other tasks in time, so I'm pushing back my estimate by a couple weeks. And again. :-/</td></tr>
<tr><th scope='row'>Julian Reschke</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Channy Yun</th>
<td>2007-08-30</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Larry Masinter</th>
<td></td>
<td class='meta'>"complete" seems ambitious. I intend to do a detailed review of sections chosen at random in an attempt to get more depth to the shallow comments given so far.</td></tr>
<tr><th scope='row'>Laura Carlson</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Martin McEvoy</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>Ryan Mitchell</th>
<td></td>
<td class='meta'></td></tr>
<tr><th scope='row'>John Stewart</th>
<td>2007-06-15</td>
<td class='meta'></td></tr>
<tr><th scope='row'>Jace Voracek</th>
<td></td>
<td class='meta'></td></tr>
</tbody>
</table>
</div><h2>More details on responses</h2>
<ul>
<li><strong>Chasen Le Hara</strong>: last responded on 24, April 2007 at 22:24 (UTC)</li>
<li><strong>Dylan Smith</strong>: last responded on 24, April 2007 at 23:29 (UTC)</li>
<li><strong>Murray Maloney</strong>: last responded on 25, April 2007 at 00:04 (UTC)</li>
<li><strong>Kornel Lesinski</strong>: last responded on 25, April 2007 at 00:15 (UTC)</li>
<li><strong>David Dailey</strong>: last responded on 25, April 2007 at 02:03 (UTC)</li>
<li><strong>Chris Veenboer</strong>: last responded on 25, April 2007 at 08:24 (UTC)</li>
<li><strong>Mihai Sucan</strong>: last responded on 25, April 2007 at 10:15 (UTC)</li>
<li><strong>Asbjørn Ulsberg</strong>: last responded on 25, April 2007 at 16:08 (UTC)</li>
<li><strong>Brad Fults</strong>: last responded on 25, April 2007 at 16:45 (UTC)</li>
<li><strong>Roger Johansson</strong>: last responded on 25, April 2007 at 18:54 (UTC)</li>
<li><strong>David Baron</strong>: last responded on 25, April 2007 at 20:43 (UTC)</li>
<li><strong>John-Mark Bell</strong>: last responded on 26, April 2007 at 09:34 (UTC)</li>
<li><strong>Tim McMahon</strong>: last responded on 26, April 2007 at 13:59 (UTC)</li>
<li><strong>M. Jackson Wilkinson</strong>: last responded on 26, April 2007 at 17:28 (UTC)</li>
<li><strong>Maciej Stachowiak</strong>: last responded on 26, April 2007 at 17:36 (UTC)</li>
<li><strong>Andrew Neitsch</strong>: last responded on 27, April 2007 at 03:23 (UTC)</li>
<li><strong>Bhasker V Kode</strong>: last responded on 27, April 2007 at 05:33 (UTC)</li>
<li><strong>Magnus Kristiansen</strong>: last responded on 28, April 2007 at 00:10 (UTC)</li>
<li><strong>Alfonso Martínez de Lizarrondo</strong>: last responded on 28, April 2007 at 09:33 (UTC)</li>
<li><strong>Szymon Pilkowski</strong>: last responded on 30, April 2007 at 01:54 (UTC)</li>
<li><strong>Josef Spillner</strong>: last responded on 30, April 2007 at 09:21 (UTC)</li>
<li><strong>Henrik Lied</strong>: last responded on 30, April 2007 at 11:20 (UTC)</li>
<li><strong>Stephen Stewart</strong>: last responded on 1, May 2007 at 20:54 (UTC)</li>
<li><strong>Matthew Ratzloff</strong>: last responded on 1, May 2007 at 22:23 (UTC)</li>
<li><strong>Dominik Tomaszuk</strong>: last responded on 2, May 2007 at 13:10 (UTC)</li>
<li><strong>Thomas Higginbotham</strong>: last responded on 3, May 2007 at 02:31 (UTC)</li>
<li><strong>David Hyatt</strong>: last responded on 3, May 2007 at 03:49 (UTC)</li>
<li><strong>Nicolas Le Gall</strong>: last responded on 3, May 2007 at 06:59 (UTC)</li>
<li><strong>Serdar Kiliç</strong>: last responded on 3, May 2007 at 13:21 (UTC)</li>
<li><strong>John Boyer</strong>: last responded on 3, May 2007 at 18:49 (UTC)</li>
<li><strong>Isac Lagerblad</strong>: last responded on 4, May 2007 at 06:36 (UTC)</li>
<li><strong>Rene Saarsoo</strong>: last responded on 4, May 2007 at 09:52 (UTC)</li>
<li><strong>Patrick Taylor</strong>: last responded on 5, May 2007 at 01:45 (UTC)</li>
<li><strong>Jonas Sicking</strong>: last responded on 5, May 2007 at 12:31 (UTC)</li>
<li><strong>Roman Kitainik</strong>: last responded on 9, May 2007 at 22:47 (UTC)</li>
<li><strong>Addam Wassel</strong>: last responded on 11, May 2007 at 18:16 (UTC)</li>
<li><strong>James VanDyke</strong>: last responded on 11, May 2007 at 18:26 (UTC)</li>
<li><strong>Matthew Wilcox</strong>: last responded on 11, May 2007 at 21:36 (UTC)</li>
<li><strong>Anne van Kesteren</strong>: last responded on 12, May 2007 at 10:52 (UTC)</li>
<li><strong>Craig Saila</strong>: last responded on 12, May 2007 at 13:07 (UTC)</li>
<li><strong>Darren West</strong>: last responded on 12, May 2007 at 14:36 (UTC)</li>
<li><strong>Michael Turnwall</strong>: last responded on 14, May 2007 at 19:37 (UTC)</li>
<li><strong>James Graham</strong>: last responded on 14, May 2007 at 22:15 (UTC)</li>
<li><strong>Gregory Rosmaita</strong>: last responded on 15, May 2007 at 00:35 (UTC)</li>
<li><strong>Benjamin Hedrington</strong>: last responded on 15, May 2007 at 13:17 (UTC)</li>
<li><strong>Karl Dubost</strong>: last responded on 15, May 2007 at 13:47 (UTC)</li>
<li><strong>Yannick Croissant</strong>: last responded on 15, May 2007 at 17:11 (UTC)</li>
<li><strong>Marco Battilana</strong>: last responded on 17, May 2007 at 15:43 (UTC)</li>
<li><strong>Andrew Smith</strong>: last responded on 18, May 2007 at 21:36 (UTC)</li>
<li><strong>Jens Meiert</strong>: last responded on 21, May 2007 at 15:00 (UTC)</li>
<li><strong>Eric Eggert</strong>: last responded on 28, May 2007 at 06:04 (UTC)</li>
<li><strong>Stephen Axthelm</strong>: last responded on 31, May 2007 at 03:21 (UTC)</li>
<li><strong>Account Deleted</strong>: last responded on 31, May 2007 at 12:58 (UTC)</li>
<li><strong>Andrei Polushin</strong>: last responded on 31, May 2007 at 14:50 (UTC)</li>
<li><strong>Chris Adams</strong>: last responded on 2, June 2007 at 00:19 (UTC)</li>
<li><strong>Jirka Kosek</strong>: last responded on 7, June 2007 at 17:24 (UTC)</li>
<li><strong>Marco Neumann</strong>: last responded on 7, June 2007 at 17:44 (UTC)</li>
<li><strong>Ian Hickson</strong>: last responded on 7, June 2007 at 18:39 (UTC)</li>
<li><strong>Henri Sivonen</strong>: last responded on 8, June 2007 at 06:02 (UTC)</li>
<li><strong>Lee Kowalkowski</strong>: last responded on 8, June 2007 at 09:14 (UTC)</li>
<li><strong>Robert Burns</strong>: last responded on 8, June 2007 at 19:55 (UTC)</li>
<li><strong>Henrik Dvergsdal</strong>: last responded on 10, June 2007 at 11:59 (UTC)</li>
<li><strong>Ariel Pérez</strong>: last responded on 11, June 2007 at 18:24 (UTC)</li>
<li><strong>David Håsäther</strong>: last responded on 13, June 2007 at 18:26 (UTC)</li>
<li><strong>Laurens Holst</strong>: last responded on 15, June 2007 at 02:58 (UTC)</li>
<li><strong>Joshue O Connor</strong>: last responded on 18, June 2007 at 20:28 (UTC)</li>
<li><strong>Mark Martin</strong>: last responded on 18, June 2007 at 21:09 (UTC)</li>
<li><strong>John Bradley</strong>: last responded on 25, June 2007 at 20:00 (UTC)</li>
<li><strong>Sean Fraser</strong>: last responded on 27, June 2007 at 01:17 (UTC)</li>
<li><strong>Benoit Piette</strong>: last responded on 29, June 2007 at 16:46 (UTC)</li>
<li><strong>Denis Boudreau</strong>: last responded on 29, June 2007 at 17:20 (UTC)</li>
<li><strong>Carol King</strong>: last responded on 30, June 2007 at 04:28 (UTC)</li>
<li><strong>Balakumar Muthu</strong>: last responded on 30, June 2007 at 09:30 (UTC)</li>
<li><strong>Gonzalo Rubio</strong>: last responded on 3, July 2007 at 00:54 (UTC)</li>
<li><strong>Alejandro Fernandez</strong>: last responded on 3, July 2007 at 07:48 (UTC)</li>
<li><strong>Stéphane Deschamps</strong>: last responded on 3, July 2007 at 09:04 (UTC)</li>
<li><strong>Marek Pawlowski</strong>: last responded on 5, July 2007 at 12:24 (UTC)</li>
<li><strong>Masataka Yakura</strong>: last responded on 9, July 2007 at 02:44 (UTC)</li>
<li><strong>Thomas Bradley</strong>: last responded on 10, July 2007 at 02:13 (UTC)</li>
<li><strong>Jon Barnett</strong>: last responded on 11, July 2007 at 15:02 (UTC)</li>
<li><strong>Debi Orton</strong>: last responded on 18, July 2007 at 19:44 (UTC)</li>
<li><strong>Marcin Hanclik</strong>: last responded on 30, July 2007 at 17:15 (UTC)</li>
<li><strong>Jason White</strong>: last responded on 31, July 2007 at 05:17 (UTC)</li>
<li><strong>Sander van Lambalgen</strong>: last responded on 1, August 2007 at 16:40 (UTC)</li>
<li><strong>Charles McCathieNevile</strong>: last responded on 2, August 2007 at 18:25 (UTC)</li>
<li><strong>David McClure</strong>: last responded on 15, August 2007 at 19:19 (UTC)</li>
<li><strong>Eric Daspet</strong>: last responded on 15, August 2007 at 19:56 (UTC)</li>
<li><strong>Ben Boyle</strong>: last responded on 16, August 2007 at 10:25 (UTC)</li>
<li><strong>Dimitri Glazkov</strong>: last responded on 17, August 2007 at 12:21 (UTC)</li>
<li><strong>Kai Hendry</strong>: last responded on 17, August 2007 at 14:57 (UTC)</li>
<li><strong>Matthew Raymond</strong>: last responded on 18, August 2007 at 12:09 (UTC)</li>
<li><strong>Adam Roben</strong>: last responded on 19, August 2007 at 17:27 (UTC)</li>
<li><strong>Ryan King</strong>: last responded on 20, August 2007 at 20:00 (UTC)</li>
<li><strong>Shawn Medero</strong>: last responded on 20, August 2007 at 22:37 (UTC)</li>
<li><strong>Weston Ruter</strong>: last responded on 21, August 2007 at 14:14 (UTC)</li>
<li><strong>Mikko Honkala</strong>: last responded on 22, August 2007 at 13:53 (UTC)</li>
<li><strong>Mark Baker</strong>: last responded on 4, September 2007 at 02:42 (UTC)</li>
<li><strong>Marghanita da Cruz</strong>: last responded on 28, September 2007 at 01:27 (UTC)</li>
<li><strong>Joseph D'Andrea</strong>: last responded on 19, October 2007 at 17:49 (UTC)</li>
<li><strong>Geoffrey Sneddon</strong>: last responded on 20, October 2007 at 09:08 (UTC)</li>
<li><strong>Scott Vesey</strong>: last responded on 10, November 2007 at 16:51 (UTC)</li>
<li><strong>Justin Thorp</strong>: last responded on 15, November 2007 at 20:07 (UTC)</li>
<li><strong>Doug Jones</strong>: last responded on 27, December 2007 at 04:43 (UTC)</li>
<li><strong>Ivan Enderlin</strong>: last responded on 27, December 2007 at 10:14 (UTC)</li>
<li><strong>Wesley Upchurch</strong>: last responded on 11, January 2008 at 14:46 (UTC)</li>
<li><strong>Preston Bannister</strong>: last responded on 11, January 2008 at 21:09 (UTC)</li>
<li><strong>Sierk Bornemann</strong>: last responded on 23, January 2008 at 04:13 (UTC)</li>
<li><strong>Sam Kuper</strong>: last responded on 7, February 2008 at 17:36 (UTC)</li>
<li><strong>Samuel Santos</strong>: last responded on 10, February 2008 at 23:01 (UTC)</li>
<li><strong>Raphael Champeimont</strong>: last responded on 15, February 2008 at 08:11 (UTC)</li>
<li><strong>Karl Groves</strong>: last responded on 15, February 2008 at 11:40 (UTC)</li>
<li><strong>aurélien levy</strong>: last responded on 18, March 2008 at 17:29 (UTC)</li>
<li><strong>David Singer</strong>: last responded on 18, March 2008 at 21:54 (UTC)</li>
<li><strong>David Randall</strong>: last responded on 28, March 2008 at 10:23 (UTC)</li>
<li><strong>Bill Mason</strong>: last responded on 5, April 2008 at 16:54 (UTC)</li>
<li><strong>Kelly Gifford</strong>: last responded on 29, April 2008 at 19:44 (UTC)</li>
<li><strong>Sam Johnston</strong>: last responded on 16, May 2008 at 20:54 (UTC)</li>
<li><strong>Dean Edridge</strong>: last responded on 7, July 2008 at 11:33 (UTC)</li>
<li><strong>Cynthia Shelly</strong>: last responded on 9, July 2008 at 21:42 (UTC)</li>
<li><strong>Dionysios Synodinos</strong>: last responded on 4, September 2008 at 16:28 (UTC)</li>
<li><strong>Simon Pieters</strong>: last responded on 7, September 2008 at 07:09 (UTC)</li>
<li><strong>Terry Morris</strong>: last responded on 7, September 2008 at 17:41 (UTC)</li>
<li><strong>Ben Millard</strong>: last responded on 30, September 2008 at 21:33 (UTC)</li>
<li><strong>Dan Connolly</strong>: last responded on 2, February 2009 at 20:26 (UTC)</li>
<li><strong>Julian Reschke</strong>: last responded on 12, February 2009 at 18:01 (UTC)</li>
<li><strong>Channy Yun</strong>: last responded on 8, May 2009 at 16:29 (UTC)</li>
<li><strong>Larry Masinter</strong>: last responded on 26, June 2009 at 20:31 (UTC)</li>
<li><strong>Laura Carlson</strong>: last responded on 31, July 2009 at 18:53 (UTC)</li>
<li><strong>Martin McEvoy</strong>: last responded on 4, August 2009 at 10:28 (UTC)</li>
<li><strong>Ryan Mitchell</strong>: last responded on 31, August 2009 at 21:51 (UTC)</li>
<li><strong>John Stewart</strong>: last responded on 17, September 2009 at 18:15 (UTC)</li>
<li><strong>Jace Voracek</strong>: last responded on 1, January 2010 at 00:05 (UTC)</li>
</ul>
<h2>Non-responders</h2><p>The following persons have not answered the questionnaire:</p>
<ol>
<li>Craig Smithpeters <<a href='mailto:craig.smithpeters@cox.com'>craig.smithpeters@cox.com</a>></li><li>Kevin Davies <<a href='mailto:kevin@kjdavies.com'>kevin@kjdavies.com</a>></li><li>David Kim <<a href='mailto:david.kim@sk.com'>david.kim@sk.com</a>></li><li>Ian Devlin <<a href='mailto:ian@iandevlin.com'>ian@iandevlin.com</a>></li><li>Jason Kiss <<a href='mailto:jason@accessibleculture.org'>jason@accessibleculture.org</a>></li><li>Clarke Stevens <<a href='mailto:c.stevens@cablelabs.com'>c.stevens@cablelabs.com</a>></li><li>Peter Winnberg <<a href='mailto:peter.winnberg@gmail.com'>peter.winnberg@gmail.com</a>></li><li>Nicholas Zakas <<a href='mailto:standards@nczconsulting.com'>standards@nczconsulting.com</a>></li><li>Gian Luca Marroni <<a href='mailto:gmarroni@libero.it'>gmarroni@libero.it</a>></li><li>Colin Ihrig <<a href='mailto:cjihrig@gmail.com'>cjihrig@gmail.com</a>></li><li>Hans Hillen <<a href='mailto:hans.hillen@gmail.com'>hans.hillen@gmail.com</a>></li><li>Glenn Adams <<a href='mailto:glenn@skynav.com'>glenn@skynav.com</a>></li><li>Jonas Jacek <<a href='mailto:contact@jonas.me'>contact@jonas.me</a>></li><li>Woo il Kwon <<a href='mailto:willkwon@infraware.co.kr'>willkwon@infraware.co.kr</a>></li><li>Sung Taeg Kim <<a href='mailto:stkim@infraware.co.kr'>stkim@infraware.co.kr</a>></li><li>Mi Youn Choi <<a href='mailto:mychei@infraware.co.kr'>mychei@infraware.co.kr</a>></li><li>Ryosuke Niwa <<a href='mailto:rniwa@webkit.org'>rniwa@webkit.org</a>></li><li>Soonho Lee <<a href='mailto:soonho.lee@sk.com'>soonho.lee@sk.com</a>></li><li>geunho jang <<a href='mailto:geunho.jang@sk.com'>geunho.jang@sk.com</a>></li><li>Adam Sobieski <<a href='mailto:adamsobieski@hotmail.com'>adamsobieski@hotmail.com</a>></li><li>Andrew Meredith <<a href='mailto:andrew@integritywebnc.com'>andrew@integritywebnc.com</a>></li><li>jongyoul Park <<a href='mailto:jongyoul@etri.re.kr'>jongyoul@etri.re.kr</a>></li><li>Kunio Ito <<a href='mailto:kunio.ito@mail.rakuten.com'>kunio.ito@mail.rakuten.com</a>></li><li>Daniel Hughes <<a href='mailto:dhughes@liguori.org'>dhughes@liguori.org</a>></li><li>Narm Gadiraju <<a href='mailto:narm@intel.com'>narm@intel.com</a>></li><li>Payman Delshad <<a href='mailto:payman@opera.com'>payman@opera.com</a>></li><li>Javier Jiménez <<a href='mailto:jjimenez@linkatu.net'>jjimenez@linkatu.net</a>></li><li>Chris Bold <<a href='mailto:neuronton@live.com'>neuronton@live.com</a>></li><li>Youngsun Ryu <<a href='mailto:ysryu@samsung.com'>ysryu@samsung.com</a>></li><li>DaeHyun Kim <<a href='mailto:dhn.kim@samsung.com'>dhn.kim@samsung.com</a>></li><li>Jongpil Jung <<a href='mailto:jongpil19.jung@samsung.com'>jongpil19.jung@samsung.com</a>></li><li>Erin Sparling <<a href='mailto:erin@everyplace.net'>erin@everyplace.net</a>></li><li>Alvar Laigna <<a href='mailto:laigna@gmail.com'>laigna@gmail.com</a>></li><li>Catherine Roy <<a href='mailto:ecrire@catherine-roy.net'>ecrire@catherine-roy.net</a>></li><li>Arthur Barstow <<a href='mailto:art.barstow@nokia.com'>art.barstow@nokia.com</a>></li><li>Hadley Beeman <<a href='mailto:hadley@linkedgov.org'>hadley@linkedgov.org</a>></li><li>Lynn Holdsworth <<a href='mailto:lynn.holdsworth@rnib.org.uk'>lynn.holdsworth@rnib.org.uk</a>></li><li>Cameron Jones <<a href='mailto:cmhjones@gmail.com'>cmhjones@gmail.com</a>></li><li>Nathan Rixham <<a href='mailto:nathan@webr3.org'>nathan@webr3.org</a>></li><li>Kurt Cagle <<a href='mailto:kurt.cagle@gmail.com'>kurt.cagle@gmail.com</a>></li><li>Lawrence Rosen <<a href='mailto:lrosen@rosenlaw.com'>lrosen@rosenlaw.com</a>></li><li>Fumitaka Watanabe <<a href='mailto:fwtnb@tomo-digi.co.jp'>fwtnb@tomo-digi.co.jp</a>></li><li>Yoshimitsu Tsurimaki <<a href='mailto:tsurimaki@tomo-digi.co.jp'>tsurimaki@tomo-digi.co.jp</a>></li><li>Shoko Okuma <<a href='mailto:okuma@tomo-digi.co.jp'>okuma@tomo-digi.co.jp</a>></li><li>Paul Bakaus <<a href='mailto:pbakaus@zynga.com'>pbakaus@zynga.com</a>></li><li>Bob Lund <<a href='mailto:b.lund@cablelabs.com'>b.lund@cablelabs.com</a>></li><li>Ohad Assulin <<a href='mailto:ohad.assulin@hp.com'>ohad.assulin@hp.com</a>></li><li>Giuseppe Pascale <<a href='mailto:giuseppep@opera.com'>giuseppep@opera.com</a>></li><li>Andi Snow-Weaver <<a href='mailto:andisnow@us.ibm.com'>andisnow@us.ibm.com</a>></li><li>Mathias Bynens <<a href='mailto:mathias@qiwi.be'>mathias@qiwi.be</a>></li><li>Mark Watson <<a href='mailto:watsonm@netflix.com'>watsonm@netflix.com</a>></li><li>Luiz Agostini <<a href='mailto:luiz@webkit.org'>luiz@webkit.org</a>></li><li>Danny Ayers <<a href='mailto:danny.ayers@gmail.com'>danny.ayers@gmail.com</a>></li><li>Andrew Roth <<a href='mailto:andrew.in.snow+w3c@gmail.com'>andrew.in.snow+w3c@gmail.com</a>></li><li>Kenneth Nordahl <<a href='mailto:kenneth@nordahl.me'>kenneth@nordahl.me</a>></li><li>James Clark <<a href='mailto:jjc@jclark.com'>jjc@jclark.com</a>></li><li>Kensaku KOMATSU <<a href='mailto:kensaku.komatsu@gmail.com'>kensaku.komatsu@gmail.com</a>></li><li>Dave Saunders <<a href='mailto:drs@microfm.co.uk'>drs@microfm.co.uk</a>></li><li>Othmane Benyoucef <<a href='mailto:othmane_benyoucef@hotmail.com'>othmane_benyoucef@hotmail.com</a>></li><li>Joseph Pecoraro <<a href='mailto:pecoraro@apple.com'>pecoraro@apple.com</a>></li><li>David Carlisle <<a href='mailto:davidc@nag.co.uk'>davidc@nag.co.uk</a>></li><li>Noriyo Asano <<a href='mailto:noriyo.asano@gmail.com'>noriyo.asano@gmail.com</a>></li><li>Yoshinori TAKESAKO <<a href='mailto:takesako@gmail.com'>takesako@gmail.com</a>></li><li>Mark Pilgrim <<a href='mailto:pilgrim@google.com'>pilgrim@google.com</a>></li><li>Hiroshi Omata <<a href='mailto:omata@jig.jp'>omata@jig.jp</a>></li><li>Hidetaka Kimura <<a href='mailto:kimura@jig.jp'>kimura@jig.jp</a>></li><li>Yukio Ishino <<a href='mailto:ishino@jig.jp'>ishino@jig.jp</a>></li><li>Taisuke Fukuno <<a href='mailto:fukuno@jig.jp'>fukuno@jig.jp</a>></li><li>Jacob Rossi <<a href='mailto:Jacob.Rossi@microsoft.com'>Jacob.Rossi@microsoft.com</a>></li><li>Christophe Eyrignoux <<a href='mailto:christophe.eyrignoux@orange-ftgroup.com'>christophe.eyrignoux@orange-ftgroup.com</a>></li><li>Yosuke Funahashi <<a href='mailto:yfuna@tomo-digi.co.jp'>yfuna@tomo-digi.co.jp</a>></li><li>Soonbo Han <<a href='mailto:soonbo.han@lge.com'>soonbo.han@lge.com</a>></li><li>Tony Gentilcore <<a href='mailto:tonyg@google.com'>tonyg@google.com</a>></li><li>Donald Evans <<a href='mailto:don.evans@deque.com'>don.evans@deque.com</a>></li><li>Mike Amundsen <<a href='mailto:mamund@yahoo.com'>mamund@yahoo.com</a>></li><li>Greg Johnson <<a href='mailto:greg.johnson@gmail.com'>greg.johnson@gmail.com</a>></li><li>Léonie Watson <<a href='mailto:lwatson@nomensa.com'>lwatson@nomensa.com</a>></li><li>Koan-Sin Tan <<a href='mailto:koansin.tan@gmail.com'>koansin.tan@gmail.com</a>></li><li>Mounir Lamouri <<a href='mailto:mounir.lamouri@mozilla.com'>mounir.lamouri@mozilla.com</a>></li><li>Norman Walsh <<a href='mailto:norman.walsh@marklogic.com'>norman.walsh@marklogic.com</a>></li><li>Everett Zufelt <<a href='mailto:everett@zufelt.ca'>everett@zufelt.ca</a>></li><li>Jonas Schneider <<a href='mailto:js.sokrates@gmail.com'>js.sokrates@gmail.com</a>></li><li>Haymo Meran <<a href='mailto:h.meran@gentics.com'>h.meran@gentics.com</a>></li><li>Matt Lee <<a href='mailto:mattl-lists@fsf.org'>mattl-lists@fsf.org</a>></li><li>Dave Penkler <<a href='mailto:dave.penkler@hp.com'>dave.penkler@hp.com</a>></li><li>Kimberly Blessing <<a href='mailto:kimberly_blessing@comcast.com'>kimberly_blessing@comcast.com</a>></li><li>David Corvoysier <<a href='mailto:david.corvoysier@orange.com'>david.corvoysier@orange.com</a>></li><li>Zi Bin Cheah <<a href='mailto:zibin@opera.com'>zibin@opera.com</a>></li><li>Antonio Tapiador <<a href='mailto:atapiador@dit.upm.es'>atapiador@dit.upm.es</a>></li><li>Diego Moreno <<a href='mailto:dmoreno@dit.upm.es'>dmoreno@dit.upm.es</a>></li><li>Daniel Gallego <<a href='mailto:dgallego@dit.upm.es'>dgallego@dit.upm.es</a>></li><li>Diego Carrera <<a href='mailto:diegocarrera2000@gmail.com'>diegocarrera2000@gmail.com</a>></li><li>Antonio Mendo <<a href='mailto:amendo@dit.upm.es'>amendo@dit.upm.es</a>></li><li>Pedro Rodriguez <<a href='mailto:prodriguez@dit.upm.es'>prodriguez@dit.upm.es</a>></li><li>Emilio Garcia <<a href='mailto:egarcia@dit.upm.es'>egarcia@dit.upm.es</a>></li><li>Fernando Escribano <<a href='mailto:fec@dit.upm.es'>fec@dit.upm.es</a>></li><li>Javier Cerviño <<a href='mailto:jcervino@dit.upm.es'>jcervino@dit.upm.es</a>></li><li>Enrique Barra <<a href='mailto:ebarra@dit.upm.es'>ebarra@dit.upm.es</a>></li><li>Sandra Aguirrre Herrera <<a href='mailto:saguirre@dit.upm.es'>saguirre@dit.upm.es</a>></li><li>Andreas Kuckartz <<a href='mailto:A.Kuckartz@ping.de'>A.Kuckartz@ping.de</a>></li><li>Jesper Wøldiche <<a href='mailto:jesper@woeldiche.dk'>jesper@woeldiche.dk</a>></li><li>Nan Ma <<a href='mailto:manan_founder@126.com'>manan_founder@126.com</a>></li><li>Stanley Manoski <<a href='mailto:manoski@mitre.org'>manoski@mitre.org</a>></li><li>Martijn Croonen <<a href='mailto:martijnc@martijnc.be'>martijnc@martijnc.be</a>></li><li>Benjamin Hawkes-Lewis <<a href='mailto:bhawkeslewis@googlemail.com'>bhawkeslewis@googlemail.com</a>></li><li>Evan Smith <<a href='mailto:evan@zyglobe.com'>evan@zyglobe.com</a>></li><li>Jeanne F Spellman <<a href='mailto:jeanne@w3.org'>jeanne@w3.org</a>></li><li>Jack Jansen <<a href='mailto:jack@cwi.nl'>jack@cwi.nl</a>></li><li>Peter Beverloo <<a href='mailto:beverloo@google.com'>beverloo@google.com</a>></li><li>Grant Simpson <<a href='mailto:glsimpso@indiana.edu'>glsimpso@indiana.edu</a>></li><li>Bruce Plutchak <<a href='mailto:plutchakbd@earthlink.net'>plutchakbd@earthlink.net</a>></li><li>Michael zur Muehlen <<a href='mailto:mzurmuehlen@stevens.edu'>mzurmuehlen@stevens.edu</a>></li><li>Wayne Carr <<a href='mailto:wayne.carr@intel.com'>wayne.carr@intel.com</a>></li><li>Anssi Kostiainen <<a href='mailto:anssi.kostiainen@nokia.com'>anssi.kostiainen@nokia.com</a>></li><li>Kenny Johar <<a href='mailto:kennyjohar@gmail.com'>kennyjohar@gmail.com</a>></li><li>Masatomo Kobayashi <<a href='mailto:mstm@jp.ibm.com'>mstm@jp.ibm.com</a>></li><li>Ojan Vafai <<a href='mailto:ojan@chromium.org'>ojan@chromium.org</a>></li><li>Jer Noble <<a href='mailto:jer.noble@apple.com'>jer.noble@apple.com</a>></li><li>Daniel Burnett <<a href='mailto:dburnett@voxeo.com'>dburnett@voxeo.com</a>></li><li>Sharon Newman <<a href='mailto:sharco@microsoft.com'>sharco@microsoft.com</a>></li><li>Deborah Dahl <<a href='mailto:dahl@conversational-technologies.com'>dahl@conversational-technologies.com</a>></li><li>Dominik Tomaszuk <<a href='mailto:ddooss@wp.pl'>ddooss@wp.pl</a>></li><li>Dick Bulterman <<a href='mailto:Dick.Bulterman@cwi.nl'>Dick.Bulterman@cwi.nl</a>></li><li>Eihab Ibrahim <<a href='mailto:eihabibrahim@gmail.com'>eihabibrahim@gmail.com</a>></li><li>Colin Aarts <<a href='mailto:colin@colinaarts.com'>colin@colinaarts.com</a>></li><li>Chris Marrin <<a href='mailto:cmarrin@apple.com'>cmarrin@apple.com</a>></li><li>Arve Bersvendsen <<a href='mailto:arveb@opera.com'>arveb@opera.com</a>></li><li>Dean Leigh <<a href='mailto:dean.leigh@deanleigh.co.uk'>dean.leigh@deanleigh.co.uk</a>></li><li>Matt Harris <<a href='mailto:w3@themattharris.com'>w3@themattharris.com</a>></li><li>David Bolter <<a href='mailto:david.bolter@gmail.com'>david.bolter@gmail.com</a>></li><li>Robert Stern <<a href='mailto:rstern@gmail.com'>rstern@gmail.com</a>></li><li>Soohong Daniel Park <<a href='mailto:soohong.park@samsung.com'>soohong.park@samsung.com</a>></li><li>WonSuk Lee <<a href='mailto:wonsuk11.lee@samsung.com'>wonsuk11.lee@samsung.com</a>></li><li>Kangchan Lee <<a href='mailto:chan@w3.org'>chan@w3.org</a>></li><li>Jatinder Mann <<a href='mailto:jmann@microsoft.com'>jmann@microsoft.com</a>></li><li>Mark Foladare <<a href='mailto:mf1383@att.com'>mf1383@att.com</a>></li><li>Johnson Wang <<a href='mailto:Johnson.wang@nokia.com'>Johnson.wang@nokia.com</a>></li><li>Kazuyuki Ashimura <<a href='mailto:ashimura@w3.org'>ashimura@w3.org</a>></li><li>Ole Riesenberg <<a href='mailto:or@oleriesenberg.com'>or@oleriesenberg.com</a>></li><li>Sorin Sbarnea <<a href='mailto:ssbarnea@adobe.com'>ssbarnea@adobe.com</a>></li><li>Tom Nguyen <<a href='mailto:tom@adobe.com'>tom@adobe.com</a>></li><li>Anand Samuel Edwin <<a href='mailto:aedwin@adobe.com'>aedwin@adobe.com</a>></li><li>Christopher Bank <<a href='mailto:cbank@adobe.com'>cbank@adobe.com</a>></li><li>Kai Scheppe <<a href='mailto:k.scheppe@telekom.de'>k.scheppe@telekom.de</a>></li><li>Graham Klyne <<a href='mailto:graham.klyne@zoo.ox.ac.uk'>graham.klyne@zoo.ox.ac.uk</a>></li><li>Monikandan S <<a href='mailto:smonikan@adobe.com'>smonikan@adobe.com</a>></li><li>Mayank Kumar <<a href='mailto:mayankk@adobe.com'>mayankk@adobe.com</a>></li><li>Dragos Georgita <<a href='mailto:dgeorgit@adobe.com'>dgeorgit@adobe.com</a>></li><li>Leonard Rosenthol <<a href='mailto:lrosenth@adobe.com'>lrosenth@adobe.com</a>></li><li>Raul Hudea <<a href='mailto:rhudea@adobe.com'>rhudea@adobe.com</a>></li><li>Raghavan Gurumurthy <<a href='mailto:raghavan@adobe.com'>raghavan@adobe.com</a>></li><li>Lucas Sa <<a href='mailto:lucas.sa@gmail.com'>lucas.sa@gmail.com</a>></li><li>Mike Taylor <<a href='mailto:miket@opera.com'>miket@opera.com</a>></li><li>Sally Cain <<a href='mailto:sally.cain@rnib.org.uk'>sally.cain@rnib.org.uk</a>></li><li>Sean Hayes <<a href='mailto:sean.hayes@microsoft.com'>sean.hayes@microsoft.com</a>></li><li>Tim van Oostrom <<a href='mailto:timvanoostrom@gmail.com'>timvanoostrom@gmail.com</a>></li><li>Matthew May <<a href='mailto:mattmay@adobe.com'>mattmay@adobe.com</a>></li><li>Matthew MacKenzie <<a href='mailto:mattm@adobe.com'>mattm@adobe.com</a>></li><li>Judy Brewer <<a href='mailto:jbrewer@w3.org'>jbrewer@w3.org</a>></li><li>Gez Lemon <<a href='mailto:g.lemon@webprofession.com'>g.lemon@webprofession.com</a>></li><li>Anders Bondehagen <<a href='mailto:anders@bondehagen.com'>anders@bondehagen.com</a>></li><li>Jon Gunderson <<a href='mailto:jongund@illinois.edu'>jongund@illinois.edu</a>></li><li>Kelly Ford <<a href='mailto:kelly.ford@microsoft.com'>kelly.ford@microsoft.com</a>></li><li>Jim Allan <<a href='mailto:jimallan@tsbvi.edu'>jimallan@tsbvi.edu</a>></li><li>Markku Hakkinen <<a href='mailto:mhakkinen@acm.org'>mhakkinen@acm.org</a>></li><li>Yehuda Katz <<a href='mailto:wycats@gmail.com'>wycats@gmail.com</a>></li><li>Geoff Freed <<a href='mailto:geoff_freed@wgbh.org'>geoff_freed@wgbh.org</a>></li><li>Feng Liu <<a href='mailto:fliu1@avaya.com'>fliu1@avaya.com</a>></li><li>Li Li <<a href='mailto:lli5@avaya.com'>lli5@avaya.com</a>></li><li>wu chou <<a href='mailto:wu.chou@huawei.com'>wu.chou@huawei.com</a>></li><li>Janina Sajka <<a href='mailto:janina@rednote.net'>janina@rednote.net</a>></li><li>Erik Isaksen <<a href='mailto:erik_isaksen@hotmail.com'>erik_isaksen@hotmail.com</a>></li><li>Jean-Pierre EVAIN <<a href='mailto:evain@ebu.ch'>evain@ebu.ch</a>></li><li>Kris Krueger <<a href='mailto:krisk@microsoft.com'>krisk@microsoft.com</a>></li><li>Philippe Le Hégaret <<a href='mailto:plh@w3.org'>plh@w3.org</a>></li><li>Samuel Weinig <<a href='mailto:weinig@apple.com'>weinig@apple.com</a>></li><li>Wendy Chisholm <<a href='mailto:wendc@microsoft.com'>wendc@microsoft.com</a>></li><li>Jonathan Griffin <<a href='mailto:jgriffin@mozilla.com'>jgriffin@mozilla.com</a>></li><li>D.R.Imanuel Abromeit <<a href='mailto:dabromeit@gmx.de'>dabromeit@gmx.de</a>></li><li>Michael Köller <<a href='mailto:michael.koeller@greenbytes.de'>michael.koeller@greenbytes.de</a>></li><li>Gavin Carothers <<a href='mailto:gavin@carothers.name'>gavin@carothers.name</a>></li><li>Bryan Sullivan <<a href='mailto:blsaws@gmail.com'>blsaws@gmail.com</a>></li><li>Paul Cotton <<a href='mailto:Paul.Cotton@microsoft.com'>Paul.Cotton@microsoft.com</a>></li><li>Frank Olivier <<a href='mailto:frank.olivier@microsoft.com'>frank.olivier@microsoft.com</a>></li><li>Eliot Graff <<a href='mailto:eliotgra@microsoft.com'>eliotgra@microsoft.com</a>></li><li>Dan Brickley <<a href='mailto:danbri@danbri.org'>danbri@danbri.org</a>></li><li>Tony Ross <<a href='mailto:tross@microsoft.com'>tross@microsoft.com</a>></li><li>Chris Cressman <<a href='mailto:chris@chriscressman.com'>chris@chriscressman.com</a>></li><li>Tab Atkins Jr. <<a href='mailto:jackalmage@gmail.com'>jackalmage@gmail.com</a>></li><li>Michael Kozakewich <<a href='mailto:mkozakewich@icosidodecahedron.com'>mkozakewich@icosidodecahedron.com</a>></li><li>Lars Gunther <<a href='mailto:gunther@keryx.se'>gunther@keryx.se</a>></li><li>Martin Kliehm <<a href='mailto:w3c@kliehm.com'>w3c@kliehm.com</a>></li><li>Tantek Çelik <<a href='mailto:tantek@cs.stanford.edu'>tantek@cs.stanford.edu</a>></li><li>Jeremy Keith <<a href='mailto:jeremy@adactio.com'>jeremy@adactio.com</a>></li><li>Manu Sporny <<a href='mailto:msporny@digitalbazaar.com'>msporny@digitalbazaar.com</a>></li><li>Ben Adida <<a href='mailto:ben@adida.net'>ben@adida.net</a>></li><li>Toby Inkster <<a href='mailto:tai@g5n.co.uk'>tai@g5n.co.uk</a>></li><li>John Drinkwater <<a href='mailto:john@nextraweb.com'>john@nextraweb.com</a>></li><li>Mark Miller <<a href='mailto:erights@google.com'>erights@google.com</a>></li><li>Andrew Wilson <<a href='mailto:atwilson@google.com'>atwilson@google.com</a>></li><li>joaquin Salvachua <<a href='mailto:jsalvachua@dit.upm.es'>jsalvachua@dit.upm.es</a>></li><li>Juan Quemada <<a href='mailto:quemada@dit.upm.es'>quemada@dit.upm.es</a>></li><li>Tobias Horvath <<a href='mailto:w3c@tobyx.com'>w3c@tobyx.com</a>></li><li>John Foliot <<a href='mailto:john@foliot.ca'>john@foliot.ca</a>></li><li>Per-Erik Brodin <<a href='mailto:per-erik.brodin@ericsson.com'>per-erik.brodin@ericsson.com</a>></li><li>Joe Williams <<a href='mailto:joedwil@earthlink.net'>joedwil@earthlink.net</a>></li><li>Don Brutzman <<a href='mailto:brutzman@nps.edu'>brutzman@nps.edu</a>></li><li>Dzung Tran <<a href='mailto:dzung.d.tran@intel.com'>dzung.d.tran@intel.com</a>></li><li>Christopher Varley <<a href='mailto:cvarley@gmail.com'>cvarley@gmail.com</a>></li><li>yael aharon <<a href='mailto:yael.aharon@nokia.com'>yael.aharon@nokia.com</a>></li><li>Marco Ranon <<a href='mailto:marco.ranon@rnib.org.uk'>marco.ranon@rnib.org.uk</a>></li><li>Stuart Myles <<a href='mailto:smyles@ap.org'>smyles@ap.org</a>></li><li>Silvia Pfeiffer <<a href='mailto:silviapfeiffer1@gmail.com'>silviapfeiffer1@gmail.com</a>></li><li>Dowan Kim <<a href='mailto:forty4@gmail.com'>forty4@gmail.com</a>></li><li>Chris Pearce <<a href='mailto:cpearce@mozilla.com'>cpearce@mozilla.com</a>></li><li>Robert O'Callahan <<a href='mailto:robert@ocallahan.org'>robert@ocallahan.org</a>></li><li>Jakob Melander <<a href='mailto:jakob.melander@sonyericsson.com'>jakob.melander@sonyericsson.com</a>></li><li>Ian Fette <<a href='mailto:ifette@google.com'>ifette@google.com</a>></li><li>Jonathan Watt <<a href='mailto:jwatt@jwatt.org'>jwatt@jwatt.org</a>></li><li>Robin Berjon <<a href='mailto:robin@berjon.com'>robin@berjon.com</a>></li><li>Dean Jackson <<a href='mailto:dino@apple.com'>dino@apple.com</a>></li><li>Travis Leithead <<a href='mailto:Travis.Leithead@microsoft.com'>Travis.Leithead@microsoft.com</a>></li><li>Chris Double <<a href='mailto:cdouble@mozilla.com'>cdouble@mozilla.com</a>></li><li>Adrian Bateman <<a href='mailto:adrianba@microsoft.com'>adrianba@microsoft.com</a>></li><li>Mohammed DADAS <<a href='mailto:mohammed.dadas@orange.com'>mohammed.dadas@orange.com</a>></li><li>Philip Jägenstedt <<a href='mailto:philipj@opera.com'>philipj@opera.com</a>></li><li>Erik Dahlström <<a href='mailto:ed@opera.com'>ed@opera.com</a>></li><li>Han Xu <<a href='mailto:collin@w3china.org'>collin@w3china.org</a>></li><li>Dan Smith <<a href='mailto:dan@sketchpad.co.uk'>dan@sketchpad.co.uk</a>></li><li>Hallvord Steen <<a href='mailto:hallvord@opera.com'>hallvord@opera.com</a>></li><li>Alex Robinson <<a href='mailto:w3c@alex.fu2k.org'>w3c@alex.fu2k.org</a>></li><li>Jon Hughes <<a href='mailto:jon@phazm.com'>jon@phazm.com</a>></li><li>Tomas Caspers <<a href='mailto:tomas@tomascaspers.de'>tomas@tomascaspers.de</a>></li><li>Richard Schwerdtfeger <<a href='mailto:schwer@us.ibm.com'>schwer@us.ibm.com</a>></li><li>Shefik Macauley <<a href='mailto:allknightaccess@gmail.com'>allknightaccess@gmail.com</a>></li><li>John Vernaleo <<a href='mailto:john@netpurgatory.com'>john@netpurgatory.com</a>></li><li>Jedi Lin <<a href='mailto:JediLin@Gmail.com'>JediLin@Gmail.com</a>></li><li>Richard Conyard <<a href='mailto:richard@redantdesign.com'>richard@redantdesign.com</a>></li><li>Roy Fielding <<a href='mailto:fielding@gbiv.com'>fielding@gbiv.com</a>></li><li>Philip Taylor <<a href='mailto:excors@gmail.com'>excors@gmail.com</a>></li><li>Mark Turnage <<a href='mailto:markturnage@gmail.com'>markturnage@gmail.com</a>></li><li>Andrew Duck <<a href='mailto:andrew.duck@quiqcorp.com'>andrew.duck@quiqcorp.com</a>></li><li>Richard Ishida <<a href='mailto:ishida@w3.org'>ishida@w3.org</a>></li><li>Andrew Ramsden <<a href='mailto:andrew@irama.org'>andrew@irama.org</a>></li><li>Nik Thierry <<a href='mailto:nik@nikca.com'>nik@nikca.com</a>></li><li>Don Kiely <<a href='mailto:donkiely@computer.org'>donkiely@computer.org</a>></li><li>Monika Trebo <<a href='mailto:mtrebo@stanford.edu'>mtrebo@stanford.edu</a>></li><li>Bogdan Baraszkiewicz <<a href='mailto:bogdan.baraszkiewicz@gmail.com'>bogdan.baraszkiewicz@gmail.com</a>></li><li>Egor Kloos <<a href='mailto:studio@dutchcelt.nl'>studio@dutchcelt.nl</a>></li><li>David Bills <<a href='mailto:w3@dfbills.com'>w3@dfbills.com</a>></li><li>Michael Whitley <<a href='mailto:miwhitle@cisco.com'>miwhitle@cisco.com</a>></li><li>Steve Faulkner <<a href='mailto:faulkner.steve@gmail.com'>faulkner.steve@gmail.com</a>></li><li>Sebastian Kippe <<a href='mailto:sebastiankippe@gmail.com'>sebastiankippe@gmail.com</a>></li><li>Keith Krieger <<a href='mailto:keith_w_krieger@krieger-capital-mgmt.com'>keith_w_krieger@krieger-capital-mgmt.com</a>></li><li>Susanne Jäger <<a href='mailto:susjaeger@sujag.de'>susjaeger@sujag.de</a>></li><li>Gary Barber <<a href='mailto:gary.barber.au@gmail.com'>gary.barber.au@gmail.com</a>></li><li>Robert Love <<a href='mailto:robert.love@signified.com.au'>robert.love@signified.com.au</a>></li><li>Leif Halvard Silli <<a href='mailto:xn--mlform-iua@xn--mlform-iua.no'>xn--mlform-iua@xn--mlform-iua.no</a>></li><li>David Choi <<a href='mailto:daaave@gmail.com'>daaave@gmail.com</a>></li><li>Oli Studholme <<a href='mailto:1.w3c.org@boblet.net'>1.w3c.org@boblet.net</a>></li><li>Ian Wessman <<a href='mailto:w3@iria.net'>w3@iria.net</a>></li><li>Peter Krantz <<a href='mailto:peter.krantz@gmail.com'>peter.krantz@gmail.com</a>></li><li>Mark DuBois <<a href='mailto:Mark@webprofessionals.org'>Mark@webprofessionals.org</a>></li><li>Daniel Morrison <<a href='mailto:daniel@collectiveidea.com'>daniel@collectiveidea.com</a>></li><li>David Child <<a href='mailto:dave@addedbytes.com'>dave@addedbytes.com</a>></li><li>Jane Lee <<a href='mailto:applegoddess@gmail.com'>applegoddess@gmail.com</a>></li><li>Andrew Maben <<a href='mailto:andrew@andrewmaben.com'>andrew@andrewmaben.com</a>></li><li>Robert Marshall <<a href='mailto:rdm@rdmsoft.com'>rdm@rdmsoft.com</a>></li><li>Vilem Malek <<a href='mailto:murphy@malek.cz'>murphy@malek.cz</a>></li><li>Michaeljohn Clement <<a href='mailto:mj@mjclement.com'>mj@mjclement.com</a>></li><li>Vicki Stanton <<a href='mailto:vicki.stanton@gmail.com'>vicki.stanton@gmail.com</a>></li><li>Andrew Stibbard <<a href='mailto:xhva_htmlwg@netspace.net.au'>xhva_htmlwg@netspace.net.au</a>></li><li>Eric Carlson <<a href='mailto:eric.carlson@apple.com'>eric.carlson@apple.com</a>></li><li>David Fisher <<a href='mailto:davef@davefisher.co.uk'>davef@davefisher.co.uk</a>></li><li>Martijn Wargers <<a href='mailto:martijn.martijn@gmail.com'>martijn.martijn@gmail.com</a>></li><li>Patrick D F Ion <<a href='mailto:ion@ams.org'>ion@ams.org</a>></li><li>Jake Liddell <<a href='mailto:jake@fourhats.com'>jake@fourhats.com</a>></li><li>Moto Ishizawa <<a href='mailto:summerwind.jp+w3c@gmail.com'>summerwind.jp+w3c@gmail.com</a>></li><li>Doug Wright <<a href='mailto:douglas.wright@pre-school.org.uk'>douglas.wright@pre-school.org.uk</a>></li><li>Bilgehan Maras <<a href='mailto:bilgehanm@gmail.com'>bilgehanm@gmail.com</a>></li><li>Sam Ruby <<a href='mailto:rubys@intertwingly.net'>rubys@intertwingly.net</a>></li><li>Mark Birbeck <<a href='mailto:mark.birbeck@webBackplane.com'>mark.birbeck@webBackplane.com</a>></li><li>Jason Turnbull <<a href='mailto:jason@digiscape.net.au'>jason@digiscape.net.au</a>></li><li>Markus Mielke <<a href='mailto:mmielke@microsoft.com'>mmielke@microsoft.com</a>></li><li>James Cassell <<a href='mailto:w3c@cyberpear.com'>w3c@cyberpear.com</a>></li><li>Dale Hudjik <<a href='mailto:dale.hudjik@gmail.com'>dale.hudjik@gmail.com</a>></li><li>Ron Reisor <<a href='mailto:ron@udel.edu'>ron@udel.edu</a>></li><li>Pietro Russo <<a href='mailto:p.russo@webprofession.com'>p.russo@webprofession.com</a>></li><li>Brian Skahan <<a href='mailto:brian.skahan@gmail.com'>brian.skahan@gmail.com</a>></li><li>Simon Myers <<a href='mailto:Smylers@stripey.com'>Smylers@stripey.com</a>></li><li>Marat Tanalin <<a href='mailto:mtanalin@yandex.ru'>mtanalin@yandex.ru</a>></li><li>Matthew Turvey <<a href='mailto:mcturvey@gmail.com'>mcturvey@gmail.com</a>></li><li>Brian Peppler <<a href='mailto:bpeppler@gmail.com'>bpeppler@gmail.com</a>></li><li>Guillaume Ludwig <<a href='mailto:contact@gmli.fr'>contact@gmli.fr</a>></li><li>andrea mignolo <<a href='mailto:amignolo@gmail.com'>amignolo@gmail.com</a>></li><li>Andrew Buzzell <<a href='mailto:andrewbuzzell@gmail.com'>andrewbuzzell@gmail.com</a>></li><li>Lucas Larson <<a href='mailto:lucas@lucaslarson.net'>lucas@lucaslarson.net</a>></li><li>Miller Abel <<a href='mailto:millera@microsoft.com'>millera@microsoft.com</a>></li><li>Andrew Polk <<a href='mailto:andrew.polk@hccs.edu'>andrew.polk@hccs.edu</a>></li><li>Craig Buckler <<a href='mailto:craigbuckler@gmail.com'>craigbuckler@gmail.com</a>></li><li>Andrew Norman <<a href='mailto:idonothaveacat@gmail.com'>idonothaveacat@gmail.com</a>></li><li>Michael Zajac <<a href='mailto:michael@zajac.ca'>michael@zajac.ca</a>></li><li>Doug Schepers <<a href='mailto:schepers@w3.org'>schepers@w3.org</a>></li><li>Arne Johannessen <<a href='mailto:arne@thaw.de'>arne@thaw.de</a>></li><li>Clair Dunn <<a href='mailto:cadunn@vt2000.com'>cadunn@vt2000.com</a>></li><li>Michael Puls II <<a href='mailto:shadow2531@gmail.com'>shadow2531@gmail.com</a>></li><li>Craig Cadwallader <<a href='mailto:primal1@primal-image.com'>primal1@primal-image.com</a>></li><li>Arun Ranganathan <<a href='mailto:arun@mozilla.com'>arun@mozilla.com</a>></li><li>Kent Villard <<a href='mailto:kvillard@upei.ca'>kvillard@upei.ca</a>></li><li>Marc Drumm <<a href='mailto:mdrumm@dental.upenn.edu'>mdrumm@dental.upenn.edu</a>></li><li>Katsuhiko Momoi <<a href='mailto:momoi@google.com'>momoi@google.com</a>></li><li>Danny Liang <<a href='mailto:danny.glue@gmail.com'>danny.glue@gmail.com</a>></li><li>Gabriel Mansour <<a href='mailto:gabrielmansour@gmail.com'>gabrielmansour@gmail.com</a>></li><li>Cameron McCormack <<a href='mailto:cam@mcc.id.au'>cam@mcc.id.au</a>></li><li>Daniel Schattenkirchner <<a href='mailto:schattenkirchner.daniel@gmx.de'>schattenkirchner.daniel@gmx.de</a>></li><li>Justin Anthony Knapp <<a href='mailto:justinkoavf@gmail.com'>justinkoavf@gmail.com</a>></li><li>Edward Cianci <<a href='mailto:defeated2k4@gmail.com'>defeated2k4@gmail.com</a>></li><li>Edward O'Connor <<a href='mailto:eoconnor@apple.com'>eoconnor@apple.com</a>></li><li>Marcel Koeppen <<a href='mailto:public-html@lists.marzelpan.de'>public-html@lists.marzelpan.de</a>></li><li>Morten Tollefsen <<a href='mailto:morten@medialt.no'>morten@medialt.no</a>></li><li>Alexey Proskuryakov <<a href='mailto:ap@webkit.org'>ap@webkit.org</a>></li><li>Noel Bush <<a href='mailto:noel@aitools.org'>noel@aitools.org</a>></li><li>Bruce Lawson <<a href='mailto:brucel@opera.com'>brucel@opera.com</a>></li><li>Matthew Freels <<a href='mailto:freels@gmail.com'>freels@gmail.com</a>></li><li>Michael Cooper <<a href='mailto:cooper@w3.org'>cooper@w3.org</a>></li><li>Kazuhito Kidachi <<a href='mailto:k-kidachi@mitsue.co.jp'>k-kidachi@mitsue.co.jp</a>></li><li>Andrew Fedoniouk <<a href='mailto:news@terrainformatica.com'>news@terrainformatica.com</a>></li><li>Alexey Feldgendler <<a href='mailto:alexeyf@opera.com'>alexeyf@opera.com</a>></li><li>Gavin Sharp <<a href='mailto:gavin@mozilla.com'>gavin@mozilla.com</a>></li><li>Glenn Bookout <<a href='mailto:g.bookout@barefootdigital.net'>g.bookout@barefootdigital.net</a>></li><li>Sander Tekelenburg <<a href='mailto:st@isoc.nl'>st@isoc.nl</a>></li><li>Boris Zbarsky <<a href='mailto:bzbarsky@mit.edu'>bzbarsky@mit.edu</a>></li><li>Johnny Stenback <<a href='mailto:jst@w3c.jstenback.com'>jst@w3c.jstenback.com</a>></li><li>Nick Fitzsimons <<a href='mailto:w3@nickfitz.co.uk'>w3@nickfitz.co.uk</a>></li><li>Giovanni Gentili <<a href='mailto:giovanni.gentili@gmail.com'>giovanni.gentili@gmail.com</a>></li><li>Sajid Saiyed <<a href='mailto:sajid.saiyed@gmail.com'>sajid.saiyed@gmail.com</a>></li><li>Mateo Yadarola <<a href='mailto:teodalton@gmail.com'>teodalton@gmail.com</a>></li><li>S Emerson <<a href='mailto:w3c@accretewebsolutions.ca'>w3c@accretewebsolutions.ca</a>></li><li>Josh Lawton <<a href='mailto:w3c@joshlawton.com'>w3c@joshlawton.com</a>></li><li>Adele Peterson <<a href='mailto:adele@apple.com'>adele@apple.com</a>></li><li>Shane Thacker <<a href='mailto:shanethacker@gmail.com'>shanethacker@gmail.com</a>></li><li>Erik van Kempen <<a href='mailto:erikvankempen@gmail.com'>erikvankempen@gmail.com</a>></li><li>Thomas Pike <<a href='mailto:thomasp@opera.com'>thomasp@opera.com</a>></li><li>Jude Robinson <<a href='mailto:dotcode+w3@gmail.com'>dotcode+w3@gmail.com</a>></li><li>Matt Obee <<a href='mailto:matt.obee@redantdesign.com'>matt.obee@redantdesign.com</a>></li><li>Niels Leenheer <<a href='mailto:niels.leenheer@gmail.com'>niels.leenheer@gmail.com</a>></li><li>Krijn Hoetmer <<a href='mailto:w3c@qontent.nl'>w3c@qontent.nl</a>></li><li>Markus Fischer <<a href='mailto:markus@fischer.name'>markus@fischer.name</a>></li><li>Zhihong Mao <<a href='mailto:zhihong.mao@gmail.com'>zhihong.mao@gmail.com</a>></li><li>T.V. Raman <<a href='mailto:raman@google.com'>raman@google.com</a>></li><li>Robert Accettura <<a href='mailto:robert@accettura.com'>robert@accettura.com</a>></li><li>Pasquale Popolizio <<a href='mailto:p.popolizio@webprofession.com'>p.popolizio@webprofession.com</a>></li><li>Luca Mascaro <<a href='mailto:l.mascaro@webprofession.com'>l.mascaro@webprofession.com</a>></li><li>Sebastian Schnitzenbaumer <<a href='mailto:sebastian@dreamlab.net'>sebastian@dreamlab.net</a>></li><li>Michael[tm] Smith <<a href='mailto:mike@w3.org'>mike@w3.org</a>></li><li>Lachlan Hunt <<a href='mailto:lachlan.hunt@lachy.id.au'>lachlan.hunt@lachy.id.au</a>></li><li>Daniel Glazman <<a href='mailto:daniel.glazman@disruptive-innovations.com'>daniel.glazman@disruptive-innovations.com</a>></li><li>Håkon Wium Lie <<a href='mailto:howcome@opera.com'>howcome@opera.com</a>></li><li>Ben Dalton <<a href='mailto:bendalton@gmail.com'>bendalton@gmail.com</a>></li><li>Wyatt Allen <<a href='mailto:wyatt.allen0@gmail.com'>wyatt.allen0@gmail.com</a>></li><li>Jonathan Mahoney <<a href='mailto:jonathan@mahoney.eu'>jonathan@mahoney.eu</a>></li><li>Marc Roberts <<a href='mailto:marc.roberts@gmail.com'>marc.roberts@gmail.com</a>></li><li>Christopher Healey <<a href='mailto:deezignink@gmail.com'>deezignink@gmail.com</a>></li><li>Fredrik Forsmo <<a href='mailto:lists@forsmo.me'>lists@forsmo.me</a>></li><li>Ross Greenhalf <<a href='mailto:ross@mobileiq.com'>ross@mobileiq.com</a>></li><li>J. Ryan Stinnett <<a href='mailto:jryans@gmail.com'>jryans@gmail.com</a>></li><li>Juan Cabrera <<a href='mailto:juan.acc@gmail.com'>juan.acc@gmail.com</a>></li><li>Jorge del Casar <<a href='mailto:jorge.casar@gmail.com'>jorge.casar@gmail.com</a>></li><li>Marco Kotrotsos <<a href='mailto:Marco@mlabs.nl'>Marco@mlabs.nl</a>></li><li>Sam French <<a href='mailto:sfrench_01@yahoo.co.uk'>sfrench_01@yahoo.co.uk</a>></li><li>Alessandro Bassi <<a href='mailto:abassi@etsur.com'>abassi@etsur.com</a>></li><li>Alexey Kartashev <<a href='mailto:alexei.kartashev@gmail.com'>alexei.kartashev@gmail.com</a>></li><li>Yang Sun <<a href='mailto:eric.sun@huawei.com'>eric.sun@huawei.com</a>></li><li>Greg Billock <<a href='mailto:gbillock@google.com'>gbillock@google.com</a>></li><li>Charles Pritchard <<a href='mailto:chuck@jumis.com'>chuck@jumis.com</a>></li><li>Hasan Savran <<a href='mailto:hsavran@kent.edu'>hsavran@kent.edu</a>></li><li>Mohammad Amiri <<a href='mailto:m.amiri@iranwebclub.com'>m.amiri@iranwebclub.com</a>></li><li>Luke McGrath <<a href='mailto:lukejqm@gmail.com'>lukejqm@gmail.com</a>></li><li>David MacDonald <<a href='mailto:David100@sympatico.ca'>David100@sympatico.ca</a>></li><li>Jason Boyd <<a href='mailto:jason@pixelboxdesign.co.uk'>jason@pixelboxdesign.co.uk</a>></li><li>Aryeh Gregor <<a href='mailto:ayg@aryeh.name'>ayg@aryeh.name</a>></li><li>Brian Blakely <<a href='mailto:anewpage.media@gmail.com'>anewpage.media@gmail.com</a>></li><li>Shilpi Kapoor <<a href='mailto:shilpi@barrierbreak.com'>shilpi@barrierbreak.com</a>></li><li>Noah Peters <<a href='mailto:noahpeters@gmail.com'>noahpeters@gmail.com</a>></li><li>Fabiola Lòpez <<a href='mailto:favila@technosite.es'>favila@technosite.es</a>></li></ol>
<p>Send an email to <a href='mailto:craig.smithpeters@cox.com,kevin@kjdavies.com,david.kim@sk.com,ian@iandevlin.com,jason@accessibleculture.org,c.stevens@cablelabs.com,peter.winnberg@gmail.com,standards@nczconsulting.com,gmarroni@libero.it,cjihrig@gmail.com,hans.hillen@gmail.com,glenn@skynav.com,contact@jonas.me,willkwon@infraware.co.kr,stkim@infraware.co.kr,mychei@infraware.co.kr,rniwa@webkit.org,soonho.lee@sk.com,geunho.jang@sk.com,adamsobieski@hotmail.com,andrew@integritywebnc.com,jongyoul@etri.re.kr,kunio.ito@mail.rakuten.com,dhughes@liguori.org,narm@intel.com,payman@opera.com,jjimenez@linkatu.net,neuronton@live.com,ysryu@samsung.com,dhn.kim@samsung.com,jongpil19.jung@samsung.com,erin@everyplace.net,laigna@gmail.com,ecrire@catherine-roy.net,art.barstow@nokia.com,hadley@linkedgov.org,lynn.holdsworth@rnib.org.uk,cmhjones@gmail.com,nathan@webr3.org,kurt.cagle@gmail.com,lrosen@rosenlaw.com,fwtnb@tomo-digi.co.jp,tsurimaki@tomo-digi.co.jp,okuma@tomo-digi.co.jp,pbakaus@zynga.com,b.lund@cablelabs.com,ohad.assulin@hp.com,giuseppep@opera.com,andisnow@us.ibm.com,mathias@qiwi.be,watsonm@netflix.com,luiz@webkit.org,danny.ayers@gmail.com,andrew.in.snow+w3c@gmail.com,kenneth@nordahl.me,jjc@jclark.com,kensaku.komatsu@gmail.com,drs@microfm.co.uk,othmane_benyoucef@hotmail.com,pecoraro@apple.com,davidc@nag.co.uk,noriyo.asano@gmail.com,takesako@gmail.com,pilgrim@google.com,omata@jig.jp,kimura@jig.jp,ishino@jig.jp,fukuno@jig.jp,Jacob.Rossi@microsoft.com,christophe.eyrignoux@orange-ftgroup.com,yfuna@tomo-digi.co.jp,soonbo.han@lge.com,tonyg@google.com,don.evans@deque.com,mamund@yahoo.com,greg.johnson@gmail.com,lwatson@nomensa.com,koansin.tan@gmail.com,mounir.lamouri@mozilla.com,norman.walsh@marklogic.com,everett@zufelt.ca,js.sokrates@gmail.com,h.meran@gentics.com,mattl-lists@fsf.org,dave.penkler@hp.com,kimberly_blessing@comcast.com,david.corvoysier@orange.com,zibin@opera.com,atapiador@dit.upm.es,dmoreno@dit.upm.es,dgallego@dit.upm.es,diegocarrera2000@gmail.com,amendo@dit.upm.es,prodriguez@dit.upm.es,egarcia@dit.upm.es,fec@dit.upm.es,jcervino@dit.upm.es,ebarra@dit.upm.es,saguirre@dit.upm.es,A.Kuckartz@ping.de,jesper@woeldiche.dk,manan_founder@126.com,manoski@mitre.org,martijnc@martijnc.be,bhawkeslewis@googlemail.com,evan@zyglobe.com,jeanne@w3.org,jack@cwi.nl,beverloo@google.com,glsimpso@indiana.edu,plutchakbd@earthlink.net,mzurmuehlen@stevens.edu,wayne.carr@intel.com,anssi.kostiainen@nokia.com,kennyjohar@gmail.com,mstm@jp.ibm.com,ojan@chromium.org,jer.noble@apple.com,dburnett@voxeo.com,sharco@microsoft.com,dahl@conversational-technologies.com,ddooss@wp.pl,Dick.Bulterman@cwi.nl,eihabibrahim@gmail.com,colin@colinaarts.com,cmarrin@apple.com,arveb@opera.com,dean.leigh@deanleigh.co.uk,w3@themattharris.com,david.bolter@gmail.com,rstern@gmail.com,soohong.park@samsung.com,wonsuk11.lee@samsung.com,chan@w3.org,jmann@microsoft.com,mf1383@att.com,Johnson.wang@nokia.com,ashimura@w3.org,or@oleriesenberg.com,ssbarnea@adobe.com,tom@adobe.com,aedwin@adobe.com,cbank@adobe.com,k.scheppe@telekom.de,graham.klyne@zoo.ox.ac.uk,smonikan@adobe.com,mayankk@adobe.com,dgeorgit@adobe.com,lrosenth@adobe.com,rhudea@adobe.com,raghavan@adobe.com,lucas.sa@gmail.com,miket@opera.com,sally.cain@rnib.org.uk,sean.hayes@microsoft.com,timvanoostrom@gmail.com,mattmay@adobe.com,mattm@adobe.com,jbrewer@w3.org,g.lemon@webprofession.com,anders@bondehagen.com,jongund@illinois.edu,kelly.ford@microsoft.com,jimallan@tsbvi.edu,mhakkinen@acm.org,wycats@gmail.com,geoff_freed@wgbh.org,fliu1@avaya.com,lli5@avaya.com,wu.chou@huawei.com,janina@rednote.net,erik_isaksen@hotmail.com,evain@ebu.ch,krisk@microsoft.com,plh@w3.org,weinig@apple.com,wendc@microsoft.com,jgriffin@mozilla.com,dabromeit@gmx.de,michael.koeller@greenbytes.de,gavin@carothers.name,blsaws@gmail.com,Paul.Cotton@microsoft.com,frank.olivier@microsoft.com,eliotgra@microsoft.com,danbri@danbri.org,tross@microsoft.com,chris@chriscressman.com,jackalmage@gmail.com,mkozakewich@icosidodecahedron.com,gunther@keryx.se,w3c@kliehm.com,tantek@cs.stanford.edu,jeremy@adactio.com,msporny@digitalbazaar.com,ben@adida.net,tai@g5n.co.uk,john@nextraweb.com,erights@google.com,atwilson@google.com,jsalvachua@dit.upm.es,quemada@dit.upm.es,w3c@tobyx.com,john@foliot.ca,per-erik.brodin@ericsson.com,joedwil@earthlink.net,brutzman@nps.edu,dzung.d.tran@intel.com,cvarley@gmail.com,yael.aharon@nokia.com,marco.ranon@rnib.org.uk,smyles@ap.org,silviapfeiffer1@gmail.com,forty4@gmail.com,cpearce@mozilla.com,robert@ocallahan.org,jakob.melander@sonyericsson.com,ifette@google.com,jwatt@jwatt.org,robin@berjon.com,dino@apple.com,Travis.Leithead@microsoft.com,cdouble@mozilla.com,adrianba@microsoft.com,mohammed.dadas@orange.com,philipj@opera.com,ed@opera.com,collin@w3china.org,dan@sketchpad.co.uk,hallvord@opera.com,w3c@alex.fu2k.org,jon@phazm.com,tomas@tomascaspers.de,schwer@us.ibm.com,allknightaccess@gmail.com,john@netpurgatory.com,JediLin@Gmail.com,richard@redantdesign.com,fielding@gbiv.com,excors@gmail.com,markturnage@gmail.com,andrew.duck@quiqcorp.com,ishida@w3.org,andrew@irama.org,nik@nikca.com,donkiely@computer.org,mtrebo@stanford.edu,bogdan.baraszkiewicz@gmail.com,studio@dutchcelt.nl,w3@dfbills.com,miwhitle@cisco.com,faulkner.steve@gmail.com,sebastiankippe@gmail.com,keith_w_krieger@krieger-capital-mgmt.com,susjaeger@sujag.de,gary.barber.au@gmail.com,robert.love@signified.com.au,xn--mlform-iua@xn--mlform-iua.no,daaave@gmail.com,1.w3c.org@boblet.net,w3@iria.net,peter.krantz@gmail.com,Mark@webprofessionals.org,daniel@collectiveidea.com,dave@addedbytes.com,applegoddess@gmail.com,andrew@andrewmaben.com,rdm@rdmsoft.com,murphy@malek.cz,mj@mjclement.com,vicki.stanton@gmail.com,xhva_htmlwg@netspace.net.au,eric.carlson@apple.com,davef@davefisher.co.uk,martijn.martijn@gmail.com,ion@ams.org,jake@fourhats.com,summerwind.jp+w3c@gmail.com,douglas.wright@pre-school.org.uk,bilgehanm@gmail.com,rubys@intertwingly.net,mark.birbeck@webBackplane.com,jason@digiscape.net.au,mmielke@microsoft.com,w3c@cyberpear.com,dale.hudjik@gmail.com,ron@udel.edu,p.russo@webprofession.com,brian.skahan@gmail.com,Smylers@stripey.com,mtanalin@yandex.ru,mcturvey@gmail.com,bpeppler@gmail.com,contact@gmli.fr,amignolo@gmail.com,andrewbuzzell@gmail.com,lucas@lucaslarson.net,millera@microsoft.com,andrew.polk@hccs.edu,craigbuckler@gmail.com,idonothaveacat@gmail.com,michael@zajac.ca,schepers@w3.org,arne@thaw.de,cadunn@vt2000.com,shadow2531@gmail.com,primal1@primal-image.com,arun@mozilla.com,kvillard@upei.ca,mdrumm@dental.upenn.edu,momoi@google.com,danny.glue@gmail.com,gabrielmansour@gmail.com,cam@mcc.id.au,schattenkirchner.daniel@gmx.de,justinkoavf@gmail.com,defeated2k4@gmail.com,eoconnor@apple.com,public-html@lists.marzelpan.de,morten@medialt.no,ap@webkit.org,noel@aitools.org,brucel@opera.com,freels@gmail.com,cooper@w3.org,k-kidachi@mitsue.co.jp,news@terrainformatica.com,alexeyf@opera.com,gavin@mozilla.com,g.bookout@barefootdigital.net,st@isoc.nl,bzbarsky@mit.edu,jst@w3c.jstenback.com,w3@nickfitz.co.uk,giovanni.gentili@gmail.com,sajid.saiyed@gmail.com,teodalton@gmail.com,w3c@accretewebsolutions.ca,w3c@joshlawton.com,adele@apple.com,shanethacker@gmail.com,erikvankempen@gmail.com,thomasp@opera.com,dotcode+w3@gmail.com,matt.obee@redantdesign.com,niels.leenheer@gmail.com,w3c@qontent.nl,markus@fischer.name,zhihong.mao@gmail.com,raman@google.com,robert@accettura.com,p.popolizio@webprofession.com,l.mascaro@webprofession.com,sebastian@dreamlab.net,mike@w3.org,lachlan.hunt@lachy.id.au,daniel.glazman@disruptive-innovations.com,howcome@opera.com,bendalton@gmail.com,wyatt.allen0@gmail.com,jonathan@mahoney.eu,marc.roberts@gmail.com,deezignink@gmail.com,lists@forsmo.me,ross@mobileiq.com,jryans@gmail.com,juan.acc@gmail.com,jorge.casar@gmail.com,Marco@mlabs.nl,sfrench_01@yahoo.co.uk,abassi@etsur.com,alexei.kartashev@gmail.com,eric.sun@huawei.com,gbillock@google.com,chuck@jumis.com,hsavran@kent.edu,m.amiri@iranwebclub.com,lukejqm@gmail.com,David100@sympatico.ca,jason@pixelboxdesign.co.uk,ayg@aryeh.name,anewpage.media@gmail.com,shilpi@barrierbreak.com,noahpeters@gmail.com,favila@technosite.es'>all the non-responders</a>.</p>
<hr />
<p><a href="results?view=compact">Compact view of the results</a> / <a href="email-list">list of email addresses of the responders</a></p>
<p>
<a href="../../showwb">WBS home</a> /
<a href="../../showq">Questionnaires</a>
/ <a href='../'>WG questionnaires</a>
/ <a href='./'>Answer this questionnaire</a>
</p>
</div>
<hr />
<address>Completed and maintained by <a href="/People/Dom/">Dominique Hazaël-Massieux</a> (<a href="mailto:dom@w3.org">dom@w3.org</a>) on an <a href="/2000/11/msm/">original design</a> by <a href="/People/cmsmcq/">Michael Sperberg-McQueen</a> <em>$Id: showv.php3,v 1.117 2011/08/16 10:23:08 dom Exp $</em>. Please send bug reports and request for enhancements to <a href="mailto:dom@w3.org">dom@w3.org</a> with <a href="mailto:w3t-sys@w3.org">w3t-sys@w3.org</a> copied (if your mail client supports it, <a href="mailto:dom@w3.org(Dominique%20Hazaël-Massieux),w3t-sys@w3.org(Systems Team)?subject=WBS%20bug%20report%20">send mail</a> directly to the right persons)</address>
</body>
</html>