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
|
(ilayouttest_analyzer_helpers
AnalyzerResultMap
p0
(dp1
S'result_map'
p2
(dp3
S'skip'
p4
(dp5
S'media/video-does-not-loop.html'
p6
(dp7
S'te_info'
p8
(lp9
(dp10
S'SKIP'
p11
I01
sS'WONTFIX'
p12
I01
sS'Comments'
p13
S" Doesn't apply to Chromium (QuickTime-specific behavior)"
p14
sS'TIMEOUT'
p15
I01
sasS'desc'
p16
S"Test to make sure QuickTime movie saved with 'loop' user data does not loop automatically."
p17
ssS'media/audio-delete-while-step-button-clicked.html'
p18
(dp19
g8
(lp20
(dp21
S'FAIL'
p22
I01
sg11
I01
sS'Bugs'
p23
(lp24
S'BUGCR25375'
p25
aS'BUGCR59399'
p26
asg13
S" Failing because we sometimes emit additional timeupdate events. Test might be WONTFIX because we don't export a step button in the first place."
p27
sasg16
S"This tests that events don't continue to target a step button if the media element is deleted while mouse down on button."
p28
ssS'media/restore-from-page-cache.html'
p29
(dp30
g8
(lp31
(dp32
g11
I01
sg12
I01
sg13
S' Page Cache - based tests. Chromium disables page cache because the WebKit page cache keeps previously loaded pages alive in memory to be able to quickly substitute them when user clicks History buttons. Chromium wants those to be separate navigations made via browser process to be able to make decision on which renderer process to use for each of them.'
p33
sg15
I01
sg23
(lp34
S'BUGCR19635'
p35
asasg16
S"Make sure we don't reload a <video> element when navigating back to an uncached page."
p36
ssS'media/context-menu-actions.html'
p37
(dp38
g8
(lp39
(dp40
S'CRASH'
p41
I01
sg11
I01
sg23
(lp42
S'BUGCR59665'
p43
aS'BUGWK45021'
p44
asg13
S' BUGCR59415 : cannot repro the flakiness This test needs enhanced eventSender.contextMenu() return value. See https:bugs.webkit.org/show_bug.cgi?id=45021 for more info. UNIMPLEMENTED for chrome'
p45
sg15
I01
sS'PASS'
p46
I01
sasg16
S'Test the various actions available in the HTML5 media element context-menu.'
p47
ssS'media/track/track-webvtt-tc005-headercomment.html'
p48
(dp49
g8
(lp50
(dp51
g11
I01
sg13
S' Tests for WebVTT parser for <track>. Feature is not yet functional.'
p52
sg15
I01
sg23
(lp53
S'BUGWK43668'
p54
asasg16
S'Tests that the optional comment area under the "WEBVTT" file header is properly ignored. Also, default settings and styling are currently ignored (treated as faulty cues).'
p55
ssS'http/tests/media/video-cross-site.html'
p56
(dp57
g8
(lp58
(dp59
g11
I01
sg13
S' QuickTime reference movies not supported.'
p60
sg15
I01
sg46
I01
sg22
I01
sg12
I01
sasg16
S'media file redirects to another site'
p61
ssS'media/audio-data-url.html'
p62
(dp63
g8
(lp64
(dp65
g11
I01
sg23
(lp66
S'BUGCR16779'
p67
asg13
S" These tests are WONTFIX because they use codecs Chromium doesn't support."
p68
sg15
I01
sg22
I01
sg12
I01
sasg16
S'Test that audio element can use a data: url'
p69
ssS'media/video-canvas-alpha.html'
p70
(dp71
g8
(lp72
(dp73
g11
I01
sS'IMAGE'
p74
I01
sg23
(lp75
S'BUGCR74979'
p76
asg13
S" Accelerated 2d for mac isn't supported yet, so SKIP this test for now."
p77
sS'MAC'
p78
I01
sS'GPU'
p79
I01
sasg16
S'UNKNOWN'
p80
ssS'media/video-can-play-type.html'
p81
(dp82
g8
(lp83
(dp84
g11
I01
sg23
(lp85
S'BUGCR16779'
p86
asg13
g68
sg15
I01
sg22
I01
sg12
I01
sasg16
S'Test HTMLMediaElement <em>canPlayType()</em> method.'
p87
ssS'media/media-captions.html'
p88
(dp89
g8
(lp90
(dp91
g11
I01
sg13
S" We haven't implemented the WebKit captioning extension. UNIMPLEMENTED"
p92
sg15
I01
sg23
(lp93
S'BUGCR28301'
p94
asasg16
S'Test media element close caption API.'
p95
ssS'media/video-size-intrinsic-scale.html'
p96
(dp97
g8
(lp98
(dp99
g11
I01
sg23
(lp100
S'BUGCR16779'
p101
asg13
g68
sg15
I01
sg22
I01
sg12
I01
sasg16
S'<video> element intrinsic size test'
p102
ssS'media/track/track-webvtt-tc011-blanklines.html'
p103
(dp104
g8
g50
sg16
S'Tests that cues are not affected by multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one big cue.'
p105
ssS'media/track/track-webvtt-tc012-outoforder.html'
p106
(dp107
g8
g50
sg16
S'Tests cues that are temporally out of order (we allow this).'
p108
ssS'media/track/track-webvtt-tc006-cueidentifiers.html'
p109
(dp110
g8
g50
sg16
S'Tests that any text other than "-->" is recognized as optional cue identifier.'
p111
ssS'media/media-can-play-mpeg-audio.html'
p112
(dp113
g8
(lp114
(dp115
g11
I01
sg12
I01
sg23
(lp116
S'BUGCR16779'
p117
asg13
g68
sS'TEXT'
p118
I01
sasg16
S'Test HTMLMediaElement <em>canPlayType()</em> method with multiple mp3 MIME types.'
p119
ssS'media/audio-mpeg4-supported.html'
p120
(dp121
g8
(lp122
(dp123
g11
I01
sg23
(lp124
S'BUGCR16779'
p125
asg13
g68
sg15
I01
sg22
I01
sg12
I01
sasg16
S'Test that the audio element supports M4A files.'
p126
ssS'media/track/track-webvtt-tc004-magicheader.html'
p127
(dp128
g8
g50
sg16
S'Tests that the magic file header "WEBVTT" leads to the file properly recognized as a WebVTT file.'
p129
ssS'media/media-fullscreen-not-in-document.html'
p130
(dp131
g8
(lp132
(dp133
g11
I01
sg13
S" We haven't implemented the WebKit fullscreen extension. UNIMPLEMENTED"
p134
sg15
I01
sg23
(lp135
S'BUGCR16735'
p136
asasg16
S'Test media element fullscreen API when an element is not in the DOM.'
p137
ssS'media/audio-mpeg-supported.html'
p138
(dp139
g8
(lp140
(dp141
g11
I01
sg23
(lp142
S'BUGCR16779'
p143
asg13
g68
sg15
I01
sg22
I01
sg12
I01
sasg16
S'Test that the audio element supports MPEG files.'
p144
ssS'media/track/track-webvtt-tc003-newlines.html'
p145
(dp146
g8
g50
sg16
S'Tests that line terminators \\r, \\n, or \\r\\n are properly parsed, even when there is no newline at eof.'
p147
ssS'media/video-document-types.html'
p148
(dp149
g8
(lp150
(dp151
g11
I01
sg23
(lp152
S'BUGCR16779'
p153
asg13
g68
sg15
I01
sg22
I01
sg12
I01
sasg16
S"This tests that a standalone MPEG-4 file with 'sdsm' and 'odsm' tracks is opened in a MediaDocument."
p154
ssS'media/track/track-webvtt-tc002-bom.html'
p155
(dp156
g8
g50
sg16
S'Tests that the parser properly ignores a UTF-8 BOM character at the beginning of a file and all other cues are properly parsed.'
p157
ssS'media/media-fullscreen-inline.html'
p158
(dp159
g8
(lp160
(dp161
g11
I01
sg13
g134
sg15
I01
sg23
(lp162
S'BUGCR16735'
p163
asasg16
S'Test media element fullscreen API when an element is in the DOM.'
p164
ssS'media/track/track-webvtt-tc000-empty.html'
p165
(dp166
g8
g50
sg16
S'Tests that an empty file is not recognized as a WebVTT file.'
p167
ssS'media/media-can-play-mpeg4-video.html'
p168
(dp169
g8
(lp170
(dp171
g11
I01
sg12
I01
sg23
(lp172
S'BUGWK45102'
p173
asg13
g68
sg118
I01
sasg16
S'Test HTMLMediaElement <em>canPlayType()</em> method with'
p174
ssS'compositing/video/video-background-color.html'
p175
(dp176
g8
(lp177
(dp178
g22
I01
sg11
I01
sg12
I01
sg23
(lp179
S'BUGWK55519'
p180
asg13
S" Chromium's video codecs don't support alpha information encoded in the video data, so this test is not applicable."
p181
sasg16
S'Video with background color'
p182
ssS'media/track/track-webvtt-tc010-notimings.html'
p183
(dp184
g8
g50
sg16
S'Tests cue without timings are ignored.'
p185
ssS'media/video-timeupdate-reverse-play.html'
p186
(dp187
g8
(lp188
(dp189
g11
I01
sg13
S" We haven't implemented reverse audio/video playback. UNIMPLEMENTED BUGCR33099 Implement reverse audio/video playback"
p190
sg15
I01
sg23
(lp191
S'BUGCR33099'
p192
asasg16
S"Tests that a 'timeupdate' event is fired when a movie plays<br> in reverse to time zero."
p193
ssS'http/tests/media/video-buffered.html'
p194
(dp195
g8
(lp196
(dp197
g11
I01
sg23
(lp198
S'BUGCR49165'
p199
asg13
S' video.buffered multiple TimeRanges support.'
p200
sg46
I01
sasg16
g80
ssS'media/track/track-webvtt-tc001-utf8.html'
p201
(dp202
g8
g50
sg16
S'Tests that UTF-8 encoded characters are recognized properly and that different encodings (iconv) are not recognized as WebVTT a file (we do allow it, it just looks ugly).'
p203
ssS'media/track/track-webvtt-tc013-settings.html'
p204
(dp205
g8
g50
sg16
S'Tests WebVTT settings.'
p206
ssS'media/track/track-webvtt-tc007-cuenoid.html'
p207
(dp208
g8
g50
sg16
S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cue.'
p209
ssS'media/track/track-webvtt-tc009-timingshour.html'
p210
(dp211
g8
g50
sg16
S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timings with hours.'
p212
ssS'media/track/track-webvtt-tc008-timingsnohours.html'
p213
(dp214
g8
g50
sg16
S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors in timings without hours.'
p215
ssS'media/video-element-other-namespace-crash.html'
p216
(dp217
g8
(lp218
(dp219
g11
I01
sg12
I01
sg13
g68
sg15
I01
sg23
(lp220
S'BUGCR68289'
p221
asasg16
g80
ssS'media/video-reverse-play-duration.html'
p222
(dp223
g8
(lp224
(dp225
g11
I01
sg13
g190
sg15
I01
sg23
(lp226
S'BUGCR33099'
p227
asasg16
S'Tests that duration is not set to zero when playing in reverse to the origin.'
p228
sssS'whole'
p229
(dp230
S'media/video-source-type.html'
p231
(dp232
g16
S'<source> @type attribute'
p233
ssS'media/media-startTime.html'
p234
(dp235
g16
S"Test the, so far unused, 'startTime' attribute."
p236
ssS'media/video-src-set.html'
p237
(dp238
g16
S'Test that setting src attribute triggers load'
p239
ssg18
g19
sS'media/video-played-ranges-1.html'
p240
(dp241
g16
S"Test of the media element 'played' attribute, ranges part 1."
p242
ssS'http/tests/media/video-play-stall-seek.html'
p243
(dp244
g8
(lp245
(dp246
g13
S' Timing out.'
p247
sg15
I01
sg23
(lp248
S'BUGCR78376'
p249
asasg16
S'Test that playback can be resumed by seeking backwards after load stalls.'
p250
ssg62
g63
sg81
g82
sg88
g89
sS'media/controls-after-reload.html'
p251
(dp252
g16
S'Making sure the controller looks ok after a second load().'
p253
ssS'http/tests/media/video-referer.html'
p254
(dp255
g16
S'Tests that the media player will send the relevant referer when requesting the media file.<br/>'
p256
ssS'media/video-source-removed.html'
p257
(dp258
g16
S'consoleWrite("PASS: A crash did not occur when removing <source> elements.<br>");'
p259
ssS'media/unsupported-tracks.html'
p260
(dp261
g16
S'Test that QuickTime file with unsupported track types only generates an error.'
p262
ssg120
g121
sS'media/audio-no-installed-engines.html'
p263
(dp264
g16
S'PASSED -- crash using Audio with no installed engines bug 27479.'
p265
ssg130
g131
sS'media/video-width-height.html'
p266
(dp267
g16
g80
ssS'media/media-blocked-by-willsendrequest.html'
p268
(dp269
g16
S'consoleWrite("This test can only be run in DumpRenderTree!<br><br>");'
p270
ssS'media/video-error-does-not-exist.html'
p271
(dp272
g16
S'Test that the media element is in correct state after load fails.'
p273
ssS'media/video-play-pause-events.html'
p274
(dp275
g16
S'Test that calling play() and pause() triggers async play, timeupdate and pause events.'
p276
ssS'media/video-display-none-crash.html'
p277
(dp278
g16
S'Test that pause() after changing display to "none" doesn\'t cause a crash.'
p279
ssS'media/video-src-plus-source.html'
p280
(dp281
g16
S"Test that a <source> element is not used when a bogus 'src' attribute is present"
p282
ssS'media/video-source-none-supported.html'
p283
(dp284
g16
S'no usable <source> test'
p285
ssS'media/video-poster-blocked-by-willsendrequest.html'
p286
(dp287
g16
S'consoleWrite("<b>This test can only be run in DumpRenderTree!</b>");'
p288
ssg6
g7
sS'media/video-src.html'
p289
(dp290
g16
g80
ssg175
g176
sS'media/video-src-invalid-poster.html'
p291
(dp292
g16
g80
ssS'media/video-source-inserted.html'
p293
(dp294
g16
S'networkState after inserting <source> test'
p295
ssS'media/media-can-play-octet-stream.html'
p296
(dp297
g16
S'Test HTMLMediaElement <em>canPlayType()</em> method with "application/octet-stream".'
p298
ssS'media/constructors.html'
p299
(dp300
g16
S'Test that media constructors behave consistently.'
p301
ssS'media/video-source-media.html'
p302
(dp303
g16
g80
ssg194
g195
sS'media/video-aspect-ratio.html'
p304
(dp305
g16
S'Test video sizing. You should see one bigger image (paused video) and 7 small ones of 1/4 its size.'
p306
ssg201
g202
sS'media/video-source-type-params.html'
p307
(dp308
g16
g80
ssS'fast/canvas/webgl/context-lost.html'
p309
(dp310
g16
S'debug("Test valid context");'
p311
ssS'media/media-can-play-wav-audio.html'
p312
(dp313
g16
S'Test HTMLMediaElement <em>canPlayType()</em> method with multiple .wav MIME types.'
p314
ssS'media/video-source-error.html'
p315
(dp316
g8
(lp317
(dp318
S'DEBUG'
p319
I01
sg118
I01
sg23
(lp320
S'BUGWK66310'
p321
asg13
S''
p322
sg46
I01
sasg16
S'<video> and <source> error test'
p323
ssS'media/video-no-audio.html'
p324
(dp325
g16
S'Movie with no audio track. The volume button should not render.'
p326
ssS'media/svg-as-image-with-media-blocked.html'
p327
(dp328
g16
S'This test attempts to load foreignObject audio and video embedded in an SVG'
p329
ssS'media/video-transformed.html'
p330
(dp331
g16
S'Test painting of transformed video'
p332
ssg207
g208
sg213
g214
sS'media/video-click-dblckick-standalone.html'
p333
(dp334
g16
S'This tests that clicking on a standalone video will pause and double-clicking will play.'
p335
ssS'media/video-pause-immediately.html'
p336
(dp337
g16
S'Test that pausing the media element has an immediate effect on the clock.'
p338
ssS'fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html'
p339
(dp340
g16
g80
ssg222
g223
sS'http/tests/security/local-video-src-from-remote.html'
p341
(dp342
g16
S'This test only works in DRT'
p343
ssS'media/media-document-audio-repaint.html'
p344
(dp345
g8
(lp346
(dp347
g118
I01
sg74
I01
sg23
(lp348
S'BUGCR75354'
p349
aS'BUGWK55718'
p350
asg13
S' This test needs completely new baselines.'
p351
sS'IMAGE+TEXT'
p352
I01
sasg16
S'This tests that in a standalone media document with audio content, the media element repaints correctly'
p353
ssS'media/video-controls-in-media-document.html'
p354
(dp355
g16
g80
ssS'media/remove-from-document-no-load.html'
p356
(dp357
g16
S'Test that removing a media element from the tree when no media has been loaded does not generate a loadstart event.'
p358
ssS'media/video-currentTime.html'
p359
(dp360
g16
g80
ssS'media/video-frame-accurate-seek.html'
p361
(dp362
g8
(lp363
(dp364
g74
I01
sg23
(lp365
S'BUGCR72223'
p366
asg13
g322
sg46
I01
sasg16
S'Test that setting currentTime is frame-accurate. The three videos below should be showing frames 12, 13, and 14.'
p367
ssg29
g30
sg37
g38
sS'media/video-load-networkState.html'
p368
(dp369
g16
S'Test that setting src to an invalid url triggers load(), which sets networkState'
p370
ssg48
g49
sS'media/controls-css-overload.html'
p371
(dp372
g16
S"Testing that overloading some controls doesn't crash the browser"
p373
ssS'media/video-display-aspect-ratio.html'
p374
(dp375
g16
g80
ssS'media/video-currentTime-set.html'
p376
(dp377
g16
S"Test that setting currentTime changes the time, and that 'ended' event is fired in a reasonable amount of time"
p378
ssS'media/media-blocked-by-beforeload.html'
p379
(dp380
g8
(lp381
(dp382
g118
I01
sg23
(lp383
S'BUGWK66310'
p384
asg13
g322
sg46
I01
sasg16
S'Test to ensure that a media file blocked by a beforeload handler generates an error'
p385
ssg106
g107
sS'media/video-controls-visible-audio-only.html'
p386
(dp387
g16
S'This test only runs in DRT!'
p388
ssS'http/tests/media/video-play-progress.html'
p389
(dp390
g16
S'Test that at least one progress event is fired after starting to load the video.'
p391
ssg112
g113
sS'media/video-source-moved.html'
p392
(dp393
g16
S'moving <source> element test'
p394
ssS'http/tests/security/local-video-source-from-remote.html'
p395
(dp396
g16
S'This test only behaves correctly in DRT'
p397
ssS'media/video-src-none.html'
p398
(dp399
g16
g80
ssS'media/video-controls-zoomed.html'
p400
(dp401
g16
S'This test only runs in DRT!'
p402
ssS'media/video-controls.html'
p403
(dp404
g16
S"Test 'controls' attribute"
p405
ssS'media/controls-without-preload.html'
p406
(dp407
g16
S'The controls should not depend on preload value.'
p408
ssS'media/video-played-collapse.html'
p409
(dp410
g16
S"Test of the media element 'played' attribute"
p411
ssS'compositing/self-painting-layers.html'
p412
(dp413
g16
S'Self painting layers'
p414
ssS'media/audio-controls-do-not-fade-out.html'
p415
(dp416
g16
S'This tests that audio controls do not fade out when the audio is playing.'
p417
ssg158
g159
sS'compositing/geometry/video-opacity-overlay.html'
p418
(dp419
g16
S'Video overlay'
p420
ssS'media/video-source-error-no-candidate.html'
p421
(dp422
g16
S"Test that 'error' events are fired from <source> element when it can not be used."
p423
ssS'media/audio-constructor.html'
p424
(dp425
g16
S'Test that Audio() object loads the resource after src attribute is set and load() is called.'
p426
ssS'media/controls-styling.html'
p427
(dp428
g16
S'The look of the controls should not change.'
p429
ssS'media/event-attributes.html'
p430
(dp431
g16
g80
ssg183
g184
sg186
g187
sS'http/tests/media/text-served-as-text.html'
p432
(dp433
g16
S"text file served as 'text/plain'"
p434
ssS'http/tests/media/video-cancel-load.html'
p435
(dp436
g16
S'Cancel loading a video file and access its properties afterwards.'
p437
ssS'media/unsupported-rtsp.html'
p438
(dp439
g16
S'Test that QuickTime file with RTSP URL generates a load error.'
p440
ssS'media/media-controls-clone.html'
p441
(dp442
g16
S'<video controls id=v></video><audio controls id=a></audio>'
p443
ssS'media/broken-video.html'
p444
(dp445
g16
S'Test that QuickTime file with broken content generates an error.'
p446
ssS'media/video-plays-past-end-of-test.html'
p447
(dp448
g16
g80
ssS'http/tests/canvas/webgl/origin-clean-conformance.html'
p449
(dp450
g16
S'WebGL Origin Restrictions Conformance Tests'
p451
ssS'media/video-replaces-poster.html'
p452
(dp453
g16
S'Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=34966">https://bugs.webkit.org/show_bug.cgi?id=34966</a>. <br>'
p454
ssS'media/video-autoplay.html'
p455
(dp456
g16
g80
ssS'media/video-set-rate-from-pause.html'
p457
(dp458
g16
S'Test that setting a non-zero rate causes an async timeupdate event.'
p459
ssS'media/video-src-remove.html'
p460
(dp461
g16
S"Test that removing valid 'src' attribute DOES NOT trigger load of <source> elements"
p462
ssS'media/csp-blocks-video.html'
p463
(dp464
g16
S"This test passes if it doesn't alert failure."
p465
ssS'media/controls-drag-timebar.html'
p466
(dp467
g16
S'Test that dragging the timebar thumb causes seeks.'
p468
ssS'media/audio-constructor-preload.html'
p469
(dp470
g16
S"Test that Audio() sets 'preload' attribute."
p471
ssS'media/video-poster-delayed.html'
p472
(dp473
g16
S'Delayed load of poster should not overwrite intrinsic size of video'
p474
ssS'media/adopt-node-crash.html'
p475
(dp476
g16
S"Tests that we don't crash when moving a video element to a new document."
p477
ssS'media/video-playbackrate.html'
p478
(dp479
g16
S'test playbackRate and defaultPlaybackRate'
p480
ssS'media/video-muted.html'
p481
(dp482
g16
S"Test 'muted' attribute"
p483
ssS'media/video-src-change.html'
p484
(dp485
g16
S'1. Test that an invalid src attribute fires an error when the file fails to load.<br>'
p486
ssS'compositing/overflow/overflow-compositing-descendant.html'
p487
(dp488
g16
S'You should see a green box under the video. If you see red, the test failed.'
p489
ssg216
g217
sS'media/video-play-pause-exception.html'
p490
(dp491
g16
S'Video has no src. Test that the playing event is not dispatched.'
p492
ssS'fast/dom/shadow/frameless-media-element-crash.html'
p493
(dp494
g16
g80
ssS'media/audio-play-event.html'
p495
(dp496
g16
S"Test that a 'play' event listener is triggered when fired by a new audio element."
p497
ssS'media/before-load-member-access.html'
p498
(dp499
g16
S'Test that accessing member of a non loaded video works.'
p500
ssS'media/video-dom-src.html'
p501
(dp502
g16
g80
ssS'media/audio-repaint.html'
p503
(dp504
g16
S'This tests that in a html document with inline audio content, the media element repaints correctly'
p505
ssS'media/audio-controls-rendering.html'
p506
(dp507
g16
S'Test controls placement.'
p508
ssg204
g205
sS'fast/dom/beforeload/remove-video-in-beforeload-listener.html'
p509
(dp510
g16
S'This page tests that you can correctly remove a video object in a beforeload listener without causing a crash.'
p511
ssS'media/invalid-media-url-crash.html'
p512
(dp513
g16
S'Tests that invalid media src url does not result in crash.'
p514
ssS'media/video-empty-source.html'
p515
(dp516
g16
S'Slider drawing with no source. The controls should render correctly.'
p517
ssg96
g97
sS'media/video-poster.html'
p518
(dp519
g16
S'Test <video> element with and without a poster.'
p520
ssS'media/media-document-audio-size.html'
p521
(dp522
g16
S'This tests that in a standalone media document with audio content, the media element has non-zero'
p523
ssS'media/video-zoom.html'
p524
(dp525
g8
(lp526
(dp527
g41
I01
sg74
I01
sg23
(lp528
S'BUGCR86714'
p529
asg13
g322
sg78
I01
sg79
I01
sasg16
S'150% zoom, with width and height attributes'
p530
ssg103
g104
sS'http/tests/appcache/video.html'
p531
(dp532
g16
S'Test that <video> can be loaded from the application cache.'
p533
ssS'media/video-dom-autoplay.html'
p534
(dp535
g16
g80
ssS'media/media-ended.html'
p536
(dp537
g16
S'<b>Test ended by:</b>'
p538
ssS'media/video-no-autoplay.html'
p539
(dp540
g16
S'Test that play event does not fire when "src" set with no autoplay attribute.'
p541
ssg138
g139
sS'media/video-append-source.html'
p542
(dp543
g16
g80
ssg145
g146
sS'http/tests/media/pdf-served-as-pdf.html'
p544
(dp545
g16
S"PDF file served as 'application/pdf'"
p546
ssS'media/video-play-empty-events.html'
p547
(dp548
g16
S'Test that play() from EMPTY network state triggers load() and async play event.'
p549
ssg155
g156
sS'media/audio-only-video-intrinsic-size.html'
p550
(dp551
g16
S'This tests the intrinsic size of a video element is the default 300×150 before metadata is'
p552
ssg148
g149
sS'media/audio-delete-while-slider-thumb-clicked.html'
p553
(dp554
g16
S"This tests that events don't continue to target a slider thumb if the media element is deleted while scrubbing."
p555
ssS'media/media-can-play-ogg.html'
p556
(dp557
g16
S'Test HTMLMediaElement <em>canPlayType()</em> method for ogg media containers.'
p558
ssg127
g128
sg165
g166
sS'media/video-currentTime-set2.html'
p559
(dp560
g16
g80
ssS'media/video-seekable.html'
p561
(dp562
g16
g80
ssS'fast/dom/beforeload/video-before-load.html'
p563
(dp564
g16
g80
ssS'media/video-played-reset.html'
p565
(dp566
g16
S"Test of the media element 'played' attribute"
p567
ssS'compositing/self-painting-layers2.html'
p568
(dp569
g16
S'This test should not assert in debug builds.'
p570
ssS'media/controls-right-click-on-timebar.html'
p571
(dp572
g16
S'Test that right clicking on the timebar does not cause a seek.'
p573
ssS'media/video-dom-preload.html'
p574
(dp575
g16
S'consoleWrite("++ Test default attribute value");'
p576
ssS'media/video-size.html'
p577
(dp578
g16
S"Test <video> element size with and without 'src' and 'poster' attributes."
p579
ssS'media/video-load-preload-none.html'
p580
(dp581
g16
S'Test that an explicit load() to a media element whose preload is set to "none" still loads the video.'
p582
ssS'media/video-delay-load-event.html'
p583
(dp584
g8
(lp585
(dp586
g118
I01
sg23
(lp587
S'BUGWK64003'
p588
asg13
S' Started around WebKit r90233:r90242'
p589
sg78
I01
sg46
I01
sg319
I01
sasg16
S"Test the document's load event is delayed until a movie's meta data is available."
p590
ssS'media/fallback.html'
p591
(dp592
g16
S'Test that fallback content is not rendered'
p593
ssS'media/video-layer-crash.html'
p594
(dp595
g16
S'Test dynamic removal of transformed and reflected video'
p596
ssS'fast/layers/video-layer.html'
p597
(dp598
g16
S'Video element gets layer'
p599
ssS'media/controls-strict.html'
p600
(dp601
g16
S'Drawing the controls in strict mode.'
p602
ssS'media/remove-from-document.html'
p603
(dp604
g16
S'Test that removing a media element from the tree pauses playback but does not unload the media.'
p605
ssS'http/tests/media/remove-while-loading.html'
p606
(dp607
g16
S'Test that removing a media element from the tree while loading does not crash.'
p608
ssS'media/video-controls-transformed.html'
p609
(dp610
g16
S'This test only runs in DRT!'
p611
ssS'compositing/video/video-poster.html'
p612
(dp613
g16
S'Video with poster'
p614
ssS'media/video-display-toggle.html'
p615
(dp616
g16
S"This tests that toggling the display property won't make the controls disappear.<br>"
p617
ssS'media/video-seek-no-src-exception.html'
p618
(dp619
g16
S"Test that seeking video with no 'src' attribute throws an INVALID_STATE_ERR exception."
p620
ssS'media/audio-constructor-src.html'
p621
(dp622
g16
S'Test that Audio("url") constructor loads the specified resource.'
p623
ssS'compositing/geometry/clipped-video-controller.html'
p624
(dp625
g16
S'Clipped Video'
p626
ssS'media/video-preload.html'
p627
(dp628
g16
S"Test to see if media loads automatically when 'preload' is specified."
p629
ssS'http/tests/media/video-load-twice.html'
p630
(dp631
g16
g80
ssS'http/tests/media/video-cookie.html'
p632
(dp633
g16
S'Tests that the media player will send the relevant cookies when requesting the media file.<br/>'
p634
ssS'media/video-source.html'
p635
(dp636
g16
g80
ssS'media/video-seek-past-end-playing.html'
p637
(dp638
g16
S"Test that seeking video with 'loop' past it's end rewinds to the beginning and continues playback."
p639
ssS'media/video-currentTime-delay.html'
p640
(dp641
g16
S'Test a delay in playing the movie results in a canPlay event.'
p642
ssS'http/tests/media/reload-after-dialog.html'
p643
(dp644
g16
S"Test this by loading a movie slowly and showing a dialog when a 'loadstart' event <br>"
p645
ssS'media/media-constants.html'
p646
(dp647
g16
S'Test HTMLMediaElement and MediaError constants.'
p648
ssS'media/video-volume.html'
p649
(dp650
g16
S"Test 'volume' attribute"
p651
ssS'media/video-src-source.html'
p652
(dp653
g16
g80
ssS'media/video-buffered.html'
p654
(dp655
g16
g80
ssg56
g57
sg70
g71
sS'media/video-canvas-source.html'
p656
(dp657
g16
S'Drawing to canvas using video with source element does not taint canvas'
p658
ssS'media/video-controls-no-scripting.html'
p659
(dp660
g16
S'Tests that the built-in controls are always enabled when JavaScript is disabled.'
p661
ssS'media/video-poster-scale.html'
p662
(dp663
g16
S"'poster' aspect ratio test"
p664
ssS'media/video-seek-by-small-increment.html'
p665
(dp666
g16
S'Test seeking by very small increments.'
p667
ssS'media/video-controls-with-mutation-event-handler.html'
p668
(dp669
g16
S"This tests that we don't crash while creating a video element while a DOMSubtreeModified even handler is registered."
p670
ssS'media/video-zoom-controls.html'
p671
(dp672
g16
S'Zoomed video with controls.'
p673
ssS'media/video-loop.html'
p674
(dp675
g8
(lp676
(dp677
S'WIN'
p678
I01
sg46
I01
sg23
(lp679
S'BUGCR59415'
p680
asg13
S' BUGCR59415 : cannot repro the flakiness'
p681
sg15
I01
sg118
I01
sasg16
S'consoleWrite("<em>++ Test setting/removing the attribute.</em>");'
p682
ssS'http/tests/media/video-play-stall.html'
p683
(dp684
g8
(lp685
(dp686
g118
I01
sg23
(lp687
S'BUGCR73609'
p688
asg13
S' canplaythrough event is sent too early.'
p689
sasg16
S'Test that stalled, timeupdate and waiting events are sent when media load stalls in the middle.'
p690
ssS'media/video-seeking.html'
p691
(dp692
g16
S'Test that seeking attribute is true immediately after a seek,'
p693
ssS'compositing/overflow/scroll-ancestor-update.html'
p694
(dp695
g16
S'The green box should obscure the red box, and move when you drag the scrollbar.'
p696
ssS'http/tests/media/media-can-load-when-hidden.html'
p697
(dp698
g16
S'Test HTMLMediaElement to be sure that the video is getting loaded even if the element'
p699
ssg168
g169
sS'media/media-controls-clone-crash.html'
p700
(dp701
g16
S'Test passes if it does not crash.'
p702
ssS'http/tests/security/contentSecurityPolicy/media-src-allowed.html'
p703
(dp704
g16
g80
ssS'compositing/reflections/load-video-in-reflection.html'
p705
(dp706
g16
S'You should see a reflected video below, rather than the red video background.'
p707
ssS'compositing/geometry/video-fixed-scrolling.html'
p708
(dp709
g16
S'Video overlay'
p710
ssS'media/video-controls-rendering.html'
p711
(dp712
g8
(lp713
(dp714
g74
I01
sS'LINUX'
p715
I01
sg23
(lp716
S'BUGCR74102'
p717
asg13
S" 2 pixel stretching when rendering some videos with the GPU (Now it's flaky)"
p718
sg46
I01
sg79
I01
sa(dp719
g41
I01
sg74
I01
sg23
(lp720
S'BUGCR86714'
p721
asg13
g322
sg78
I01
sg79
I01
sasg16
S'Test controls placement.'
p722
ssS'http/tests/media/video-served-as-text.html'
p723
(dp724
g16
S"media file served as 'text/plain'"
p725
ssS'media/video-pause-empty-events.html'
p726
(dp727
g16
S'Test that pause() from EMPTY network state triggers load()'
p728
ssS'media/media-load-event.html'
p729
(dp730
g16
S'Test that media file is not reloaded when an element is inserted into the DOM.'
p731
ssS'http/tests/media/video-error-abort.html'
p732
(dp733
g16
S"'abort' event test"
p734
ssS'media/video-volume-slider.html'
p735
(dp736
g16
S'Test rendering of volume slider of video tag'
p737
ssS'media/video-seek-past-end-paused.html'
p738
(dp739
g16
S"Test that seeking paused video past it's duration time sets currentTime to duration and leaves video paused."
p740
ssS'http/tests/security/local-video-poster-from-remote.html'
p741
(dp742
g16
S'This test requires the run-webkit httpd server (run-webkit-httpd)'
p743
ssS'media/remove-from-document-before-load.html'
p744
(dp745
g16
S'<body onload="document.body.innerHTML=\'PASS: A crash did not occur when the media element was removed before loading.\';'
p746
ssg210
g211
sS'media/video-duration-known-after-eos.html'
p747
(dp748
g16
S'Tests that duration is known after playback ended.'
p749
ssg109
g110
sS'http/tests/media/video-play-stall-before-meta-data.html'
p750
(dp751
g16
S'Test that stalling very early, while loading meta-data, stops delaying the load event.'
p752
ssS'media/video-timeupdate-during-playback.html'
p753
(dp754
g16
S"Test 'timeupdate' events are posted while playing but not while paused."
p755
ssS'media/video-single-valid-source.html'
p756
(dp757
g16
S'Test that a single valid <source> element loads correctly'
p758
ssS'media/video-src-invalid-remove.html'
p759
(dp760
g16
S"Test that removing 'src' attribute does NOT trigger load of <source> elements"
p761
ssS'http/tests/security/contentSecurityPolicy/media-src-blocked.html'
p762
(dp763
g16
S"This test passes if it doesn't alert failure."
p764
ssS'media/video-load-readyState.html'
p765
(dp766
g16
g80
sssS'nonskip'
p767
(dp768
g344
g345
sg361
g362
sg711
g712
sg243
g244
sg524
g525
sg674
g675
sg683
g684
sg583
g584
sg379
g380
sg315
g316
sssb.
|