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
|
layer at (0,0) size 800x600 clip at (0,0) size 785x600 scrollHeight 3322
LayoutView at (0,0) size 800x600
layer at (0,0) size 785x3322 backgroundClip at (0,0) size 785x600 clip at (0,0) size 785x600
LayoutBlockFlow {HTML} at (0,0) size 785x3321.50
LayoutBlockFlow {BODY} at (8,21.44) size 769x3284.06
LayoutBlockFlow {H1} at (0,0) size 769x37
LayoutText {#text} at (0,0) size 248x36
text run at (0,0) width 248: "HTML Test Index"
LayoutBlockFlow {P} at (0,58.44) size 769x18
LayoutText {#text} at (0,0) size 317x17
text run at (0,0) width 317: "The HTML tests are available in several variants."
LayoutBlockFlow {H2} at (0,96.34) size 769x27
LayoutText {#text} at (0,0) size 280x26
text run at (0,0) width 280: "Tests With Navigation Aids"
LayoutBlockFlow {P} at (0,143.25) size 769x36
LayoutText {#text} at (0,0) size 733x35
text run at (0,0) width 733: "Each category of test is available using several different harnesses. The name of the harness describes how the test"
text run at (0,18) width 724: "markup is contained within it, for example the Xlink embed case uses an XLink with the show axis set to embed."
LayoutBlockFlow {UL} at (0,195.25) size 769x180
LayoutListItem {LI} at (40,0) size 729x36
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 23x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 23x17
text run at (0,0) width 23: "full"
LayoutText {#text} at (22,0) size 9x17
text run at (22,0) width 9: ": "
LayoutInline {A} at (0,0) size 97x17 [color=#0000EE]
LayoutText {#text} at (30,0) size 97x17
text run at (30,0) width 97: "Self Contained"
LayoutText {#text} at (126,0) size 9x17
text run at (126,0) width 9: ", "
LayoutInline {A} at (0,0) size 121x17 [color=#0000EE]
LayoutText {#text} at (134,0) size 121x17
text run at (134,0) width 121: "XHTML <iframe>"
LayoutText {#text} at (254,0) size 9x17
text run at (254,0) width 9: ", "
LayoutInline {A} at (0,0) size 119x17 [color=#0000EE]
LayoutText {#text} at (262,0) size 119x17
text run at (262,0) width 119: "XHTML <object>"
LayoutText {#text} at (380,0) size 9x17
text run at (380,0) width 9: ", "
LayoutInline {A} at (0,0) size 118x17 [color=#0000EE]
LayoutText {#text} at (388,0) size 118x17
text run at (388,0) width 118: "XHTML <frame>"
LayoutText {#text} at (505,0) size 9x17
text run at (505,0) width 9: ", "
LayoutInline {A} at (0,0) size 110x17 [color=#0000EE]
LayoutText {#text} at (513,0) size 110x17
text run at (513,0) width 110: "HTML <iframe>"
LayoutText {#text} at (622,0) size 9x17
text run at (622,0) width 9: ", "
LayoutInline {A} at (0,0) size 676x35 [color=#0000EE]
LayoutText {#text} at (630,0) size 676x35
text run at (630,0) width 46: "HTML"
text run at (0,18) width 58: "<object>"
LayoutText {#text} at (57,18) size 9x17
text run at (57,18) width 9: ", "
LayoutInline {A} at (0,0) size 105x17 [color=#0000EE]
LayoutText {#text} at (65,18) size 105x17
text run at (65,18) width 105: "HTML <frame>"
LayoutText {#text} at (169,18) size 9x17
text run at (169,18) width 9: ", "
LayoutInline {A} at (0,0) size 90x17 [color=#0000EE]
LayoutText {#text} at (177,18) size 90x17
text run at (177,18) width 90: "XLink embed"
LayoutText {#text} at (266,18) size 9x17
text run at (266,18) width 9: ", "
LayoutInline {A} at (0,0) size 84x17 [color=#0000EE]
LayoutText {#text} at (274,18) size 84x17
text run at (274,18) width 84: "TNG Format"
LayoutListItem {LI} at (40,36) size 729x36
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 34x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 34x17
text run at (0,0) width 34: "static"
LayoutText {#text} at (33,0) size 10x17
text run at (33,0) width 10: ": "
LayoutInline {A} at (0,0) size 96x17 [color=#0000EE]
LayoutText {#text} at (42,0) size 96x17
text run at (42,0) width 96: "Self Contained"
LayoutText {#text} at (137,0) size 9x17
text run at (137,0) width 9: ", "
LayoutInline {A} at (0,0) size 122x17 [color=#0000EE]
LayoutText {#text} at (145,0) size 122x17
text run at (145,0) width 122: "XHTML <iframe>"
LayoutText {#text} at (266,0) size 9x17
text run at (266,0) width 9: ", "
LayoutInline {A} at (0,0) size 119x17 [color=#0000EE]
LayoutText {#text} at (274,0) size 119x17
text run at (274,0) width 119: "XHTML <object>"
LayoutText {#text} at (392,0) size 9x17
text run at (392,0) width 9: ", "
LayoutInline {A} at (0,0) size 117x17 [color=#0000EE]
LayoutText {#text} at (400,0) size 117x17
text run at (400,0) width 117: "XHTML <frame>"
LayoutText {#text} at (516,0) size 9x17
text run at (516,0) width 9: ", "
LayoutInline {A} at (0,0) size 110x17 [color=#0000EE]
LayoutText {#text} at (524,0) size 110x17
text run at (524,0) width 110: "HTML <iframe>"
LayoutText {#text} at (633,0) size 9x17
text run at (633,0) width 9: ", "
LayoutInline {A} at (0,0) size 688x35 [color=#0000EE]
LayoutText {#text} at (641,0) size 688x35
text run at (641,0) width 47: "HTML"
text run at (0,18) width 58: "<object>"
LayoutText {#text} at (57,18) size 9x17
text run at (57,18) width 9: ", "
LayoutInline {A} at (0,0) size 105x17 [color=#0000EE]
LayoutText {#text} at (65,18) size 105x17
text run at (65,18) width 105: "HTML <frame>"
LayoutText {#text} at (169,18) size 9x17
text run at (169,18) width 9: ", "
LayoutInline {A} at (0,0) size 90x17 [color=#0000EE]
LayoutText {#text} at (177,18) size 90x17
text run at (177,18) width 90: "XLink embed"
LayoutText {#text} at (266,18) size 9x17
text run at (266,18) width 9: ", "
LayoutInline {A} at (0,0) size 84x17 [color=#0000EE]
LayoutText {#text} at (274,18) size 84x17
text run at (274,18) width 84: "TNG Format"
LayoutListItem {LI} at (40,72) size 729x36
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 94x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 94x17
text run at (0,0) width 94: "history-related"
LayoutText {#text} at (93,0) size 9x17
text run at (93,0) width 9: ": "
LayoutInline {A} at (0,0) size 97x17 [color=#0000EE]
LayoutText {#text} at (101,0) size 97x17
text run at (101,0) width 97: "Self Contained"
LayoutText {#text} at (197,0) size 9x17
text run at (197,0) width 9: ", "
LayoutInline {A} at (0,0) size 121x17 [color=#0000EE]
LayoutText {#text} at (205,0) size 121x17
text run at (205,0) width 121: "XHTML <iframe>"
LayoutText {#text} at (325,0) size 9x17
text run at (325,0) width 9: ", "
LayoutInline {A} at (0,0) size 119x17 [color=#0000EE]
LayoutText {#text} at (333,0) size 119x17
text run at (333,0) width 119: "XHTML <object>"
LayoutText {#text} at (451,0) size 9x17
text run at (451,0) width 9: ", "
LayoutInline {A} at (0,0) size 118x17 [color=#0000EE]
LayoutText {#text} at (459,0) size 118x17
text run at (459,0) width 118: "XHTML <frame>"
LayoutText {#text} at (576,0) size 9x17
text run at (576,0) width 9: ", "
LayoutInline {A} at (0,0) size 110x17 [color=#0000EE]
LayoutText {#text} at (584,0) size 110x17
text run at (584,0) width 110: "HTML <iframe>"
LayoutText {#text} at (693,0) size 5x17
text run at (693,0) width 5: ","
LayoutInline {A} at (0,0) size 107x17 [color=#0000EE]
LayoutText {#text} at (0,18) size 107x17
text run at (0,18) width 107: "HTML <object>"
LayoutText {#text} at (106,18) size 9x17
text run at (106,18) width 9: ", "
LayoutInline {A} at (0,0) size 106x17 [color=#0000EE]
LayoutText {#text} at (114,18) size 106x17
text run at (114,18) width 106: "HTML <frame>"
LayoutText {#text} at (219,18) size 9x17
text run at (219,18) width 9: ", "
LayoutInline {A} at (0,0) size 89x17 [color=#0000EE]
LayoutText {#text} at (227,18) size 89x17
text run at (227,18) width 89: "XLink embed"
LayoutText {#text} at (315,18) size 9x17
text run at (315,18) width 9: ", "
LayoutInline {A} at (0,0) size 84x17 [color=#0000EE]
LayoutText {#text} at (323,18) size 84x17
text run at (323,18) width 84: "TNG Format"
LayoutListItem {LI} at (40,108) size 729x36
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 68x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 68x17
text run at (0,0) width 68: "interactive"
LayoutText {#text} at (67,0) size 9x17
text run at (67,0) width 9: ": "
LayoutInline {A} at (0,0) size 97x17 [color=#0000EE]
LayoutText {#text} at (75,0) size 97x17
text run at (75,0) width 97: "Self Contained"
LayoutText {#text} at (171,0) size 9x17
text run at (171,0) width 9: ", "
LayoutInline {A} at (0,0) size 122x17 [color=#0000EE]
LayoutText {#text} at (179,0) size 122x17
text run at (179,0) width 122: "XHTML <iframe>"
LayoutText {#text} at (300,0) size 9x17
text run at (300,0) width 9: ", "
LayoutInline {A} at (0,0) size 119x17 [color=#0000EE]
LayoutText {#text} at (308,0) size 119x17
text run at (308,0) width 119: "XHTML <object>"
LayoutText {#text} at (426,0) size 9x17
text run at (426,0) width 9: ", "
LayoutInline {A} at (0,0) size 117x17 [color=#0000EE]
LayoutText {#text} at (434,0) size 117x17
text run at (434,0) width 117: "XHTML <frame>"
LayoutText {#text} at (550,0) size 9x17
text run at (550,0) width 9: ", "
LayoutInline {A} at (0,0) size 110x17 [color=#0000EE]
LayoutText {#text} at (558,0) size 110x17
text run at (558,0) width 110: "HTML <iframe>"
LayoutText {#text} at (667,0) size 9x17
text run at (667,0) width 9: ", "
LayoutInline {A} at (0,0) size 721x35 [color=#0000EE]
LayoutText {#text} at (675,0) size 721x35
text run at (675,0) width 46: "HTML"
text run at (0,18) width 58: "<object>"
LayoutText {#text} at (57,18) size 9x17
text run at (57,18) width 9: ", "
LayoutInline {A} at (0,0) size 105x17 [color=#0000EE]
LayoutText {#text} at (65,18) size 105x17
text run at (65,18) width 105: "HTML <frame>"
LayoutText {#text} at (169,18) size 9x17
text run at (169,18) width 9: ", "
LayoutInline {A} at (0,0) size 90x17 [color=#0000EE]
LayoutText {#text} at (177,18) size 90x17
text run at (177,18) width 90: "XLink embed"
LayoutText {#text} at (266,18) size 9x17
text run at (266,18) width 9: ", "
LayoutInline {A} at (0,0) size 84x17 [color=#0000EE]
LayoutText {#text} at (274,18) size 84x17
text run at (274,18) width 84: "TNG Format"
LayoutListItem {LI} at (40,144) size 729x36
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 56x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 56x17
text run at (0,0) width 56: "dynamic"
LayoutText {#text} at (55,0) size 9x17
text run at (55,0) width 9: ": "
LayoutInline {A} at (0,0) size 97x17 [color=#0000EE]
LayoutText {#text} at (63,0) size 97x17
text run at (63,0) width 97: "Self Contained"
LayoutText {#text} at (159,0) size 9x17
text run at (159,0) width 9: ", "
LayoutInline {A} at (0,0) size 121x17 [color=#0000EE]
LayoutText {#text} at (167,0) size 121x17
text run at (167,0) width 121: "XHTML <iframe>"
LayoutText {#text} at (287,0) size 9x17
text run at (287,0) width 9: ", "
LayoutInline {A} at (0,0) size 119x17 [color=#0000EE]
LayoutText {#text} at (295,0) size 119x17
text run at (295,0) width 119: "XHTML <object>"
LayoutText {#text} at (413,0) size 9x17
text run at (413,0) width 9: ", "
LayoutInline {A} at (0,0) size 117x17 [color=#0000EE]
LayoutText {#text} at (421,0) size 117x17
text run at (421,0) width 117: "XHTML <frame>"
LayoutText {#text} at (537,0) size 9x17
text run at (537,0) width 9: ", "
LayoutInline {A} at (0,0) size 111x17 [color=#0000EE]
LayoutText {#text} at (545,0) size 111x17
text run at (545,0) width 111: "HTML <iframe>"
LayoutText {#text} at (655,0) size 9x17
text run at (655,0) width 9: ", "
LayoutInline {A} at (0,0) size 709x35 [color=#0000EE]
LayoutText {#text} at (663,0) size 709x35
text run at (663,0) width 46: "HTML"
text run at (0,18) width 58: "<object>"
LayoutText {#text} at (57,18) size 9x17
text run at (57,18) width 9: ", "
LayoutInline {A} at (0,0) size 105x17 [color=#0000EE]
LayoutText {#text} at (65,18) size 105x17
text run at (65,18) width 105: "HTML <frame>"
LayoutText {#text} at (169,18) size 9x17
text run at (169,18) width 9: ", "
LayoutInline {A} at (0,0) size 90x17 [color=#0000EE]
LayoutText {#text} at (177,18) size 90x17
text run at (177,18) width 90: "XLink embed"
LayoutText {#text} at (266,18) size 9x17
text run at (266,18) width 9: ", "
LayoutInline {A} at (0,0) size 84x17 [color=#0000EE]
LayoutText {#text} at (274,18) size 84x17
text run at (274,18) width 84: "TNG Format"
LayoutBlockFlow {H2} at (0,395.16) size 769x27
LayoutText {#text} at (0,0) size 174x26
text run at (0,0) width 174: "Unadorned Tests"
LayoutBlockFlow {UL} at (0,442.06) size 769x2808
LayoutListItem {LI} at (40,0) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 125x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 125x17
text run at (0,0) width 125: "Groups of selectors"
LayoutText {#text} at (124,0) size 32x17
text run at (124,0) width 32: " (#1)"
LayoutListItem {LI} at (40,18) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 147x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 147x17
text run at (0,0) width 147: "Type element selectors"
LayoutText {#text} at (146,0) size 32x17
text run at (146,0) width 32: " (#2)"
LayoutListItem {LI} at (40,36) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 169x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 169x17
text run at (0,0) width 169: "Omitted universal selector"
LayoutText {#text} at (168,0) size 32x17
text run at (168,0) width 32: " (#4)"
LayoutListItem {LI} at (40,54) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 176x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 176x17
text run at (0,0) width 176: "Attribute existence selector"
LayoutText {#text} at (175,0) size 31x17
text run at (175,0) width 31: " (#5)"
LayoutListItem {LI} at (40,72) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 151x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 151x17
text run at (0,0) width 151: "Attribute value selector"
LayoutText {#text} at (150,0) size 31x17
text run at (150,0) width 31: " (#6)"
LayoutListItem {LI} at (40,90) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 184x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 184x17
text run at (0,0) width 184: "Attribute multivalue selector"
LayoutText {#text} at (183,0) size 32x17
text run at (183,0) width 32: " (#7)"
LayoutListItem {LI} at (40,108) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 184x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 184x17
text run at (0,0) width 184: "Attribute multivalue selector"
LayoutText {#text} at (183,0) size 40x17
text run at (183,0) width 40: " (#7b)"
LayoutListItem {LI} at (40,126) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 348x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 348x17
text run at (0,0) width 348: "Attribute value selectors (hyphen-separated attributes)"
LayoutText {#text} at (347,0) size 32x17
text run at (347,0) width 32: " (#8)"
LayoutListItem {LI} at (40,144) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 315x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 315x17
text run at (0,0) width 315: "Substring matching attribute selector (beginning)"
LayoutText {#text} at (314,0) size 32x17
text run at (314,0) width 32: " (#9)"
LayoutListItem {LI} at (40,162) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 274x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 274x17
text run at (0,0) width 274: "Substring matching attribute selector (end)"
LayoutText {#text} at (273,0) size 40x17
text run at (273,0) width 40: " (#10)"
LayoutListItem {LI} at (40,180) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 304x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 304x17
text run at (0,0) width 304: "Substring matching attribute selector (contains)"
LayoutText {#text} at (303,0) size 39x17
text run at (303,0) width 39: " (#11)"
LayoutListItem {LI} at (40,198) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 144x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 144x17
text run at (0,0) width 144: "Default attribute value"
LayoutText {#text} at (143,0) size 40x17
text run at (143,0) width 40: " (#12)"
LayoutListItem {LI} at (40,216) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 95x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 95x17
text run at (0,0) width 95: "Class selectors"
LayoutText {#text} at (94,0) size 40x17
text run at (94,0) width 40: " (#13)"
LayoutListItem {LI} at (40,234) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 183x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 183x17
text run at (0,0) width 183: "More than one class selector"
LayoutText {#text} at (182,0) size 39x17
text run at (182,0) width 39: " (#14)"
LayoutListItem {LI} at (40,252) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 77x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 77x17
text run at (0,0) width 77: "ID selectors"
LayoutText {#text} at (76,0) size 40x17
text run at (76,0) width 40: " (#15)"
LayoutListItem {LI} at (40,270) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 116x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 116x17
text run at (0,0) width 116: ":link pseudo-class"
LayoutText {#text} at (115,0) size 39x17
text run at (115,0) width 39: " (#16)"
LayoutListItem {LI} at (40,288) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 133x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 133x17
text run at (0,0) width 133: ":visited pseudo-class"
LayoutText {#text} at (132,0) size 40x17
text run at (132,0) width 40: " (#17)"
LayoutListItem {LI} at (40,306) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 127x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 127x17
text run at (0,0) width 127: ":hover pseudo-class"
LayoutText {#text} at (126,0) size 40x17
text run at (126,0) width 40: " (#18)"
LayoutListItem {LI} at (40,324) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 127x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 127x17
text run at (0,0) width 127: ":hover pseudo-class"
LayoutText {#text} at (126,0) size 48x17
text run at (126,0) width 48: " (#18b)"
LayoutListItem {LI} at (40,342) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 129x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 129x17
text run at (0,0) width 129: ":active pseudo-class"
LayoutText {#text} at (128,0) size 40x17
text run at (128,0) width 40: " (#19)"
LayoutListItem {LI} at (40,360) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 125x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 125x17
text run at (0,0) width 125: ":focus pseudo-class"
LayoutText {#text} at (124,0) size 40x17
text run at (124,0) width 40: " (#20)"
LayoutListItem {LI} at (40,378) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 127x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 127x17
text run at (0,0) width 127: ":target pseudo-class"
LayoutText {#text} at (126,0) size 39x17
text run at (126,0) width 39: " (#21)"
LayoutListItem {LI} at (40,396) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 127x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 127x17
text run at (0,0) width 127: ":target pseudo-class"
LayoutText {#text} at (126,0) size 47x17
text run at (126,0) width 47: " (#21b)"
LayoutListItem {LI} at (40,414) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 127x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 127x17
text run at (0,0) width 127: ":target pseudo-class"
LayoutText {#text} at (126,0) size 47x17
text run at (126,0) width 47: " (#21c)"
LayoutListItem {LI} at (40,432) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 129x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 129x17
text run at (0,0) width 129: ":lang() pseudo-class"
LayoutText {#text} at (128,0) size 40x17
text run at (128,0) width 40: " (#22)"
LayoutListItem {LI} at (40,450) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 140x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 140x17
text run at (0,0) width 140: ":enabled pseudo-class"
LayoutText {#text} at (139,0) size 40x17
text run at (139,0) width 40: " (#23)"
LayoutListItem {LI} at (40,468) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 144x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 144x17
text run at (0,0) width 144: ":disabled pseudo-class"
LayoutText {#text} at (143,0) size 40x17
text run at (143,0) width 40: " (#24)"
LayoutListItem {LI} at (40,486) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 143x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 143x17
text run at (0,0) width 143: ":checked pseudo-class"
LayoutText {#text} at (142,0) size 40x17
text run at (142,0) width 40: " (#25)"
LayoutListItem {LI} at (40,504) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 116x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 116x17
text run at (0,0) width 116: ":root pseudo-class"
LayoutText {#text} at (115,0) size 40x17
text run at (115,0) width 40: " (#27)"
LayoutListItem {LI} at (40,522) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 159x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 159x17
text run at (0,0) width 159: ":nth-child() pseudo-class"
LayoutText {#text} at (158,0) size 40x17
text run at (158,0) width 40: " (#28)"
LayoutListItem {LI} at (40,540) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 159x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 159x17
text run at (0,0) width 159: ":nth-child() pseudo-class"
LayoutText {#text} at (158,0) size 48x17
text run at (158,0) width 48: " (#28b)"
LayoutListItem {LI} at (40,558) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 187x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 187x17
text run at (0,0) width 187: ":nth-last-child() pseudo-class"
LayoutText {#text} at (186,0) size 39x17
text run at (186,0) width 39: " (#29)"
LayoutListItem {LI} at (40,576) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 187x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 187x17
text run at (0,0) width 187: ":nth-last-child() pseudo-class"
LayoutText {#text} at (186,0) size 47x17
text run at (186,0) width 47: " (#29b)"
LayoutListItem {LI} at (40,594) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 173x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 173x17
text run at (0,0) width 173: ":nth-of-type() pseudo-class"
LayoutText {#text} at (172,0) size 40x17
text run at (172,0) width 40: " (#30)"
LayoutListItem {LI} at (40,612) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 201x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 201x17
text run at (0,0) width 201: ":nth-last-of-type() pseudo-class"
LayoutText {#text} at (200,0) size 40x17
text run at (200,0) width 40: " (#31)"
LayoutListItem {LI} at (40,630) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 154x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 154x17
text run at (0,0) width 154: ":first-child pseudo-class"
LayoutText {#text} at (153,0) size 39x17
text run at (153,0) width 39: " (#32)"
LayoutListItem {LI} at (40,648) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 150x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 150x17
text run at (0,0) width 150: ":last-child pseudo-class"
LayoutText {#text} at (149,0) size 40x17
text run at (149,0) width 40: " (#33)"
LayoutListItem {LI} at (40,666) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 168x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 168x17
text run at (0,0) width 168: ":first-of-type pseudo-class"
LayoutText {#text} at (167,0) size 40x17
text run at (167,0) width 40: " (#34)"
LayoutListItem {LI} at (40,684) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 164x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 164x17
text run at (0,0) width 164: ":last-of-type pseudo-class"
LayoutText {#text} at (163,0) size 40x17
text run at (163,0) width 40: " (#35)"
LayoutListItem {LI} at (40,702) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: ":only-child pseudo-class"
LayoutText {#text} at (155,0) size 40x17
text run at (155,0) width 40: " (#36)"
LayoutListItem {LI} at (40,720) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 171x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 171x17
text run at (0,0) width 171: ":only-of-type pseudo-class"
LayoutText {#text} at (170,0) size 39x17
text run at (170,0) width 39: " (#37)"
LayoutListItem {LI} at (40,738) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 170x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 170x17
text run at (0,0) width 170: "::first-line pseudo-element"
LayoutText {#text} at (169,0) size 39x17
text run at (169,0) width 39: " (#38)"
LayoutListItem {LI} at (40,756) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 179x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 179x17
text run at (0,0) width 179: "::first-letter pseudo-element"
LayoutText {#text} at (178,0) size 39x17
text run at (178,0) width 39: " (#39)"
LayoutListItem {LI} at (40,774) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 370x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 370x17
text run at (0,0) width 370: "::first-letter pseudo-element with ::before pseudo-element"
LayoutText {#text} at (369,0) size 47x17
text run at (369,0) width 47: " (#39a)"
LayoutListItem {LI} at (40,792) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 370x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 370x17
text run at (0,0) width 370: "::first-letter pseudo-element with ::before pseudo-element"
LayoutText {#text} at (369,0) size 47x17
text run at (369,0) width 47: " (#39a)"
LayoutListItem {LI} at (40,810) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 179x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 179x17
text run at (0,0) width 179: "::first-letter pseudo-element"
LayoutText {#text} at (178,0) size 47x17
text run at (178,0) width 47: " (#39b)"
LayoutListItem {LI} at (40,828) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 172x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 172x17
text run at (0,0) width 172: "::selection pseudo-element"
LayoutText {#text} at (171,0) size 39x17
text run at (171,0) width 39: " (#40)"
LayoutListItem {LI} at (40,846) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "::before pseudo-element"
LayoutText {#text} at (155,0) size 39x17
text run at (155,0) width 39: " (#41)"
LayoutListItem {LI} at (40,864) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 144x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 144x17
text run at (0,0) width 144: "::after pseudo-element"
LayoutText {#text} at (143,0) size 40x17
text run at (143,0) width 40: " (#42)"
LayoutListItem {LI} at (40,882) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 152x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 152x17
text run at (0,0) width 152: "Descendant combinator"
LayoutText {#text} at (151,0) size 40x17
text run at (151,0) width 40: " (#43)"
LayoutListItem {LI} at (40,900) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 152x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 152x17
text run at (0,0) width 152: "Descendant combinator"
LayoutText {#text} at (151,0) size 48x17
text run at (151,0) width 48: " (#43b)"
LayoutListItem {LI} at (40,918) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 113x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 113x17
text run at (0,0) width 113: "Child combinator"
LayoutText {#text} at (112,0) size 40x17
text run at (112,0) width 40: " (#44)"
LayoutListItem {LI} at (40,936) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 113x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 113x17
text run at (0,0) width 113: "Child combinator"
LayoutText {#text} at (112,0) size 48x17
text run at (112,0) width 48: " (#44b)"
LayoutListItem {LI} at (40,954) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 188x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 188x17
text run at (0,0) width 188: "Child combinator and classes"
LayoutText {#text} at (187,0) size 47x17
text run at (187,0) width 47: " (#44c)"
LayoutListItem {LI} at (40,972) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 172x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 172x17
text run at (0,0) width 172: "Child combinatior and IDs"
LayoutText {#text} at (171,0) size 47x17
text run at (171,0) width 47: " (#44d)"
LayoutListItem {LI} at (40,990) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 175x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 175x17
text run at (0,0) width 175: "Direct adjacent combinator"
LayoutText {#text} at (174,0) size 39x17
text run at (174,0) width 39: " (#45)"
LayoutListItem {LI} at (40,1008) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 175x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 175x17
text run at (0,0) width 175: "Direct adjacent combinator"
LayoutText {#text} at (174,0) size 47x17
text run at (174,0) width 47: " (#45b)"
LayoutListItem {LI} at (40,1026) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 250x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 250x17
text run at (0,0) width 250: "Direct adjacent combinator and classes"
LayoutText {#text} at (249,0) size 47x17
text run at (249,0) width 47: " (#45c)"
LayoutListItem {LI} at (40,1044) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 184x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 184x17
text run at (0,0) width 184: "Indirect adjacent combinator"
LayoutText {#text} at (183,0) size 40x17
text run at (183,0) width 40: " (#46)"
LayoutListItem {LI} at (40,1062) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 184x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 184x17
text run at (0,0) width 184: "Indirect adjacent combinator"
LayoutText {#text} at (183,0) size 48x17
text run at (183,0) width 48: " (#46b)"
LayoutListItem {LI} at (40,1080) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 400x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 400x17
text run at (0,0) width 400: "NEGATED substring matching attribute selector on beginning"
LayoutText {#text} at (399,0) size 39x17
text run at (399,0) width 39: " (#54)"
LayoutListItem {LI} at (40,1098) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 359x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 359x17
text run at (0,0) width 359: "NEGATED substring matching attribute selector on end"
LayoutText {#text} at (358,0) size 39x17
text run at (358,0) width 39: " (#55)"
LayoutListItem {LI} at (40,1116) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 380x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 380x17
text run at (0,0) width 380: "NEGATED substring matching attribute selector on middle"
LayoutText {#text} at (379,0) size 40x17
text run at (379,0) width 40: " (#56)"
LayoutListItem {LI} at (40,1134) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 316x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 316x17
text run at (0,0) width 316: "Default attribute value and negation pseudo-class"
LayoutText {#text} at (315,0) size 40x17
text run at (315,0) width 40: " (#58)"
LayoutListItem {LI} at (40,1152) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 163x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 163x17
text run at (0,0) width 163: "NEGATED class selector"
LayoutText {#text} at (162,0) size 40x17
text run at (162,0) width 40: " (#59)"
LayoutListItem {LI} at (40,1170) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 149x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 149x17
text run at (0,0) width 149: "NEGATED ID selector"
LayoutText {#text} at (148,0) size 40x17
text run at (148,0) width 40: " (#60)"
LayoutListItem {LI} at (40,1188) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 193x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 193x17
text run at (0,0) width 193: "NEGATED :link pseudo-class"
LayoutText {#text} at (192,0) size 40x17
text run at (192,0) width 40: " (#61)"
LayoutListItem {LI} at (40,1206) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 211x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 211x17
text run at (0,0) width 211: "NEGATED :visited pseudo-class"
LayoutText {#text} at (210,0) size 40x17
text run at (210,0) width 40: " (#62)"
LayoutListItem {LI} at (40,1224) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 205x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 205x17
text run at (0,0) width 205: "NEGATED :hover pseudo-class"
LayoutText {#text} at (204,0) size 40x17
text run at (204,0) width 40: " (#63)"
LayoutListItem {LI} at (40,1242) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 207x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 207x17
text run at (0,0) width 207: "NEGATED :active pseudo-class"
LayoutText {#text} at (206,0) size 39x17
text run at (206,0) width 39: " (#64)"
LayoutListItem {LI} at (40,1260) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 203x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 203x17
text run at (0,0) width 203: "NEGATED :focus pseudo-class"
LayoutText {#text} at (202,0) size 40x17
text run at (202,0) width 40: " (#65)"
LayoutListItem {LI} at (40,1278) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 205x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 205x17
text run at (0,0) width 205: "NEGATED :target pseudo-class"
LayoutText {#text} at (204,0) size 39x17
text run at (204,0) width 39: " (#66)"
LayoutListItem {LI} at (40,1296) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 205x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 205x17
text run at (0,0) width 205: "NEGATED :target pseudo-class"
LayoutText {#text} at (204,0) size 47x17
text run at (204,0) width 47: " (#66b)"
LayoutListItem {LI} at (40,1314) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 207x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 207x17
text run at (0,0) width 207: "NEGATED :lang() pseudo-class"
LayoutText {#text} at (206,0) size 39x17
text run at (206,0) width 39: " (#67)"
LayoutListItem {LI} at (40,1332) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 221x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 221x17
text run at (0,0) width 221: "NEGATED :checked pseudo-class"
LayoutText {#text} at (220,0) size 40x17
text run at (220,0) width 40: " (#70)"
LayoutListItem {LI} at (40,1350) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 194x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 194x17
text run at (0,0) width 194: "NEGATED :root pseudo-class"
LayoutText {#text} at (193,0) size 40x17
text run at (193,0) width 40: " (#72)"
LayoutListItem {LI} at (40,1368) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 194x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 194x17
text run at (0,0) width 194: "NEGATED :root pseudo-class"
LayoutText {#text} at (193,0) size 48x17
text run at (193,0) width 48: " (#72b)"
LayoutListItem {LI} at (40,1386) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 237x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 237x17
text run at (0,0) width 237: "NEGATED :nth-child() pseudo-class"
LayoutText {#text} at (236,0) size 40x17
text run at (236,0) width 40: " (#73)"
LayoutListItem {LI} at (40,1404) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 237x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 237x17
text run at (0,0) width 237: "NEGATED :nth-child() pseudo-class"
LayoutText {#text} at (236,0) size 48x17
text run at (236,0) width 48: " (#73b)"
LayoutListItem {LI} at (40,1422) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 264x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 264x17
text run at (0,0) width 264: "NEGATED :nth-last-child() pseudo-class"
LayoutText {#text} at (263,0) size 40x17
text run at (263,0) width 40: " (#74)"
LayoutListItem {LI} at (40,1440) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 264x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 264x17
text run at (0,0) width 264: "NEGATED :nth-last-child() pseudo-class"
LayoutText {#text} at (263,0) size 48x17
text run at (263,0) width 48: " (#74b)"
LayoutListItem {LI} at (40,1458) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 251x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 251x17
text run at (0,0) width 251: "NEGATED :nth-of-type() pseudo-class"
LayoutText {#text} at (250,0) size 40x17
text run at (250,0) width 40: " (#75)"
LayoutListItem {LI} at (40,1476) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 251x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 251x17
text run at (0,0) width 251: "NEGATED :nth-of-type() pseudo-class"
LayoutText {#text} at (250,0) size 48x17
text run at (250,0) width 48: " (#75b)"
LayoutListItem {LI} at (40,1494) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 279x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 279x17
text run at (0,0) width 279: "NEGATED :nth-last-of-type() pseudo-class"
LayoutText {#text} at (278,0) size 39x17
text run at (278,0) width 39: " (#76)"
LayoutListItem {LI} at (40,1512) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 279x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 279x17
text run at (0,0) width 279: "NEGATED :nth-last-of-type() pseudo-class"
LayoutText {#text} at (278,0) size 47x17
text run at (278,0) width 47: " (#76b)"
LayoutListItem {LI} at (40,1530) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 232x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 232x17
text run at (0,0) width 232: "NEGATED :first-child pseudo-class"
LayoutText {#text} at (231,0) size 39x17
text run at (231,0) width 39: " (#77)"
LayoutListItem {LI} at (40,1548) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 232x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 232x17
text run at (0,0) width 232: "NEGATED :first-child pseudo-class"
LayoutText {#text} at (231,0) size 47x17
text run at (231,0) width 47: " (#77b)"
LayoutListItem {LI} at (40,1566) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 228x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 228x17
text run at (0,0) width 228: "NEGATED :last-child pseudo-class"
LayoutText {#text} at (227,0) size 40x17
text run at (227,0) width 40: " (#78)"
LayoutListItem {LI} at (40,1584) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 228x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 228x17
text run at (0,0) width 228: "NEGATED :last-child pseudo-class"
LayoutText {#text} at (227,0) size 48x17
text run at (227,0) width 48: " (#78b)"
LayoutListItem {LI} at (40,1602) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 246x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 246x17
text run at (0,0) width 246: "NEGATED :first-of-type pseudo-class"
LayoutText {#text} at (245,0) size 39x17
text run at (245,0) width 39: " (#79)"
LayoutListItem {LI} at (40,1620) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 242x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 242x17
text run at (0,0) width 242: "NEGATED :last-of-type pseudo-class"
LayoutText {#text} at (241,0) size 40x17
text run at (241,0) width 40: " (#80)"
LayoutListItem {LI} at (40,1638) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 234x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 234x17
text run at (0,0) width 234: "NEGATED :only-child pseudo-class"
LayoutText {#text} at (233,0) size 40x17
text run at (233,0) width 40: " (#81)"
LayoutListItem {LI} at (40,1656) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 234x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 234x17
text run at (0,0) width 234: "NEGATED :only-child pseudo-class"
LayoutText {#text} at (233,0) size 48x17
text run at (233,0) width 48: " (#81b)"
LayoutListItem {LI} at (40,1674) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 248x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 248x17
text run at (0,0) width 248: "NEGATED :only-of-type pseudo-class"
LayoutText {#text} at (247,0) size 40x17
text run at (247,0) width 40: " (#82)"
LayoutListItem {LI} at (40,1692) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 248x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 248x17
text run at (0,0) width 248: "NEGATED :only-of-type pseudo-class"
LayoutText {#text} at (247,0) size 48x17
text run at (247,0) width 48: " (#82b)"
LayoutListItem {LI} at (40,1710) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 347x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 347x17
text run at (0,0) width 347: "Negation pseudo-class cannot be an argument of itself"
LayoutText {#text} at (346,0) size 40x17
text run at (346,0) width 40: " (#83)"
LayoutListItem {LI} at (40,1728) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 155x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 155x17
text run at (0,0) width 155: ":contains() pseudo-class"
LayoutText {#text} at (154,0) size 39x17
text run at (154,0) width 39: " (#84)"
LayoutListItem {LI} at (40,1746) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 155x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 155x17
text run at (0,0) width 155: ":contains() pseudo-class"
LayoutText {#text} at (154,0) size 47x17
text run at (154,0) width 47: " (#84b)"
LayoutListItem {LI} at (40,1764) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 232x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 232x17
text run at (0,0) width 232: "NEGATED :contains() pseudo-class"
LayoutText {#text} at (231,0) size 40x17
text run at (231,0) width 40: " (#85)"
LayoutListItem {LI} at (40,1782) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 453x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 453x17
text run at (0,0) width 453: "Nondeterministic matching of direct and indirect adjacent combinators"
LayoutText {#text} at (452,0) size 40x17
text run at (452,0) width 40: " (#87)"
LayoutListItem {LI} at (40,1800) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 453x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 453x17
text run at (0,0) width 453: "Nondeterministic matching of direct and indirect adjacent combinators"
LayoutText {#text} at (452,0) size 48x17
text run at (452,0) width 48: " (#87b)"
LayoutListItem {LI} at (40,1818) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 475x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 475x17
text run at (0,0) width 475: "Nondeterministic matching of descendant and direct adjacent combinators"
LayoutText {#text} at (474,0) size 40x17
text run at (474,0) width 40: " (#88)"
LayoutListItem {LI} at (40,1836) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 475x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 475x17
text run at (0,0) width 475: "Nondeterministic matching of descendant and direct adjacent combinators"
LayoutText {#text} at (474,0) size 48x17
text run at (474,0) width 48: " (#88b)"
LayoutListItem {LI} at (40,1854) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 368x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 368x17
text run at (0,0) width 368: "Simple combination of descendant and child combinators"
LayoutText {#text} at (367,0) size 40x17
text run at (367,0) width 40: " (#89)"
LayoutListItem {LI} at (40,1872) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 408x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 408x17
text run at (0,0) width 408: "Simple combination of direct and indirect adjacent combinators"
LayoutText {#text} at (407,0) size 40x17
text run at (407,0) width 40: " (#90)"
LayoutListItem {LI} at (40,1890) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 408x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 408x17
text run at (0,0) width 408: "Simple combination of direct and indirect adjacent combinators"
LayoutText {#text} at (407,0) size 48x17
text run at (407,0) width 48: " (#90b)"
LayoutListItem {LI} at (40,1908) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 289x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 289x17
text run at (0,0) width 289: "NEGATED :enabled:disabled pseudo-classes"
LayoutText {#text} at (288,0) size 48x17
text run at (288,0) width 48: " (#144)"
LayoutListItem {LI} at (40,1926) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 186x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 186x17
text run at (0,0) width 186: ":empty pseudo-class and text"
LayoutText {#text} at (185,0) size 47x17
text run at (185,0) width 47: " (#148)"
LayoutListItem {LI} at (40,1944) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 263x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 263x17
text run at (0,0) width 263: ":empty pseudo-class and empty elements"
LayoutText {#text} at (262,0) size 47x17
text run at (262,0) width 47: " (#149)"
LayoutListItem {LI} at (40,1962) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 263x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 263x17
text run at (0,0) width 263: ":empty pseudo-class and empty elements"
LayoutText {#text} at (262,0) size 55x17
text run at (262,0) width 55: " (#149b)"
LayoutListItem {LI} at (40,1980) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 233x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 233x17
text run at (0,0) width 233: ":empty pseudo-class and whitespace"
LayoutText {#text} at (232,0) size 48x17
text run at (232,0) width 48: " (#151)"
LayoutListItem {LI} at (40,1998) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 219x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 219x17
text run at (0,0) width 219: ":empty pseudo-class and elements"
LayoutText {#text} at (218,0) size 47x17
text run at (218,0) width 47: " (#152)"
LayoutListItem {LI} at (40,2016) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 48x17
text run at (122,0) width 48: " (#154)"
LayoutListItem {LI} at (40,2034) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 48x17
text run at (122,0) width 48: " (#155)"
LayoutListItem {LI} at (40,2052) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 55x17
text run at (122,0) width 55: " (#155a)"
LayoutListItem {LI} at (40,2070) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 56x17
text run at (122,0) width 56: " (#155b)"
LayoutListItem {LI} at (40,2088) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 55x17
text run at (122,0) width 55: " (#155c)"
LayoutListItem {LI} at (40,2106) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 56x17
text run at (122,0) width 56: " (#155d)"
LayoutListItem {LI} at (40,2124) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 48x17
text run at (122,0) width 48: " (#156)"
LayoutListItem {LI} at (40,2142) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 56x17
text run at (122,0) width 56: " (#156b)"
LayoutListItem {LI} at (40,2160) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 55x17
text run at (122,0) width 55: " (#156c)"
LayoutListItem {LI} at (40,2178) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 48x17
text run at (122,0) width 48: " (#157)"
LayoutListItem {LI} at (40,2196) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 123x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 123x17
text run at (0,0) width 123: "Syntax and parsing"
LayoutText {#text} at (122,0) size 48x17
text run at (122,0) width 48: " (#158)"
LayoutListItem {LI} at (40,2214) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 283x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 283x17
text run at (0,0) width 283: "Syntax and parsing of new pseudo-elements"
LayoutText {#text} at (282,0) size 47x17
text run at (282,0) width 47: " (#159)"
LayoutListItem {LI} at (40,2232) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 303x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 303x17
text run at (0,0) width 303: "Syntax and parsing of unknown pseudo-classes"
LayoutText {#text} at (302,0) size 48x17
text run at (302,0) width 48: " (#160)"
LayoutListItem {LI} at (40,2250) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 442x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 442x17
text run at (0,0) width 442: "Syntax and parsing of unknown pseudo-classes and pseudo-elements"
LayoutText {#text} at (441,0) size 47x17
text run at (441,0) width 47: " (#161)"
LayoutListItem {LI} at (40,2268) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 140x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 140x17
text run at (0,0) width 140: "Contextual ::selection"
LayoutText {#text} at (139,0) size 48x17
text run at (139,0) width 48: " (#162)"
LayoutListItem {LI} at (40,2286) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 132x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 132x17
text run at (0,0) width 132: "Contextual :contains"
LayoutText {#text} at (131,0) size 48x17
text run at (131,0) width 48: " (#163)"
LayoutListItem {LI} at (40,2304) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 142x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 142x17
text run at (0,0) width 142: ":focus with ::selection"
LayoutText {#text} at (141,0) size 47x17
text run at (141,0) width 47: " (#164)"
LayoutListItem {LI} at (40,2322) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 144x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 144x17
text run at (0,0) width 144: ":hover with ::selection"
LayoutText {#text} at (143,0) size 47x17
text run at (143,0) width 47: " (#165)"
LayoutListItem {LI} at (40,2340) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 178x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 178x17
text run at (0,0) width 178: ":first-letter with ::first-letter"
LayoutText {#text} at (177,0) size 48x17
text run at (177,0) width 48: " (#166)"
LayoutListItem {LI} at (40,2358) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 178x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 178x17
text run at (0,0) width 178: ":first-letter with ::first-letter"
LayoutText {#text} at (177,0) size 55x17
text run at (177,0) width 55: " (#166a)"
LayoutListItem {LI} at (40,2376) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 160x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 160x17
text run at (0,0) width 160: ":first-line with ::first-line"
LayoutText {#text} at (159,0) size 48x17
text run at (159,0) width 48: " (#167)"
LayoutListItem {LI} at (40,2394) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 160x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 160x17
text run at (0,0) width 160: ":first-line with ::first-line"
LayoutText {#text} at (159,0) size 55x17
text run at (159,0) width 55: " (#167a)"
LayoutListItem {LI} at (40,2412) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 132x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 132x17
text run at (0,0) width 132: ":before with ::before"
LayoutText {#text} at (131,0) size 48x17
text run at (131,0) width 48: " (#168)"
LayoutListItem {LI} at (40,2430) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 132x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 132x17
text run at (0,0) width 132: ":before with ::before"
LayoutText {#text} at (131,0) size 55x17
text run at (131,0) width 55: " (#168a)"
LayoutListItem {LI} at (40,2448) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 109x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 109x17
text run at (0,0) width 109: ":after with ::after"
LayoutText {#text} at (108,0) size 48x17
text run at (108,0) width 48: " (#169)"
LayoutListItem {LI} at (40,2466) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 109x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 109x17
text run at (0,0) width 109: ":after with ::after"
LayoutText {#text} at (108,0) size 55x17
text run at (108,0) width 55: " (#169a)"
LayoutListItem {LI} at (40,2484) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "Long chains of selectors"
LayoutText {#text} at (155,0) size 48x17
text run at (155,0) width 48: " (#170)"
LayoutListItem {LI} at (40,2502) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "Long chains of selectors"
LayoutText {#text} at (155,0) size 55x17
text run at (155,0) width 55: " (#170a)"
LayoutListItem {LI} at (40,2520) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "Long chains of selectors"
LayoutText {#text} at (155,0) size 56x17
text run at (155,0) width 56: " (#170b)"
LayoutListItem {LI} at (40,2538) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "Long chains of selectors"
LayoutText {#text} at (155,0) size 55x17
text run at (155,0) width 55: " (#170c)"
LayoutListItem {LI} at (40,2556) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 156x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 156x17
text run at (0,0) width 156: "Long chains of selectors"
LayoutText {#text} at (155,0) size 56x17
text run at (155,0) width 56: " (#170d)"
LayoutListItem {LI} at (40,2574) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 180x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 180x17
text run at (0,0) width 180: "Parsing: Numbers in classes"
LayoutText {#text} at (179,0) size 55x17
text run at (179,0) width 55: " (#175a)"
LayoutListItem {LI} at (40,2592) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 180x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 180x17
text run at (0,0) width 180: "Parsing: Numbers in classes"
LayoutText {#text} at (179,0) size 56x17
text run at (179,0) width 56: " (#175b)"
LayoutListItem {LI} at (40,2610) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 180x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 180x17
text run at (0,0) width 180: "Parsing: Numbers in classes"
LayoutText {#text} at (179,0) size 55x17
text run at (179,0) width 55: " (#175c)"
LayoutListItem {LI} at (40,2628) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 263x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 263x17
text run at (0,0) width 263: "NEGATED Dynamic handling of :empty"
LayoutText {#text} at (262,0) size 39x17
text run at (262,0) width 39: " (#d1)"
LayoutListItem {LI} at (40,2646) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 263x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 263x17
text run at (0,0) width 263: "NEGATED Dynamic handling of :empty"
LayoutText {#text} at (262,0) size 47x17
text run at (262,0) width 47: " (#d1b)"
LayoutListItem {LI} at (40,2664) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 220x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 220x17
text run at (0,0) width 220: "Dynamic handling of combinators"
LayoutText {#text} at (219,0) size 39x17
text run at (219,0) width 39: " (#d2)"
LayoutListItem {LI} at (40,2682) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 303x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 303x17
text run at (0,0) width 303: "Dynamic updating of :first-child and :last-child"
LayoutText {#text} at (302,0) size 40x17
text run at (302,0) width 40: " (#d4)"
LayoutListItem {LI} at (40,2700) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 93x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 93x17
text run at (0,0) width 93: ":indeterminate"
LayoutText {#text} at (92,0) size 40x17
text run at (92,0) width 40: " (#d5)"
LayoutListItem {LI} at (40,2718) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 181x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 181x17
text run at (0,0) width 181: ":indeterminate and :checked"
LayoutText {#text} at (180,0) size 47x17
text run at (180,0) width 47: " (#d5a)"
LayoutListItem {LI} at (40,2736) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 259x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 259x17
text run at (0,0) width 259: "NEGATED :indeterminate and :checked"
LayoutText {#text} at (258,0) size 47x17
text run at (258,0) width 47: " (#d5b)"
LayoutListItem {LI} at (40,2754) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 181x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 181x17
text run at (0,0) width 181: ":indeterminate and :checked"
LayoutText {#text} at (180,0) size 47x17
text run at (180,0) width 47: " (#d5c)"
LayoutListItem {LI} at (40,2772) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 186x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 186x17
text run at (0,0) width 186: ":indeterminate with :checked"
LayoutText {#text} at (185,0) size 48x17
text run at (185,0) width 48: " (#d5d)"
LayoutListItem {LI} at (40,2790) size 729x18
LayoutListMarker (anonymous) at (-17,0) size 7x17: bullet
LayoutInline {A} at (0,0) size 264x17 [color=#0000EE]
LayoutText {#text} at (0,0) size 264x17
text run at (0,0) width 264: "NEGATED :indeterminate with :checked"
LayoutText {#text} at (263,0) size 47x17
text run at (263,0) width 47: " (#d5e)"
LayoutBlockFlow {P} at (0,3266.06) size 769x18
LayoutText {#text} at (0,0) size 62x17
text run at (0,0) width 62: "See also: "
LayoutInline {A} at (0,0) size 37x17 [color=#0000EE]
LayoutText {#text} at (61,0) size 37x17
text run at (61,0) width 37: "Index"
LayoutText {#text} at (97,0) size 9x17
text run at (97,0) width 9: ", "
LayoutInline {A} at (0,0) size 58x17 [color=#0000EE]
LayoutText {#text} at (105,0) size 58x17
text run at (105,0) width 58: "XHTML"
LayoutText {#text} at (162,0) size 9x17
text run at (162,0) width 9: ", "
LayoutInline {A} at (0,0) size 37x17 [color=#0000EE]
LayoutText {#text} at (170,0) size 37x17
text run at (170,0) width 37: "XML"
|