summaryrefslogtreecommitdiffstats
path: root/test/w3c/TESTS.md
blob: 43282c611cd65c5d264829aa3f77d66d7efbc530 (plain)
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
<table>

	<thead>
		<tr>
			<th colspan="3">Test (Req. / Man.)</th>
			<th>ECMA</th>
			<th>C (Lua)</th>
			<th>NS</th>
			<th>Java (JEXL)</th>
			<th>Spin</th>
			<th>C (ECMA)</th>
			<th>Python (ECMA)</th>
			<th>Lua</th>
			<th>Promela</th>
			<th>VHDL Promela</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td colspan="13"><b><big>Core Constructs</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#history">&sect;3.10</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The History Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test387.txml" alt="Before the parent state has been visited for the first time, if a transition is executed that takes the history state as its target, the SCXML processor MUST behave as if the transition had taken the default stored state configuration as its target.">387</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test388.txml" alt="After the parent state has been visited for the first time, if a transition is executed that takes the history state as its target, the SCXML processor MUST behave as if the transition had taken the stored state configuration as its target.">388</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test579.txml" alt="Before the parent state has been visited for the first time, if a transition is executed that takes the history state as its target,       the SCXML processor MUST execute any executable content in the transition      after the parent state's onentry content and any content in a possible      initial transition.">579</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test580.txml" alt="It follows from the semantics of history states that they never end up in the state configuration">580</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#events">&sect;3.12</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>SCXML Events</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test396.txml" alt="The SCXML processor MUST use this same name value (the one reflected in the event variable) to match against the `event` attribute of transitions.">396</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test399.txml" alt="(Definition: A transition matches an event if at least one of its event descriptors matches the event's name. ) (Definition: An event descriptor matches an event name if its string of tokens is an exact match or a prefix of the set of tokens in the event's name. In all cases, the token matching is case sensitive. )">399</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test401.txml" alt="The processor MUST place these (error) events in the internal event queue.">401</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test402.txml" alt="The processor MUST process them (error events) like any other event.">402</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#SelectingTransitions">&sect;3.13</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>Selecting and Executing Transitions</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test403a.txml" alt="To execute a microstep, the SCXML Processor MUST execute the transitions in the corresponding optimal enabled transition set, where the optimal transition set enabled by event E in state configuration C is the largest set of transitions such that a) each transition in the set is optimally enabled by E in an atomic state in C b) no transition conflicts with another transition in the set c) there is no optimally enabled transition outside       the set that has a higher priority than some member of the set.">403a</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test403c.txml" alt="To execute a microstep, the SCXML Processor MUST execute the transitions in the corresponding optimal enabled transition set, where the optimal transition set enabled by event E in state configuration C is the largest set of transitions such that a) each transition in the set is optimally enabled by E in an atomic state in C b) no transition conflicts with another transition in the set c) there is no optimally enabled transition outside       the set that has a higher priority than some member of the set.">403c</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test403b.txml" alt="To execute a microstep, the SCXML Processor MUST execute the transitions in the corresponding optimal enabled transition set, where the optimal transition set enabled by event E in state configuration C is the largest set of transitions such that a) each transition in the set is optimally enabled by E in an atomic state in C b) no transition conflicts with another transition in the set c) there is no optimally enabled transition outside       the set that has a higher priority than some member of the set.">403b</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test404.txml" alt="To execute a set of transitions, the SCXML Processor MUST first exit all the states in the transitions' exit set in exit order.">404</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test405.txml" alt="(the SCXML Processor executing a set of transitions) MUST then (after the onexits) execute the executable content contained in the transitions in document order.">405</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test406.txml" alt="(the SCXML Processor executing a set of transitions) MUST then (after the exits and the transitions) enter the states in the transitions' entry set in entry order.">406</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test407.txml" alt="To exit a state, the SCXML Processor MUST execute the executable content in the state's onexit handler.">407</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test409.txml" alt="Finally (after the onexits and canceling the invocations), the Processor MUST remove the state from the active state's list.">409</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test411.txml" alt="To enter a state, the SCXML Processor MUST add the state to the active state's list. Then it MUST execute the executable content in the state's onentry handler.">411</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test412.txml" alt="If the state is a default entry state and has an initial child, the SCXML Processor MUST then (after doing the active state add and the onentry handlers) execute the executable content in the initial child's transition.">412</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test413.txml" alt="At startup, the SCXML Processor MUST place the state machine in the configuration specified by the `initial` attribute of the scxml element.">413</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test415.txml" alt="If it (the SCXML Processor) has entered a final state that is a child of scxml (during the last microstep), it MUST halt processing.">415</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test416.txml" alt="If it (the SCXML processor) has entered a final state that is a child of a compound state (during the last microstep), it MUST generate the event done.state.id, where id is the id of the compound state.">416</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test417.txml" alt="If the compound state (which has the final element that we entered this microstep) is itself the child of a parallel element, and all the parallel element's other children are in final states, the Processor MUST generate the event done.state.id, where id is the id of the parallel element.">417</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test419.txml" alt="After checking the state configuration, the Processor MUST select the optimal transition set enabled by NULL in the current configuration.  If the (optimal transition) set (enabled by NULL in the current configuration) is not     	empty, it (the SCXML Processor) MUST execute it (the set) as a microstep.">419</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test421.txml" alt="If the set (of eventless transitions) is empty, the Processor MUST remove events from the internal event queue until the queue is empty or it finds an event that enables a non-empty optimal transition set in the current configuration.      	If it finds such a set (a non-empty optimal transition set), the processor MUST then execute it as a microstep.">421</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test422.txml" alt="After completing a macrostep, the SCXML Processor MUST execute in document order the invoke handlers in all states that have been entered (and not exited) since the completion of the last macrostep.">422</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test423.txml" alt="Then (after invoking the new invoke handlers since the last macrostep) the Processor MUST remove events from the external event queue, waiting till events appear if necessary, until it finds one that enables a non-empty optimal transition set in the current configuration.      The Processor MUST then execute that set (the enabled non-empty optimal transition set in the current configuration triggered by an external event) as a microstep.">423</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test503.txml" alt="If the transition does not contain a `target`, its exit set is empty.">503</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test504.txml" alt="if (a transition's) `type` is &quot;external&quot;, its exit set consists of all active states that are proper descendents of the Least Common Compound Ancestor (LCCA) of the source and target states.">504</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test505.txml" alt="Otherwise, if the transition has `type` &quot;internal&quot;, its source state is a compound state and all its target states are proper descendents of its source state, the target set consists of all active states that are proper descendents of its source state.">505</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test506.txml" alt="If a transition has `type` of &quot;internal&quot;, but its source state is not a compound state or its target states are not all proper descendents of its source state, its exit set is defined as if it had `type` of &quot;external&quot;.">506</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test533.txml" alt="If a transition has `type` of &quot;internal&quot;, but its source state is not a compound state, its exit set is defined as if it had `type` of &quot;external&quot;.">533</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#scxml">&sect;3.2</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The SCXML Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test355.txml" alt="At system initialization time, if the `initial` attribute is not present, the Processor MUST enter the first state in document order.">355</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test576.txml" alt="At system initialization time, the SCXML Processor MUST enter the states specified by the `initial` attribute, if it is present.">576</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#state">&sect;3.3</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The State Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test364.txml" alt="Definition: The default initial state(s) of a compound state are those specified by the `initial` attribute or initial element, if either is present. Otherwise it is the state's first child state in document order. If a compound state is entered either as an initial state or as the target of a transition (i.e. and no descendent of it is specified), then the SCXML Processor MUST enter the default initial state(s) after it enters the parent state.">364</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#final">&sect;3.7</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Final Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test372.txml" alt="When the state machine enters the final child of a state element, the SCXML processor MUST generate the event done.state.id after completion of the onentry elements, where id is the id of the parent state.">372</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test570.txml" alt="Immediately after generating done.state.id upon entering a final child of state, if the parent state is a child of a parallel element, and all of the parallel's other children are also in final states, the Processor MUST generate the event done.state.id where id is the id of the parallel element.">570</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#onentry">&sect;3.8</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Onentry Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test375.txml" alt="The SCXML processor MUST execute the onentry handlers of a state in document order when the state is entered.">375</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test376.txml" alt="The SCXML processor MUST treat each (onentry) handler as a separate block of executable content.">376</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#onexit">&sect;3.9</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Onexit Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test377.txml" alt="The SCXML processor MUST execute the onexit handlers of a state in document order when the state is exited.">377</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test378.txml" alt="The SCXML processor MUST treat each (onexit) handler as a separate block of executable content.">378</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td colspan="13"><b><big>Executable Content</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#raise">&sect;4.2</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Raise Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test144.txml" alt="The SCXML processor MUST place the event that is generated by the raise element at the rear of the session's internal event queue.">144</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#if">&sect;4.3</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The If Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test147.txml" alt="When the if element is executed, the SCXML processor MUST execute the first partition in document order that is defined by a tag whose `cond` attribute evaluates to true, if there is one.">147</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test148.txml" alt="When the if element is executed, if no `cond`attribute evaluates to true, the SCXML Processor must execute the partition defined by the else tag, if there is one.">148</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test149.txml" alt="When it executes an if element, if no `cond` attribute evaluates to true and there is no else element, the SCXML processor must not evaluate any executable content within the element.">149</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#foreach">&sect;4.6</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Foreach Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test150.txml" alt="In the foreach element, the SCXML processor MUST declare a new variable if the one specified by `item` is not already defined.">150</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test151.txml" alt="In the foreach element, if `index` is present, the SCXML processor MUST declare a new variable if the one specified by `index` is not already defined.">151</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test152.txml" alt="In the foreach element, if `array` does not evaluate to a legal iterable collection, or if `item` does not specify a legal variable name, the SCXML processor MUST terminate execution of the foreach element and the block that contains it, and place the error error.execution on the internal event queue.">152</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test153.txml" alt="When evaluating foreach, the SCXML processor MUST start with the first item in the collection and proceed to the last item in the iteration order that is defined for the collection. For each item in the collection in turn, the processor MUST assign it to the item variable.">153</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test155.txml" alt="when evaluating foreach, for each item, after making the assignment, the SCXML processor MUST evaluate its child executable content. It MUST then proceed to the next item in iteration order.">155</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test156.txml" alt="If the evaluation of any child element of foreach causes an error, the processor MUST cease execution of the foreach element and the block that contains it.">156</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test525.txml" alt="The SCXML processor MUST act as if it has made a shallow copy of the collection produced by the evaluation of `array`. Specifically, modifications to the collection during the execution of foreach MUST NOT affect the iteration behavior.">525</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#EvaluationofExecutableContent">&sect;4.9</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>Evaluation of Executable Content</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test158.txml" alt="The SCXML processor MUST execute the elements of a block of executable contentin document order.">158</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test159.txml" alt="If the processing of an element of executable content causes an error to be raised, the processor MUST NOT process the remaining elements of the block.">159</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td colspan="13"><b><big>Data Model and Manipulation</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#SystemVariables">&sect;5.10</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>System Variables</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test318.txml" alt="The SCXML Processor MUST bind the \_event variable when an event is pulled off the internal or external event queue to be processed, and MUST keep the variable bound to that event until another event is processed.">318</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test319.txml" alt="The SCXML Processor MUST NOT bind \_event at initialization time until the first event is processed.">319</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test321.txml" alt="The Processor MUST bind the variable \_sessionid at load time to the system-generated id for the current SCXML session.">321</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test322.txml" alt="The Processor MUST keep the \_sessionid variable bound to the system-generated id until the session terminates.">322</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test323.txml" alt="The Processor MUST bind the variable \_name at load time to the value of the `name` attribute of the scxml element. 	a">323</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test324.txml" alt="The Processor MUST keep the \_name variable bound to the value of the `name` attribute of the scxml element until the session terminates.">324</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test325.txml" alt="The Processor MUST bind the variable \_ioprocessors to a set of values, one for each Event I/O Processor that it supports.">325</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test326.txml" alt="The Processor MUST keep the \_ioprocessors variable bound to its set of values until the session terminates.">326</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test329.txml" alt="The Processor MUST cause any attempt to change the value of a system variable to fail.">329</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test330.txml" alt="The SCXML Processor MUST insure that the following fields (name, type, sendid, origin, origintype, invokeid, data) are present in all events (\_event variable), whether internal or external.">330</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test331.txml" alt="The SCXML Processor MUST set the type property of \_event to: &quot;platform&quot; (for events raised by the platform itself, such as error events), &quot;internal&quot; (for events raised by raise and send with target `\_internal`) or &quot;external&quot; (for all other events).">331</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test332.txml" alt="If the sending entity has specified a value for this, the Processor MUST set this field to that value.  Otherwise, in the case of error events triggered by a failed attempt to send an event, the Processor MUST set the sendid field to the send id of the triggering send element.">332</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test333.txml" alt="For events other than error events triggered by a failed attempt to send an event, if the sending entity 	     did not specify a value for the sendid field, the Processor MUST leave the sendid field (of \_event) blank.">333</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test335.txml" alt="If an event was not received from an external entity, the Processor MUST leave the origin field blank.">335</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test336.txml" alt="For external events, the SCXML Processor SHOULD set the origintype field to a value which, in combination with the `origin` field, will allow the receiver of the event to send a response back to the originating entity.">336</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test337.txml" alt="For internal and platform events, the Processor MUST leave the origintype field blank.">337</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test338.txml" alt="If an event is generated from an invoked child process, the Processor MUST set the invokeid field to the invoke id of the invocation that triggered the child process.">338</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test339.txml" alt="If an event is not generated from an invoked child process, the Processor MUST leave the invokeid field blank.">339</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test342.txml" alt="The SCXML Processor MUST set the name field (of the \_event variable) to the name of the event.">342</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test346.txml" alt="The Processor MUST place the error error.execution on the internal event queue when any attempt to change the value of a system variable is made.">346</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#data">&sect;5.3</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Data Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test276.txml" alt="The SCXML Processor MUST allow the environment to provide values for top-level data elements at instantiation time. (Top-level data elements are those that are children of the datamodel element that is a child of scxml). Specifically, the Processor MUST use the values provided at instantiation time instead of those contained in these data elements.">276</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test277.txml" alt="If the value specified for a data element (by `src`, children, or the environment) is not a legal data value, the SCXML Processor MUST raise place error.execution in the internal event queue and MUST create an empty data element in the data model with the specified id.">277</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test279.txml" alt="When `binding` attribute on the scxml element is assigned the value &quot;early&quot; (the default), the SCXML Processor MUST create all data elements and assign their initial values at document initialization time.">279</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test280.txml" alt="When `binding` attribute on the scxml element is assigned the value &quot;late&quot;, the SCXML Processor MUST create the data elements at document initialization time, but MUST assign the specified initial value to a given data element only when the state that contains it is entered for the first time, before any onentry markup.">280</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test550.txml" alt="If the `expr` attribute is present, the Platform MUST evaluate the corresponding expression at the time specified by the `binding` attribute of scxml and MUST assign the resulting value as the value of the data element">550</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test551.txml" alt="f child content is specified, the Platform MUST assign it as the value of the data element at the time specified by the `binding` attribute of scxml.">551</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test552.txml" alt="If the `src` attribute is present, the Platform MUST fetch the specified object at the time specified by the `binding` attribute of scxml and MUST assign it as the value of the data element.">552</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#assign">&sect;5.4</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Assign Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test286.txml" alt="If the location expression of an assign does not denote a valid location in the datamodel the processor MUST place the error error.execution in the internal event queue.">286</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test287.txml" alt="If the location expression of an assign denotes a valid location in the datamodel and if the value specified by `expr` is a legal value for the location specified, the processor MUST place the specified value at the specified location.">287</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test288.txml" alt="If the location expression of an assign denotes a valid location in the datamodel and if the value specified  children is a legal value for the location specified, the processor MUST place the specified value at the specified location.">288</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test487.txml" alt="If the value specified (by `expr` or children) is not a legal value for the location specified, the processor MUST place the error error.execution in the internal event queue.">487</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#donedata">&sect;5.5</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Donedata Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test294.txml" alt="In cases where the SCXML Processor generates a `done` event upon entry into the final state, it MUST evaluate the donedata elements param or content children and place the resulting data in the \_event.data field. The exact format of that data will be determined by the datamodel">294</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#content">&sect;5.6</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Content Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test527.txml" alt="When the SCXML Processor evaluates the content element, if the `expr` value expression is present, the Processor MUST evaluate it and use the result as the output of the content element.">527</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test528.txml" alt="f the evaluation of `expr` produces an error, the Processor MUST place error.execution in the internal event queue and use the empty string as the output of the content element.">528</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test529.txml" alt="If the `expr` attribute is not present, the Processor MUST use the children of content as the output.">529</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#param">&sect;5.7</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Param Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test298.txml" alt="If the `location` attribute on a param element does not refer to a valid location in the data model, the processor MUST place the error error.execution on the internal event queue.">298</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test343.txml" alt="If the `location` attribute on a param element does not refer to a valid location in the data model, or if the evaluation of the `expr` produces an error, the processor MUST ignore the name and value.">343</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test488.txml" alt="if the evaluation of the `expr` produces an error, the processor MUST place the error error.execution on the internal event queue.">488</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#script">&sect;5.8</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Script Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test301.txml" alt="If the script specified by the `src` attribute of a script element cannot be downloaded within a platform-specific timeout interval, the document is considered non-conformant, and the platform MUST reject it. N.B. This test is valid only for datamodels that support scripting.">301</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test302.txml" alt="The SCXML Processor MUST evaluate any script element that is a child of scxml at document load time. N.B. This test is valid only for datamodels that support scripting.">302</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test303.txml" alt="The SCXML Processor MUST evaluate all script elements not children of scxml as part of normal executable content evaluation. N.B. This test is valid only for datamodels that support scripting.">303</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test304.txml" alt="In a conformant SCXML document, the name of any script variable MAY be used as a location expression. N.B. This test is valid only for datamodels that support scripting.">304</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#Expressions">&sect;5.9</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>Expressions</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test307.txml" alt="When &quot;late&quot; data binding is used, accessing data substructure in expressions before the corresponding data element is loaded MUST yield the same execution-time behavior as accessing non-existent data substructure in a loaded data instance.">307</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test309.txml" alt="If a conditional expression cannot be evaluated as a boolean value (`true` or `false`) or if its evaluation causes an error, the SCXML processor MUST treat the expression as if it evaluated to `false`.">309</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test310.txml" alt="All datamodels MUST support the `In()` predicate, which takes a stateID as its argument and returns true if the state machine is in that state.">310</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test311.txml" alt="If a location expression cannot be evaluated to yield a valid location, the SCXML processor MUST place the error error.execution in the internal event queue.">311</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test312.txml" alt="If a value expression does not return a legal data value, the SCXML processor MUST place the error error.execution in the internal event queue.">312</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test313.txml" alt="The SCXML processor MAY reject documents containing syntactically ill-formed expressions at document load time, or it MAY wait and place error.execution in the internal event queue at runtime when the expressions are evaluated.">313</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test314.txml" alt="If the SCXML processor waits until it evaluates the expressions at runtime to raise errors, it MUST raise errors caused by expressions returning illegal values at the points at which Appendix A Algorithm for SCXML Interpretation indicates that the expressions are to be evaluated.">314</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test344.txml" alt="If a conditional expression cannot be evaluated as a boolean value (`true` or `false`) or if its evaluation causes an error, the SCXML processor MUST place the error `error.execution` in the internal event queue.">344</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td colspan="13"><b><big>External Communications</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#send">&sect;6.2</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Send Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test172.txml" alt="If `eventexpr` is present, the SCXML Processor MUST evaluate it when the parent send element is evaluated and treat the result as if it had been entered as the value of `event`.">172</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test173.txml" alt="If `targetexpr` is present, the SCXML Processor MUST evaluate it when the parent send element is evaluated and treat the result as if it had been entered as the value of `target`.">173</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test174.txml" alt="If `typexpr` is present, the SCXML Processor MUST evaluate it when the parent send element is evaluated and treat the result as if it had been entered as the value of `type`.">174</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test175.txml" alt="If `delayexpr` is present, the SCXML Processor MUST evaluate it when the parent send element is evaluated and treat the result as if it had been entered as the value of `delay`.">175</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test176.txml" alt="The SCXML Processor MUST evaluate param when the parent send element is evaluated and pass the resulting data unmodified to the external service when the message is delivered">176</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test178.txml" alt="The SCXML Processor MUST include all attributes and values provided by param and/or `namelist` even if duplicates occur.">178</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test179.txml" alt="The SCXML Processor MUST evaluate the content element when the parent send element is evaluated and pass the resulting data unmodified to the external service when the message is delivered.">179</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test183.txml" alt="If `idlocation` is present, the SCXML Processor MUST generate an id when the parent send element is evaluated and store it in this location">183</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test185.txml" alt="If a delay is specified via `delay` or `delayexpr`, the SCXML Processor MUST interpret the character string as a time interval. 	     the SCXML Processor MUST dispatch the message only when the delay interval elapses.">185</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test186.txml" alt="The Processor MUST evaluate all arguments to send when the send element is evaluated, and not when the message is actually dispatched.">186</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test187.txml" alt="If the SCXML session terminates before the delay interval has elapsed, the SCXML Processor MUST discard the message without attempting to deliver it.">187</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test194.txml" alt="If the value of the `target` or `targetexpr` attribute is not supported or invalid, the Processor MUST place the error error.execution on the internal event queue">194</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test198.txml" alt="If neither the `type` nor the `typeexpr` is defined, the SCXML Processor MUST assume the default value of http://www.w3.org/TR/scxml/#SCXMLEventProcessor.">198</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test199.txml" alt="f the SCXML Processor does not support the type that is specified, it MUST place the event error.execution on the internal event queue.">199</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test200.txml" alt="SCXML Processors MUST support the type http://www.w3.org/TR/scxml/#SCXMLEventProcessor">200</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test201.txml" alt="Processors that support HTTP POST must use the value http://www.w3.org/TR/scxml/#BasicHTTPEventProcessor for the &quot;type&quot; attribute">201</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test205.txml" alt="The sending SCXML Interpreter MUST not alter the content of the send 	     and include it in the message that it sends to the destination specified in the target attribute of send.">205</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test521.txml" alt="f the Processor cannot dispatch the event, it MUST place the error error.communication on the internal event queue of the session that attempted to send the event.">521</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test553.txml" alt="If the evaluation of send's arguments produces an error, If the evaluation of send's arguments produces an error, the Processor MUST discard the message without attempting to deliver it.">553</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#cancel">&sect;6.3</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Cancel Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test207.txml" alt="The SCXML Processor MUST NOT allow cancel to affect events that were not raised in the same session.">207</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test208.txml" alt="The Processor SHOULD make its best attempt to cancel all delayed events with the specified id.">208</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test210.txml" alt="If the `sendidexpr` attribute is present, the SCXML Processor MUST evaluate it when the parent cancel element is evaluated and treat the result as if it had been entered as the value of `sendid`.">210</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#invoke">&sect;6.4</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Invoke Element</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test215.txml" alt="If the typeexpr attribute is present, the SCXML Processor MUST evaluate it when the parent invoke element is evaluated and treat the result as if it had been entered as the value of `type`.">215</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test216.txml" alt="If the srcexpr attribute is present, the SCXML Processor MUST evaluate it when the parent invoke element is evaluated and treat the result as if it had been entered as the value of `src`.">216</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test220.txml" alt="Platforms MUST support http://www.w3.org/TR/scxml/, as a value for the `type` attribute">220</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test223.txml" alt="If the `idlocation` attribute is present, the SCXML Processor MUST generate an id automatically when the invoke element is evaluated and store it in the location specified by `idlocation`.">223</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test224.txml" alt="When the platform generates an identifier for `idlocation`, the identifier MUST have the form stateid.platformid, where stateid is the id of the state containing this element and platformid is automatically generated.">224</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test225.txml" alt="n the automatically generated invoke identifier, platformid MUST be unique within the current session">225</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test226.txml" alt="When the invoke element is executed, the SCXML Processor MUST start a new logical instance of the external service specified in `type` or `typexpr`, passing it the URL specified by `src` or the data specified by content, or param.">226</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test228.txml" alt="the Processor MUST keep track of the unique invokeid and insure that it is included in all events that the invoked service returns to the invoking session.">228</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test229.txml" alt="When the `autoforward` attribute is set to true, the SCXML Processor MUST send an exact copy of every external event it receives to the invoked process.">229</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test230.txml" alt="When the SCXML Processor autoforwards an event to the invoked process, all the fields specified in 5.11.1 The Internal Structure of Events MUST have the same values in the forwarded copy of the event">230</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test232.txml" alt="he invoked external service MAY return multiple events while it is processing">232</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test233.txml" alt="If there is a finalize handler in the instance of invoke that created the service that generated the event, the SCXML Processor MUST execute the code in that finalize handler right before it removes the event from the event queue for processing.">233</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test234.txml" alt="t MUST NOT execute the finalize handler in any other instance of invoke besides the one in the instance of invoke that created the service that generated the event.">234</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test235.txml" alt="Once the invoked external service has finished processing it MUST return a special event `done.invoke.id` to the external event queue of the invoking process, where id is the invokeid for the corresponding invoke element.">235</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test236.txml" alt="The external service MUST NOT generate any other events after the invoke.done.invokeid event.">236</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test237.txml" alt="If the invoking session takes a transition out of the state containing the invoke before it receives the `done.invoke.id` event, the SCXML Processor MUST automatically cancel the invoked component and stop its processing.">237</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test239.txml" alt="Invoked services of type http://www.w3.org/TR/scxml/, http://www.w3.org/TR/ccxml/, http://www.w3.org/TR/voicexml30/, or http://www.w3.org/TR/voicexml21 MUST interpret values specified by the content element or `src` attribute as markup to be executed">239</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test240.txml" alt="Invoked services of type http://www.w3.org/TR/scxml/, http://www.w3.org/TR/ccxml/, http://www.w3.org/TR/voicexml30/, or http://www.w3.org/TR/voicexml21 MUST interpret values specified by param element or `namelist` attribute as values that are to be injected into their data models">240</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test241.txml" alt="Invoked services MUST treat values specified by param and namelist identically.">241</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test242.txml" alt="Invoked services MUST also treat values specified by `src` and content identically.">242</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test243.txml" alt="If the invoked process is of type http://www.w3.org/TR/scxml/ and `name` of a param element in the invoke matches the `id` of a data element in the top-level data declarations of the invoked session, the SCXML Processor MUST use the value of the param element as the initial value of the corresponding data element.">243</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test244.txml" alt="If the invoked process is of type http://www.w3.org/TR/scxml/ and the key of namelist item in the invoke matches the `id` of a data element in the top-level data declarations of the invoked session, the SCXML Processor MUST use the corresponding value as the initial value of the corresponding data element.">244</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test245.txml" alt="If the invoked process is of type http://www.w3.org/TR/scxml/, and the name of a param element or the key of of a namelis item do not match the name of a data element in the invoked process, the Processor MUST NOT add the value of the param element or namelist key/value pair to the invoked session's data model.">245</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test247.txml" alt="If the invoked state machine is of type http://www.w3.org/TR/scxml/ and it reaches a top-level final state, the Processor MUST place the event done.invoke.id on the external event queue of the invoking machine, where id is the invokeid for this invocation">247</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test250.txml" alt="When an invoked process of type http://www.w3.org/TR/scxml/is cancelled by the invoking process, the Processor MUST execute the onexit handlers for all active states in the invoked session">250</a></b></td>
			<td>X</td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test252.txml" alt="Once it cancels an invoked session, the Processor MUST NOT insert any events it receives from the invoked session into the external event queue of the invoking session.">252</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test253.txml" alt="When the invoked session is of type http://www.w3.org/TR/scxml/, The SCXML Processor MUST support the use of SCXML Event/IO processor (E.1 SCXML Event I/O Processor) to communicate between the invoking and the invoked sessions.">253</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test530.txml" alt="The SCXML Processor MUST evaluate a child content element when the parent invoke element is evaluated and pass the resulting data to the invoked service.">530</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test554.txml" alt="if the evaluation of the invoke element's arguments arguments produces an error, the SCXML Processor MUST terminate the processing of the element without further action.">554</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td colspan="13"><b><big>Data Models</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#minimal-profile">&sect;C.1</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The Null Data Model</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test436.txml" alt="When the &quot;datamodel&quot; attribute of the scxml element has the value &quot;null&quot;, the In() predicate must return `true` if and only if that state is in the current state configuration.">436</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#ecma-profile">&sect;C.2</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The ECMAScript Data Model</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test278.txml" alt="In the ECMAScript data model, the SCXML processor MUST allow any data element to be accessed from any state.">278</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test444.txml" alt="In the ECMAScript datamodel, for each data element in the document, the SCXML Processor must create an ECMAScript variable object whose name is the value of the id attribute of the data element.">444</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test445.txml" alt="In the ECMAScript datamodel for each data element in the document, if the variable object associated with the element is not assigned at the time indicated by the `binding` attribute on the scxml element, then the SCXML Processor must assign the variable the default value ECMAScript undefined.">445</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test446.txml" alt="In the ECMAScript data model, if either the `src` attribute or in-line content is provided in the data elemenet, then if the content (whether fetched or provided in-line) is JSON and the processor supports JSON, the SCXML Processor MUST create the corresponding ECMAScript structure and assign it as the value of the data element.">446</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test448.txml" alt="In the ECMAScript datamodel, the SCXML Processor must place all variables in a single global ECMAScript scope.">448</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test449.txml" alt="In the ECMAScript datamodel, the SCXML Processor must convert ECMAScript expressions used in conditional expressions into their effective boolean value using the ToBoolean operator as described in Section 9.2 of (ECMASCRIPT-262).">449</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test451.txml" alt="In the ECMAScript datamodel, the SCXML Processor must add an ECMAScript  	     function `In()` to the SCXML namespace that takes a stateID as its argument and  	     returns `true` if and only if that state is in the current state configuration,  	     as described in 5.10.1 Conditional Expressions.">451</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test452.txml" alt="In the ECMAScript datamodel, the SCXML Processor must accept any ECMAScript left-hand-side expression as a location expression.">452</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test453.txml" alt="In the ECMAScript datamodel,  the SCXML Processor must accept any ECMAScript expression as a value expression.">453</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test456.txml" alt="the SCXML Processor must accept any ECMAScript program as defined in Section 14 of (ECMASCRIPT-262) as the content of a script element.">456</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test457.txml" alt="In the ECMAScript data model, the legal iterable collections are arrays, namely objects that satisfy instanceof(Array) in ECMAScript.  The legal values for the `item` attribute on foreach are legal ECMAScript variable names.">457</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test459.txml" alt="In the ECMAScript data model, the iteration order for the foreach element is the order of the underlying ECMAScript array, and goes from an index of 0 by increments of one to an index of array\_name.length - 1.">459</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test460.txml" alt="In the ECMAScript data model, since shallow copy is required for the foreach element, foreach assignment is equivalent to item = array\_name(index) in ECMAScript.">460</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test557.txml" alt="In the ECMAScript data model, if either the `src` attribute or in-line content is provided in the data element, then if the content (whether fetched or provided in-line) is an XML document, the SCXML Processor MUST create the corresponding DOM structure and assign it as the value of the data element.">557</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test558.txml" alt="In the ECMAScript datamodel, if either the `src` attribute or in-line content is provided in the data element, and the content (whether fetched or provided in-line) is not an XML document or JSON (or the 	     processor does not support JSON), then the Processor MUST treat the content as a space-normalized string literal and assign it as the value of the variable">558</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test560.txml" alt="In the ECMAScript data model, if the content provided to populate \_event.data can be interpeted as key-value pairs, then for each unique key, the SCXML Processor MUST create a property of \_event.data whose name is the name of the key-value pair and whose value is the value of the key-value pair.">560</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test561.txml" alt="In the ECMAScript data model, if the content provided to populate \_event.data can be interpreted as a valid XML document 	     (and cannot be interpreted as key-value pairs or JSON), the Processor MUST create the corresponding DOM structure and assign it as the value \_event.data.">561</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test562.txml" alt="In the ECMAScript data model, if the content provided to populate \_event.data is neither key-value pairs nor JSON nor a valid XML document, the Processor MUST treat the content treat the content as a space-normalized string literal and assign it as the value of \_event.data.">562</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test569.txml" alt="For the \_ioprocessors system variable in the ECMAScript datamodel the Processor MUST create an array with an object for each Event I/O processor that it supports, where the name of the object is the same as that of the I/O processor. For the SCXML and BasicHTTP Event I/O processors, the Processor MUST create a location property under the object, assigning the access URI as its String value.">569</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test578.txml" alt="In the ECMAScript data model, if the content provided to populate \_event.data cannot be interpreted as  	     key value pairs and can be interpeted as JSON and the 	     processor supports JSON, then the Processor MUST create the corresponding ECMAScript structure(s) as properties of \_event.data.">578</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#xpath-profile">&sect;C.3</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>The XPath Data Model</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test463.txml" alt="In the XPath datamodel, for each data element in the document, the SCXML Processor MUST create a child of datamodel called &lt;data&gt; with an `id` attribute whose value is the same as that of the `id` attribute of the document data element. The Processor MUST bind an XPath variable of the same name to that datamodel data element.">463</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test464.txml" alt="In the XPath datamodel, for each data element in the document, if a value is not assigned at the time indicated by the `binding` attribute on the scxml element, then the SCXML Processor must leave the datamodel data element empty, as follows: &lt;data xmlns=&quot;&quot;&gt;&lt;/data&gt;">464</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test465.txml" alt="In the XPath datamodel, the SCXML Processor must place all variables in a single global XPath scope, such that they are subsequently available to all expressions within the document.">465</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test466.txml" alt="In the XPath datamodel, the SCXML Processor must accept any XPath 2.0 expression as a conditional expression and must convert it into its effective boolean value as described in section 2.4.3 of the (XPath 2.0) specification.">466</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test467.txml" alt="In the XPath datamodel, the SCXML Processor must add an XPath function to the SCXML namespace that takes a stateID as its argument and returns `true` if and only if that state is in the current state configuration, as described in 5.10.1 Conditional Expressions.">467</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test468.txml" alt="In the XPath datamodel, the SCXML Processor must accept any XPath 2.0 expression as a location expression.">468</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test469.txml" alt="In the XPath datamodel,the SCXML Processor must allow any XPath expression to be used as a value expression.">469</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test470.txml" alt="In the XPath datamodel, if the result of a value expression is a node-set, the Processor must make a deep copy of the subtree rooted at each node.">470</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test473.txml" alt="In the XPath datamodel,  if the `type` attribute of the assign element is specified with a value of `replacechildren`, the SCXML Processor must either replace all the children at `location` with the value specified by `expr` or place the error error.execution on the internal event queue.">473</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test474.txml" alt="In the XPath datamodel,  if the `type` attribute of the assign element is specified with a value of `firstchild`, the SCXML Processor must either insert the value specified by `expr` before all of the children at `location` or place the error error.execution on the internal event queue.">474</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test475.txml" alt="In the XPath datamodel,if the `type` attribute of the assign element is specified with a value of `lastchild`, the SCXML Processor must either insert the value specified by `expr` after all of the children at `location` or place the error error.execution on the internal event queue.">475</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test476.txml" alt="In the XPath datamodel,if the `type` attribute of the assign element is specified with a value of `previoussibling`, the SCXML Processor must either insert the value specified by `expr` before the node specified by `location`, keeping the same parent, or place the error error.execution on the internal event queue.">476</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test477.txml" alt="In the XPath datamodel, if the `type` attribute of the assign element is specified with a value of `nextsibling`, the SCXML Processor must either insert the value specified by `expr` after the node specified by `location`, keeping the same parent, or place the error error.execution on the internal event queue.">477</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test478.txml" alt="In the XPath datamodel, if the `type` attribute of the assign element is specified with a value of `replace`, the SCXML Processor must either replace the node specified by `location` with the value specified by `expr` or place the error error.execution on the internal event queue.">478</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test479.txml" alt="In the XPath datamodel, if the `type` attribute of the assign element is specified with a value of `delete`, the SCXML Processor must either delete the node specified by `location` or place the error error.execution on the internal event queue.">479</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test480.txml" alt="In the XPath datamodel, if the `type` attribute of the assign element is specified with a value of `addattribute`, the SCXML Processor must either add an attribute with the name specified by `attr` and value specified by `expr` to the node specified by `location` or place the error error.execution on the internal event queue.">480</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test481.txml" alt="In the XPath datamodel, if the evaluation of any of the expressions in an assign element causes an error to be raised, evaluation of the element terminates immediately and the assign has no effect. Similarly, if the processor is unable to place the specified value at the node specified by `location` it must terminate immediately, placing the error error.execution on the internal event queue, and the assign has no effect.">481</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test482.txml" alt="In the XPath datamodel, for each system variable defined in 5.11 System Variables, the SCXML Processor MUST create a datamodel &lt;data&gt; element with an `id` attribue whose value is the name of the system variable. The Processor also MUST bind an XPath variable whose name is the name of the system variable to this element.">482</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test483.txml" alt="In the XPath datamodel, In the XPath data model, the legal iterable collections are Node-Sets, and 	      the legal values for the `item` attribute on foreach are legal XPath variable names. 	      	 The iteration order is the order of the underlying Node-set, and goes from an index of 1 by increments of one to an index of count(node-set).">483</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test537.txml" alt="In the XPath datamodel,the SCXML Processor MUST maintain the XPath data model as an XML structure with a root element called &lt;datamodel&gt;.  	     For each datamodel &lt;data&gt; element, the Processor MUST insert the value of the document data element as the child(ren) of the datamodel &lt;data&gt; element.">537</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test539.txml" alt="In the XPath datamodel, for each data element, ff either the `src` attribute or in-line content is provided in the document data element, then if the content (whether fetched or provided in-line) is XML, the SCXML Processor MUST insert the XML as the child(ren) of the datamodel &lt;data&gt; element">539</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test540.txml" alt="In the XPath datamodel, for each data element, if either the `src` attribute or in-line content is provided in the document data element, then if the content (whether fetched or provided in-line) is not XML, the Processor MUST treat the content as a space-normalized string literal and insert it as the child of the datamodel &lt;data&gt; element.">540</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test542.txml" alt="In the XPath datamodel, when content is a child of donedata, the Processor MUST interpret its value as defined in D.3.7.1 \_event.data">542</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test543.txml" alt="In the XPath datamodel, for the \_event system variable (i.e., the &lt;data id=&quot;\_event&quot;&gt; child of &lt;datamodel&gt;), for each of the fields defined in 5.11.1 The Internal Structure of Events, the Processor MUST create an child element whose name is the name of the field.">543</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test544.txml" alt="In the XPath datamodel,  if the content provided to populate \_event.data can be interpreted as key-value pairs, then for each unique key, the SCXML Processor MUST create a &lt;data&gt; element as a child of \_event's data child with an `id` attribute whose value is the name of the key. The Processor MUST insert the value of the key-value pair as the content of this element.">544</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test545.txml" alt="In the XPath datamodel,if the content provided to populate \_event.data can be interpreted as a valid XML document (and not as key-value pairs), the Processor MUST insert the XML structure as the content of \_event's &lt;data&gt; child.">545</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test546.txml" alt="In the XPath datamodel,  if the content provided to populate \_event.data cannot be interpreted as either key-value pairs or as a vaild XML document, the Processor MUST treat the content as a space-normalized string literal and insert it as the content of \_event's &lt;data&gt; child.">546</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test547.txml" alt="In the XPath datamodel, (when evaluating assign If the specified location contains a node set, the Processor MUST perform the assignment to each node in the set.">547</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test555.txml" alt="In the XPath datamodel, In contexts where a string is expected, the Processor MAY convert the expression result to a string using string().">555</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test568.txml" alt="In the XPath datamodel, For the \_ioprocessors system variable the Processor MUST create an child element for each Event I/O processor that it supports, where the name of the child element is the same as that of the I/O processor. For the SCXML and BasicHTTP Event I/O processors, the Processor MUST create a &lt;location&gt;child under the child element, assigning the access URI as its text child.">568</a></b></td>
			<td></td>
			<td></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td colspan="13"><b><big>Event I/O Processor</big></b></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#SCXMLEventProcessor">&sect;D.1</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>SCXML Event I/O Processor</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test189.txml" alt="When using the scxml event i/o processor) If the target is the special term `#\_internal`, the Processor MUST add the event to the internal event queue of the sending session">189</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test190.txml" alt="(When using the scxml event i/o processor) If the target is the special term `#\_scxml\_sessionid`, where sessionid is the id of an SCXML session that is accessible to the Processor, the Processor MUST add the event to the external queue of that session.">190</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test191.txml" alt="(When using the scxml event i/o processor) If the target is the special term `#\_parent`, the Processor MUST add the event to the external event queue of the SCXML session that invoked the sending session, if there is one.">191</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test192.txml" alt="(When using the scxml event i/o processor) If the target is the special term `#\_invokeid`, where invokeid is the invokeid of an SCXML session that the sending session has created by invoke, the Processor MUST must add the event to the external queue of that session.">192</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test193.txml" alt="(When using the scxml event i/o processor) If neither the `target` nor the `targetexpr` attribute is specified, the SCXML Processor MUST add the event to the external event queue of the sending session.">193</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test347.txml" alt="SCXML Processors MUST support sending messages to and receiving messages from other SCXML sessions using the SCXML Event I/O Processor.">347</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test348.txml" alt="name'. The sending SCXML Processor MUST take the value of this attribute from the `event` attribute of the send element. The receiving SCXML Processor MUST use it as the value the `name` field in the event that it generates.">348</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test349.txml" alt="source'. The sending SCXML Processor MUST populate this attribute with a URI that the receiving processor can use to reply to the sending processor. The receiving SCXML Processor MUST use this URI as the value of the `origin` field in the event that it generates.">349</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test350.txml" alt="target'. The sending SCXML Processor MUST take the value of this attribute from the `target` attribute of the send element. The receiving SCXML Processor MUST use this value to determine which session to deliver the message to.">350</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test351.txml" alt="sendid'. the sending SCXML Processor MUST populate this attribute with the identifier specified in the `id` attribute or automatically generated by the platform when the send tag is executed in the sending session. (See 6.2 send.) The receiving SCXML Processor MUST use this value as the value of the `sendid` field in the event that it generates. If the author of the sending session did not specify either the `id` or `idlocation` attribute, the sending SCXML Processor MUST leave this attribute empty.">351</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test352.txml" alt="`sourcetype`. The sending SCXML Processor MUST assign this attribute the value &quot;scxml&quot;. (Note that other types of senders will assign different values.) The receiving Processor MUST use this value as the value of the `origintype` field of the event that it generates.">352</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test354.txml" alt="The `data` field of the event raised in the receiving session MUST contain a copy of the data specified in the `namelist` attribute or in param or content elements in the sending session. The nature of the copy operation depends on the datamodel in question. However, the Processor MUST ensure that changes to the transmitted data in the receiving session do not affect the data in the sending session and vice-versa. The format of the `data` field will depend on the datamodel of the receiving session.">354</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test495.txml" alt="If no errors occur, the receiving Processor MUST convert the message into an SCXML event, using the mapping defined above and insert it into the appropriate queue, as defined in Send Targets.">495</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test496.txml" alt="If the sending SCXML session specifies a session that does not exist or is inaccessible, the SCXML Processor MUST place the error error.communication on the internal event queue of the sending session.">496</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test500.txml" alt="SCXML Processors that support the BasicHTTP Event I/O Processor MUST maintain a `scxml` entry in the \_ioprocessors system variable. The Processor MUST maintain a `location` field inside this entry whose value holds an address that external entities can use to communicate with this SCXML session using the SCXML Event I/O Processor.">500</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test501.txml" alt="The `location` field inside the entry for the SCXML Event I/O Processor in the \_ioprocessors system variable MUST hold an address that external entities can use to communicate with this SCXML session using the SCXML Event I/O Processor.">501</a></b></td>
			<td>X</td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td><b><a href="http://www.w3.org/TR/2015/REC-scxml-20150901/#BasicHTTPEventProcessor">&sect;D.2</a></b></td>
			<td colspan="12"><sub>&nbsp;</sub><b>Basic HTTP Event I/O Processor</b><sup>&nbsp;</sup></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test509.txml" alt="An SCXML Processor that supports the Basic HTTP Event I/O Processor MUST accept messages at the access URI as HTTP POST requests">509</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test510.txml" alt="The SCXML Processor MUST validate the message it receives (via the Basic HTTP Event I/O Processor) and then MUST build the appropriate SCXML event and MUST add it to the external event queue">510</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test513.txml" alt="After it adds the received message to the appropriate event queue, the SCXML Processor MUST then indicate the result to the external component via a success response code 2XX.">513</a></b></td>
			<td></td>
			<td>X</td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test518.txml" alt="If the namelist attribute is defined (in send), the SCXML Processor MUST map its variable names and values to HTTP POST parameters">518</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test519.txml" alt="If one or more param children are present (in send), the SCXML Processor MUST map their names (i.e. name attributes) and values to HTTP POST parameters">519</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test520.txml" alt="If a content child is present, the SCXML Processor MUST use its value as the body of the message.">520</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test522.txml" alt="SCXML Processors that support the BasicHTTP Event I/O Processor MUST maintain a `basichttp` entry in the \_ioprocessors system variable. The Processor MUST maintain a in `location` field inside this entry whose value holds an address that external entities can use to communicate with this SCXML session using the Basic HTTP Event I/O Processor.">522</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test531.txml" alt="If a single instance of the parameter `\_scxmleventname` is present, the SCXML Processor MUST use its value as the name of the SCXML event that it raises.">531</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test532.txml" alt="If \_scxmleventname is not present, the Processor MUST the name of the HTTP method that was used to deliver the event as name of the SCXML event that it raises">532</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test534.txml" alt="If the `event` parameter of send is defined, the SCXML Processor MUST use its value as the value of the HTTP POST parameter \_scxmleventname">534</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test567.txml" alt="The processor MUST use any message content other than `\_scxmleventname` to populate \_event.data.">567</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
		</tr>
		<tr>
			<td>&nbsp;&nbsp;&nbsp;<b><a href="https://github.com/tklab-tud/uscxml/tree/master/test/w3c/txml/test577.txml" alt="If neither the `target` nor the `targetexpr` attribute is specified, the SCXML Processor MUST add the event error.communication to the internal event queue of the sending session.">577</a></b></td>
			<td></td>
			<td></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>N/A</code></td>
			<td><code>N/A</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code>OK</code></td>
			<td><code><mark><b>FAIL</b></mark></code></td>
		</tr>
	</tbody>
</table>