summaryrefslogtreecommitdiff
path: root/chromium/media/tools/layout_tests/test_data/less
blob: 526112c55ea75505b153d8b8622a3a0cfad5b0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
(ilayouttest_analyzer_helpers
AnalyzerResultMap
p0
(dp1
S'result_map'
p2
(dp3
S'skip'
p4
(dp5
S'media/audio-delete-while-step-button-clicked.html'
p6
(dp7
S'desc'
p8
S"This tests that events don't continue to target a step button if the media element is deleted while mouse down on button."
p9
sS'te_info'
p10
(lp11
(dp12
S'FAIL'
p13
I01
sS'SKIP'
p14
I01
sS'Bugs'
p15
(lp16
S'BUGCR25375'
p17
aS'BUGCR59399'
p18
asS'Comments'
p19
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."
p20
sassS'media/restore-from-page-cache.html'
p21
(dp22
g8
S"Make sure we don't reload a <video> element when navigating back to an uncached page."
p23
sg10
(lp24
(dp25
g14
I01
sS'WONTFIX'
p26
I01
sS'TIMEOUT'
p27
I01
sg19
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.'
p28
sg15
(lp29
S'BUGCR19635'
p30
asassS'media/context-menu-actions.html'
p31
(dp32
g8
S'Test the various actions available in the HTML5 media element context-menu.'
p33
sg10
(lp34
(dp35
S'CRASH'
p36
I01
sg14
I01
sg15
(lp37
S'BUGCR59665'
p38
aS'BUGWK45021'
p39
asg19
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'
p40
sg27
I01
sS'PASS'
p41
I01
sassS'media/track/track-webvtt-tc005-headercomment.html'
p42
(dp43
g8
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).'
p44
sg10
(lp45
(dp46
g14
I01
sg27
I01
sg19
S' Tests for WebVTT parser for <track>.  Feature is not yet functional.'
p47
sg15
(lp48
S'BUGWK43668'
p49
asassS'http/tests/media/video-cross-site.html'
p50
(dp51
g8
S'media file redirects to another site'
p52
sg10
(lp53
(dp54
g14
I01
sg19
S' QuickTime reference movies not supported.'
p55
sg27
I01
sg41
I01
sg13
I01
sg26
I01
sassS'media/audio-data-url.html'
p56
(dp57
g8
S'Test that audio element can use a data: url'
p58
sg10
(lp59
(dp60
g14
I01
sg15
(lp61
S'BUGCR16779'
p62
asg19
S" These tests are WONTFIX because they use codecs Chromium doesn't support."
p63
sg27
I01
sg13
I01
sg26
I01
sassS'media/video-canvas-alpha.html'
p64
(dp65
g8
S'UNKNOWN'
p66
sg10
(lp67
(dp68
g14
I01
sS'IMAGE'
p69
I01
sg15
(lp70
S'BUGCR74979'
p71
asg19
S" Accelerated 2d for mac isn't supported yet, so SKIP this test for now."
p72
sS'MAC'
p73
I01
sS'GPU'
p74
I01
sassS'media/video-can-play-type.html'
p75
(dp76
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method.'
p77
sg10
(lp78
(dp79
g14
I01
sg15
(lp80
S'BUGCR16779'
p81
asg19
g63
sg27
I01
sg13
I01
sg26
I01
sassS'media/media-captions.html'
p82
(dp83
g8
S'Test media element close caption API.'
p84
sg10
(lp85
(dp86
g14
I01
sg27
I01
sg19
S" We haven't implemented the WebKit captioning extension. UNIMPLEMENTED"
p87
sg15
(lp88
S'BUGCR28301'
p89
asassS'media/media-can-play-mpeg-audio.html'
p90
(dp91
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method with multiple mp3 MIME types.'
p92
sg10
(lp93
(dp94
g14
I01
sg26
I01
sg15
(lp95
S'BUGCR16779'
p96
asg19
g63
sS'TEXT'
p97
I01
sassS'media/track/track-webvtt-tc011-blanklines.html'
p98
(dp99
g8
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.'
p100
sg10
g45
ssS'media/track/track-webvtt-tc012-outoforder.html'
p101
(dp102
g8
S'Tests cues that are temporally out of order (we allow this).'
p103
sg10
g45
ssS'media/track/track-webvtt-tc008-timingsnohours.html'
p104
(dp105
g8
S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors in timings without hours.'
p106
sg10
g45
ssS'media/video-size-intrinsic-scale.html'
p107
(dp108
g8
S'&lt;video&gt; element intrinsic size test'
p109
sg10
(lp110
(dp111
g14
I01
sg15
(lp112
S'BUGCR16779'
p113
asg19
g63
sg27
I01
sg13
I01
sg26
I01
sassS'media/audio-mpeg4-supported.html'
p114
(dp115
g8
S'Test that the audio element supports M4A files.'
p116
sg10
(lp117
(dp118
g14
I01
sg15
(lp119
S'BUGCR16779'
p120
asg19
g63
sg27
I01
sg13
I01
sg26
I01
sassS'media/media-fullscreen-not-in-document.html'
p121
(dp122
g8
S'Test media element fullscreen API when an element is not in the DOM.'
p123
sg10
(lp124
(dp125
g14
I01
sg27
I01
sg19
S" We haven't implemented the WebKit fullscreen extension. UNIMPLEMENTED"
p126
sg15
(lp127
S'BUGCR16735'
p128
asassS'media/audio-mpeg-supported.html'
p129
(dp130
g8
S'Test that the audio element supports MPEG files.'
p131
sg10
(lp132
(dp133
g14
I01
sg15
(lp134
S'BUGCR16779'
p135
asg19
g63
sg27
I01
sg13
I01
sg26
I01
sassS'media/track/track-webvtt-tc003-newlines.html'
p136
(dp137
g8
S'Tests that line terminators \\r, \\n, or \\r\\n are properly parsed, even when there is no newline at eof.'
p138
sg10
g45
ssS'media/video-document-types.html'
p139
(dp140
g8
S"This tests that a standalone MPEG-4 file with 'sdsm' and 'odsm' tracks is opened in a MediaDocument."
p141
sg10
(lp142
(dp143
g14
I01
sg15
(lp144
S'BUGCR16779'
p145
asg19
g63
sg27
I01
sg13
I01
sg26
I01
sassS'media/track/track-webvtt-tc002-bom.html'
p146
(dp147
g8
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.'
p148
sg10
g45
ssS'media/video-does-not-loop.html'
p149
(dp150
g8
S"Test to make sure QuickTime movie saved with 'loop' user data does not loop automatically."
p151
sg10
(lp152
(dp153
g14
I01
sg26
I01
sg27
I01
sg19
S" Doesn't apply to Chromium (QuickTime-specific behavior)"
p154
sassS'media/track/track-webvtt-tc000-empty.html'
p155
(dp156
g8
S'Tests that an empty file is not recognized as a WebVTT file.'
p157
sg10
g45
ssS'media/media-can-play-mpeg4-video.html'
p158
(dp159
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method with'
p160
sg10
(lp161
(dp162
g14
I01
sg26
I01
sg15
(lp163
S'BUGWK45102'
p164
asg19
g63
sg97
I01
sassS'compositing/video/video-background-color.html'
p165
(dp166
g8
S'Video with background color'
p167
sg10
(lp168
(dp169
g13
I01
sg14
I01
sg26
I01
sg15
(lp170
S'BUGWK55519'
p171
asg19
S" Chromium's video codecs don't support alpha information encoded in the video data, so this test is not applicable."
p172
sassS'media/track/track-webvtt-tc010-notimings.html'
p173
(dp174
g8
S'Tests cue without timings are ignored.'
p175
sg10
g45
ssS'media/video-timeupdate-reverse-play.html'
p176
(dp177
g8
S"Tests that a 'timeupdate' event is fired when a movie plays<br> in reverse to time zero."
p178
sg10
(lp179
(dp180
g14
I01
sg27
I01
sg19
S" We haven't implemented reverse audio/video playback. UNIMPLEMENTED BUGCR33099 Implement reverse audio/video playback"
p181
sg15
(lp182
S'BUGCR33099'
p183
asassS'http/tests/media/video-buffered.html'
p184
(dp185
g8
g66
sg10
(lp186
(dp187
g14
I01
sg15
(lp188
S'BUGCR49165'
p189
asg19
S' video.buffered multiple TimeRanges support.'
p190
sg41
I01
sassS'media/track/track-webvtt-tc001-utf8.html'
p191
(dp192
g8
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).'
p193
sg10
g45
ssS'media/track/track-webvtt-tc013-settings.html'
p194
(dp195
g8
S'Tests WebVTT settings.'
p196
sg10
g45
ssS'media/media-fullscreen-inline.html'
p197
(dp198
g8
S'Test media element fullscreen API when an element is in the DOM.'
p199
sg10
(lp200
(dp201
g14
I01
sg27
I01
sg19
g126
sg15
(lp202
S'BUGCR16735'
p203
asassS'media/track/track-webvtt-tc007-cuenoid.html'
p204
(dp205
g8
S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cue.'
p206
sg10
g45
ssS'media/track/track-webvtt-tc009-timingshour.html'
p207
(dp208
g8
S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timings with hours.'
p209
sg10
g45
ssS'media/track/track-webvtt-tc006-cueidentifiers.html'
p210
(dp211
g8
S'Tests that any text other than "-->" is recognized as optional cue identifier.'
p212
sg10
g45
ssS'media/video-element-other-namespace-crash.html'
p213
(dp214
g8
g66
sg10
(lp215
(dp216
g14
I01
sg26
I01
sg27
I01
sg19
g63
sg15
(lp217
S'BUGCR68289'
p218
asassS'media/video-reverse-play-duration.html'
p219
(dp220
g8
S'Tests that duration is not set to zero when playing in reverse to the origin.'
p221
sg10
(lp222
(dp223
g14
I01
sg27
I01
sg19
g181
sg15
(lp224
S'BUGCR33099'
p225
asasssS'whole'
p226
(dp227
S'media/media-startTime.html'
p228
(dp229
g8
S"Test the, so far unused, 'startTime' attribute."
p230
ssS'media/video-src-set.html'
p231
(dp232
g8
S'Test that setting src attribute triggers load'
p233
ssg6
g7
sS'media/video-played-ranges-1.html'
p234
(dp235
g8
S"Test of the media element 'played' attribute, ranges part 1."
p236
ssS'media/video-layer-crash.html'
p237
(dp238
g8
S'Test dynamic removal of transformed and reflected video'
p239
ssS'http/tests/media/video-play-stall-seek.html'
p240
(dp241
g8
S'Test that playback can be resumed by seeking backwards after load stalls.'
p242
sg10
(lp243
(dp244
g27
I01
sg19
S' Timing out.'
p245
sg15
(lp246
S'BUGCR78376'
p247
asassg56
g57
sg75
g76
sg82
g83
sS'http/tests/media/video-referer.html'
p248
(dp249
g8
S'Tests that the media player will send the relevant referer when requesting the media file.<br/>'
p250
ssS'media/video-source-removed.html'
p251
(dp252
g8
S'consoleWrite("PASS: A crash did not occur when removing &lt;source&gt; elements.<br>");'
p253
ssS'media/unsupported-tracks.html'
p254
(dp255
g8
S'Test that QuickTime file with unsupported track types only generates an error.'
p256
ssg114
g115
sS'media/audio-no-installed-engines.html'
p257
(dp258
g8
S'PASSED -- crash using Audio with no installed engines bug 27479.'
p259
ssg121
g122
sS'media/video-dom-src.html'
p260
(dp261
g8
g66
ssS'media/media-blocked-by-willsendrequest.html'
p262
(dp263
g8
S'consoleWrite("This test can only be run in DumpRenderTree!<br><br>");'
p264
ssS'media/video-error-does-not-exist.html'
p265
(dp266
g8
S'Test that the media element is in correct state after load fails.'
p267
ssS'media/video-play-pause-events.html'
p268
(dp269
g8
S'Test that calling play() and pause() triggers async play, timeupdate and pause events.'
p270
ssS'media/video-display-none-crash.html'
p271
(dp272
g8
S'Test that pause() after changing display to "none" doesn\'t cause a crash.'
p273
ssS'media/video-src-plus-source.html'
p274
(dp275
g8
S"Test that a &lt;source&gt; element is not used when a bogus 'src' attribute is present"
p276
ssS'media/video-source-none-supported.html'
p277
(dp278
g8
S'no usable &lt;source&gt; test'
p279
ssS'media/video-poster-blocked-by-willsendrequest.html'
p280
(dp281
g8
S'consoleWrite("<b>This test can only be run in DumpRenderTree!</b>");'
p282
ssg149
g150
sS'media/video-src.html'
p283
(dp284
g8
g66
ssS'media/audio-controls-rendering.html'
p285
(dp286
g8
S'Test controls placement.'
p287
ssg165
g166
sS'media/video-source-inserted.html'
p288
(dp289
g8
S'networkState after inserting &lt;source&gt; test'
p290
ssS'media/media-can-play-octet-stream.html'
p291
(dp292
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method with "application/octet-stream".'
p293
ssS'media/constructors.html'
p294
(dp295
g8
S'Test that media constructors behave consistently.'
p296
ssS'media/video-source-media.html'
p297
(dp298
g8
g66
ssg184
g185
sS'http/tests/security/local-video-source-from-remote.html'
p299
(dp300
g8
S'This test only behaves correctly in DRT'
p301
ssg191
g192
sS'media/video-source-type-params.html'
p302
(dp303
g8
g66
ssS'fast/canvas/webgl/context-lost.html'
p304
(dp305
g8
S'debug("Test valid context");'
p306
ssS'media/media-can-play-wav-audio.html'
p307
(dp308
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method with multiple .wav MIME types.'
p309
ssS'media/video-source-error.html'
p310
(dp311
g8
S'&lt;video&gt; and &lt;source&gt; error test'
p312
sg10
(lp313
(dp314
S'DEBUG'
p315
I01
sg97
I01
sg15
(lp316
S'BUGWK66310'
p317
asg19
S''
p318
sg41
I01
sassS'media/video-no-audio.html'
p319
(dp320
g8
S'Movie with no audio track. The volume button should not render.'
p321
ssS'media/svg-as-image-with-media-blocked.html'
p322
(dp323
g8
S'This test attempts to load foreignObject audio and video embedded in an SVG'
p324
ssg204
g205
sg104
g105
sS'media/video-click-dblckick-standalone.html'
p325
(dp326
g8
S'This tests that clicking on a standalone video will pause and double-clicking will play.'
p327
ssS'media/video-pause-immediately.html'
p328
(dp329
g8
S'Test that pausing the media element has an immediate effect on the clock.'
p330
ssS'fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html'
p331
(dp332
g8
g66
ssg219
g220
sS'http/tests/security/local-video-src-from-remote.html'
p333
(dp334
g8
S'This test only works in DRT'
p335
ssg197
g198
sS'media/video-controls-in-media-document.html'
p336
(dp337
g8
g66
ssS'media/remove-from-document-no-load.html'
p338
(dp339
g8
S'Test that removing a media element from the tree when no media has been loaded does not generate a loadstart event.'
p340
ssS'media/video-currentTime.html'
p341
(dp342
g8
g66
ssS'media/video-frame-accurate-seek.html'
p343
(dp344
g8
S'Test that setting currentTime is frame-accurate. The three videos below should be showing frames 12, 13, and 14.'
p345
sg10
(lp346
(dp347
g69
I01
sg15
(lp348
S'BUGCR72223'
p349
asg19
g318
sg41
I01
sassg21
g22
sg31
g32
sS'media/media-controls-clone-crash.html'
p350
(dp351
g8
S'Test passes if it does not crash.'
p352
ssg42
g43
sS'media/controls-css-overload.html'
p353
(dp354
g8
S"Testing that overloading some controls doesn't crash the browser"
p355
ssS'media/video-display-aspect-ratio.html'
p356
(dp357
g8
g66
ssS'media/video-currentTime-set.html'
p358
(dp359
g8
S"Test that setting currentTime changes the time, and that 'ended' event is fired in a reasonable amount of time"
p360
ssS'media/media-blocked-by-beforeload.html'
p361
(dp362
g8
S'Test to ensure that a media file blocked by a beforeload handler generates an error'
p363
sg10
(lp364
(dp365
g97
I01
sg15
(lp366
S'BUGWK66310'
p367
asg19
g318
sg41
I01
sassg101
g102
sS'media/video-controls-visible-audio-only.html'
p368
(dp369
g8
S'This test only runs in DRT!'
p370
ssS'http/tests/media/video-play-progress.html'
p371
(dp372
g8
S'Test that at least one progress event is fired after starting to load the video.'
p373
ssg107
g108
sS'media/video-source-moved.html'
p374
(dp375
g8
S'moving &lt;source&gt; element test'
p376
ssg98
g99
sS'media/video-src-none.html'
p377
(dp378
g8
g66
ssS'media/video-controls-zoomed.html'
p379
(dp380
g8
S'This test only runs in DRT!'
p381
ssS'media/video-controls.html'
p382
(dp383
g8
S"Test 'controls' attribute"
p384
ssS'media/controls-without-preload.html'
p385
(dp386
g8
S'The controls should not depend on preload value.'
p387
ssS'media/video-played-collapse.html'
p388
(dp389
g8
S"Test of the media element 'played' attribute"
p390
ssS'compositing/self-painting-layers.html'
p391
(dp392
g8
S'Self painting layers'
p393
ssS'media/audio-controls-do-not-fade-out.html'
p394
(dp395
g8
S'This tests that audio controls do not fade out when the audio is playing.'
p396
ssS'media/media-document-audio-repaint.html'
p397
(dp398
g8
S'This tests that in a standalone media document with audio content, the media element repaints correctly'
p399
sg10
(lp400
(dp401
g97
I01
sg69
I01
sg15
(lp402
S'BUGCR75354'
p403
aS'BUGWK55718'
p404
asg19
S' This test needs completely new baselines.'
p405
sS'IMAGE+TEXT'
p406
I01
sassS'compositing/geometry/video-opacity-overlay.html'
p407
(dp408
g8
S'Video overlay'
p409
ssS'media/video-source-error-no-candidate.html'
p410
(dp411
g8
S"Test that 'error' events are fired from &lt;source&gt; element when it can not be used."
p412
ssS'media/audio-constructor.html'
p413
(dp414
g8
S'Test that Audio() object loads the resource after src attribute is set and load() is called.'
p415
ssS'media/controls-styling.html'
p416
(dp417
g8
S'The look of the controls should not change.'
p418
ssS'media/video-buffered.html'
p419
(dp420
g8
g66
ssS'media/event-attributes.html'
p421
(dp422
g8
g66
ssg173
g174
sg176
g177
sS'http/tests/media/text-served-as-text.html'
p423
(dp424
g8
S"text file served as 'text/plain'"
p425
ssS'http/tests/media/video-cancel-load.html'
p426
(dp427
g8
S'Cancel loading a video file and access its properties afterwards.'
p428
ssS'media/unsupported-rtsp.html'
p429
(dp430
g8
S'Test that QuickTime file with RTSP URL generates a load error.'
p431
ssS'media/media-controls-clone.html'
p432
(dp433
g8
S'<video controls id=v></video><audio controls id=a></audio>'
p434
ssS'media/broken-video.html'
p435
(dp436
g8
S'Test that QuickTime file with broken content generates an error.'
p437
ssS'media/video-plays-past-end-of-test.html'
p438
(dp439
g8
g66
ssS'http/tests/canvas/webgl/origin-clean-conformance.html'
p440
(dp441
g8
S'WebGL Origin Restrictions Conformance Tests'
p442
ssS'media/video-replaces-poster.html'
p443
(dp444
g8
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>'
p445
ssS'media/video-autoplay.html'
p446
(dp447
g8
g66
ssS'media/video-set-rate-from-pause.html'
p448
(dp449
g8
S'Test that setting a non-zero rate causes an async timeupdate event.'
p450
ssS'media/video-src-remove.html'
p451
(dp452
g8
S"Test that removing valid 'src' attribute DOES NOT trigger load of &lt;source&gt; elements"
p453
ssS'media/csp-blocks-video.html'
p454
(dp455
g8
S"This test passes if it doesn't alert failure."
p456
ssS'media/controls-drag-timebar.html'
p457
(dp458
g8
S'Test that dragging the timebar thumb causes seeks.'
p459
ssS'media/audio-constructor-preload.html'
p460
(dp461
g8
S"Test that Audio() sets 'preload' attribute."
p462
ssS'media/video-src-invalid-poster.html'
p463
(dp464
g8
g66
ssS'media/adopt-node-crash.html'
p465
(dp466
g8
S"Tests that we don't crash when moving a video element to a new document."
p467
ssS'media/video-playbackrate.html'
p468
(dp469
g8
S'test playbackRate and defaultPlaybackRate'
p470
ssS'media/video-muted.html'
p471
(dp472
g8
S"Test 'muted' attribute"
p473
ssS'media/video-src-change.html'
p474
(dp475
g8
S'1. Test that an invalid src attribute fires an error when the file fails to load.<br>'
p476
ssg213
g214
sS'media/video-play-pause-exception.html'
p477
(dp478
g8
S'Video has no src. Test that the playing event is not dispatched.'
p479
ssS'fast/dom/shadow/frameless-media-element-crash.html'
p480
(dp481
g8
g66
ssS'media/audio-play-event.html'
p482
(dp483
g8
S"Test that a 'play' event listener is triggered when fired by a new audio element."
p484
ssS'media/before-load-member-access.html'
p485
(dp486
g8
S'Test that accessing member of a non loaded video works.'
p487
ssS'media/video-width-height.html'
p488
(dp489
g8
g66
ssS'media/audio-repaint.html'
p490
(dp491
g8
S'This tests that in a html document with inline audio content, the media element repaints correctly'
p492
ssS'media/video-currentTime-delay.html'
p493
(dp494
g8
S'Test a delay in playing the movie results in a canPlay event.'
p495
ssS'media/video-aspect-ratio.html'
p496
(dp497
g8
S'Test video sizing. You should see one bigger image (paused video) and 7 small ones of 1/4 its size.'
p498
ssS'media/video-transformed.html'
p499
(dp500
g8
S'Test painting of transformed video'
p501
ssS'fast/dom/beforeload/remove-video-in-beforeload-listener.html'
p502
(dp503
g8
S'This page tests that you can correctly remove a video object in a beforeload listener without causing a crash.'
p504
ssS'media/invalid-media-url-crash.html'
p505
(dp506
g8
S'Tests that invalid media src url does not result in crash.'
p507
ssS'media/video-empty-source.html'
p508
(dp509
g8
S'Slider drawing with no source. The controls should render correctly.'
p510
ssg90
g91
sS'media/video-poster.html'
p511
(dp512
g8
S'Test &lt;video&gt; element with and without a poster.'
p513
ssS'media/media-document-audio-size.html'
p514
(dp515
g8
S'This tests that in a standalone media document with audio content, the media element has non-zero'
p516
ssg129
g130
sS'compositing/overflow/overflow-compositing-descendant.html'
p517
(dp518
g8
S'You should see a green box under the video. If you see red, the test failed.'
p519
ssS'media/video-dom-autoplay.html'
p520
(dp521
g8
g66
ssS'media/media-ended.html'
p522
(dp523
g8
S'<b>Test ended by:</b>'
p524
ssS'media/video-no-autoplay.html'
p525
(dp526
g8
S'Test that play event does not fire when "src" set with no autoplay attribute.'
p527
ssS'media/video-zoom.html'
p528
(dp529
g8
S'150% zoom, with width and height attributes'
p530
sg10
(lp531
(dp532
g36
I01
sg69
I01
sg15
(lp533
S'BUGCR86714'
p534
asg19
g318
sg73
I01
sg74
I01
sassS'media/video-append-source.html'
p535
(dp536
g8
g66
ssg136
g137
sS'http/tests/media/pdf-served-as-pdf.html'
p537
(dp538
g8
S"PDF file served as 'application/pdf'"
p539
ssS'media/video-play-empty-events.html'
p540
(dp541
g8
S'Test that play() from EMPTY network state triggers load() and async play event.'
p542
ssg146
g147
sS'media/audio-only-video-intrinsic-size.html'
p543
(dp544
g8
S'This tests the intrinsic size of a video element is the default 300&#xd7;150 before metadata is'
p545
ssg139
g140
sS'media/audio-delete-while-slider-thumb-clicked.html'
p546
(dp547
g8
S"This tests that events don't continue to target a slider thumb if the media element is deleted while scrubbing."
p548
ssS'media/media-can-play-ogg.html'
p549
(dp550
g8
S'Test HTMLMediaElement <em>canPlayType()</em> method for ogg media containers.'
p551
ssS'media/track/track-webvtt-tc004-magicheader.html'
p552
(dp553
g8
S'Tests that the magic file header "WEBVTT" leads to the file properly recognized as a WebVTT file.'
p554
sg10
g45
ssg155
g156
sS'media/video-currentTime-set2.html'
p555
(dp556
g8
g66
ssS'media/video-seekable.html'
p557
(dp558
g8
g66
ssS'fast/dom/beforeload/video-before-load.html'
p559
(dp560
g8
g66
ssS'media/video-played-reset.html'
p561
(dp562
g8
S"Test of the media element 'played' attribute"
p563
ssS'compositing/self-painting-layers2.html'
p564
(dp565
g8
S'This test should not assert in debug builds.'
p566
ssS'media/controls-right-click-on-timebar.html'
p567
(dp568
g8
S'Test that right clicking on the timebar does not cause a seek.'
p569
ssS'media/video-dom-preload.html'
p570
(dp571
g8
S'consoleWrite("++ Test default attribute value");'
p572
ssS'media/video-size.html'
p573
(dp574
g8
S"Test &lt;video&gt; element size with and without 'src' and 'poster' attributes."
p575
ssS'media/video-delay-load-event.html'
p576
(dp577
g8
S"Test the document's load event is delayed until a movie's meta data is available."
p578
sg10
(lp579
(dp580
g97
I01
sg15
(lp581
S'BUGWK64003'
p582
asg19
S' Started around WebKit r90233:r90242'
p583
sg73
I01
sg41
I01
sg315
I01
sassS'media/fallback.html'
p584
(dp585
g8
S'Test that fallback content is not rendered'
p586
ssS'fast/layers/video-layer.html'
p587
(dp588
g8
S'Video element gets layer'
p589
ssS'media/controls-strict.html'
p590
(dp591
g8
S'Drawing the controls in strict mode.'
p592
ssS'media/remove-from-document.html'
p593
(dp594
g8
S'Test that removing a media element from the tree pauses playback but does not unload the media.'
p595
ssS'http/tests/media/remove-while-loading.html'
p596
(dp597
g8
S'Test that removing a media element from the tree while loading does not crash.'
p598
ssS'media/video-controls-transformed.html'
p599
(dp600
g8
S'This test only runs in DRT!'
p601
ssS'compositing/video/video-poster.html'
p602
(dp603
g8
S'Video with poster'
p604
ssS'http/tests/media/media-can-load-when-hidden.html'
p605
(dp606
g8
S'Test HTMLMediaElement to be sure that the video is getting loaded even if the element'
p607
ssS'media/video-display-toggle.html'
p608
(dp609
g8
S"This tests that toggling the display property won't make the controls disappear.<br>"
p610
ssS'media/video-seek-no-src-exception.html'
p611
(dp612
g8
S"Test that seeking video with no 'src' attribute throws an INVALID_STATE_ERR exception."
p613
ssS'media/audio-constructor-src.html'
p614
(dp615
g8
S'Test that Audio("url") constructor loads the specified resource.'
p616
ssS'compositing/geometry/clipped-video-controller.html'
p617
(dp618
g8
S'Clipped Video'
p619
ssS'media/video-preload.html'
p620
(dp621
g8
S"Test to see if media loads automatically when 'preload' is specified."
p622
ssS'http/tests/media/video-load-twice.html'
p623
(dp624
g8
g66
ssS'http/tests/security/local-video-poster-from-remote.html'
p625
(dp626
g8
S'This test requires the run-webkit httpd server (run-webkit-httpd)'
p627
ssS'media/video-seek-past-end-playing.html'
p628
(dp629
g8
S"Test that seeking video with 'loop' past it's end rewinds to the beginning and continues playback."
p630
ssS'media/video-source.html'
p631
(dp632
g8
g66
ssS'http/tests/media/reload-after-dialog.html'
p633
(dp634
g8
S"Test this by loading a movie slowly and showing a dialog when a 'loadstart' event <br>"
p635
ssS'media/media-constants.html'
p636
(dp637
g8
S'Test HTMLMediaElement and MediaError constants.'
p638
ssS'media/video-volume.html'
p639
(dp640
g8
S"Test 'volume' attribute"
p641
ssS'media/video-src-source.html'
p642
(dp643
g8
g66
ssS'http/tests/appcache/video.html'
p644
(dp645
g8
S'Test that &lt;video&gt; can be loaded from the application cache.'
p646
ssg50
g51
sg64
g65
sS'media/video-canvas-source.html'
p647
(dp648
g8
S'Drawing to canvas using video with source element does not taint canvas'
p649
ssS'media/video-controls-no-scripting.html'
p650
(dp651
g8
S'Tests that the built-in controls are always enabled when JavaScript is disabled.'
p652
ssS'media/video-poster-scale.html'
p653
(dp654
g8
S"'poster' aspect ratio test"
p655
ssS'media/video-seek-by-small-increment.html'
p656
(dp657
g8
S'Test seeking by very small increments.'
p658
ssS'media/video-controls-with-mutation-event-handler.html'
p659
(dp660
g8
S"This tests that we don't crash while creating a video element while a DOMSubtreeModified even handler is registered."
p661
ssS'media/video-zoom-controls.html'
p662
(dp663
g8
S'Zoomed video with controls.'
p664
ssS'media/video-loop.html'
p665
(dp666
g8
S'consoleWrite("<em>++ Test setting/removing the attribute.</em>");'
p667
sg10
(lp668
(dp669
S'WIN'
p670
I01
sg41
I01
sg15
(lp671
S'BUGCR59415'
p672
asg19
S' BUGCR59415 : cannot repro the flakiness'
p673
sg27
I01
sg97
I01
sassS'http/tests/media/video-play-stall.html'
p674
(dp675
g8
S'Test that stalled, timeupdate and waiting events are sent when media load stalls in the middle.'
p676
sg10
(lp677
(dp678
g97
I01
sg15
(lp679
S'BUGCR73609'
p680
asg19
S' canplaythrough event is sent too early.'
p681
sassS'media/video-seeking.html'
p682
(dp683
g8
S'Test that seeking attribute is true immediately after a seek,'
p684
ssS'compositing/overflow/scroll-ancestor-update.html'
p685
(dp686
g8
S'The green box should obscure the red box, and move when you drag the scrollbar.'
p687
ssS'media/controls-after-reload.html'
p688
(dp689
g8
S'Making sure the controller looks ok after a second load().'
p690
ssg158
g159
sS'media/video-load-networkState.html'
p691
(dp692
g8
S'Test that setting src to an invalid url triggers load(), which sets networkState'
p693
ssS'http/tests/security/contentSecurityPolicy/media-src-allowed.html'
p694
(dp695
g8
g66
ssS'compositing/reflections/load-video-in-reflection.html'
p696
(dp697
g8
S'You should see a reflected video below, rather than the red video background.'
p698
ssS'compositing/geometry/video-fixed-scrolling.html'
p699
(dp700
g8
S'Video overlay'
p701
ssS'media/video-controls-rendering.html'
p702
(dp703
g8
S'Test controls placement.'
p704
sg10
(lp705
(dp706
g69
I01
sS'LINUX'
p707
I01
sg15
(lp708
S'BUGCR74102'
p709
asg19
S" 2 pixel stretching when rendering some videos with the GPU (Now it's flaky)"
p710
sg41
I01
sg74
I01
sa(dp711
g36
I01
sg69
I01
sg15
(lp712
S'BUGCR86714'
p713
asg19
g318
sg73
I01
sg74
I01
sassS'http/tests/media/video-served-as-text.html'
p714
(dp715
g8
S"media file served as 'text/plain'"
p716
ssS'media/video-pause-empty-events.html'
p717
(dp718
g8
S'Test that pause() from EMPTY network state triggers load()'
p719
ssS'media/video-poster-delayed.html'
p720
(dp721
g8
S'Delayed load of poster should not overwrite intrinsic size of video'
p722
ssS'media/media-load-event.html'
p723
(dp724
g8
S'Test that media file is not reloaded when an element is inserted into the DOM.'
p725
ssS'http/tests/media/video-error-abort.html'
p726
(dp727
g8
S"'abort' event test"
p728
ssS'media/video-volume-slider.html'
p729
(dp730
g8
S'Test rendering of volume slider of video tag'
p731
ssS'media/video-seek-past-end-paused.html'
p732
(dp733
g8
S"Test that seeking paused video past it's duration time sets currentTime to duration and leaves video paused."
p734
ssS'http/tests/media/video-cookie.html'
p735
(dp736
g8
S'Tests that the media player will send the relevant cookies when requesting the media file.<br/>'
p737
ssS'media/remove-from-document-before-load.html'
p738
(dp739
g8
S'<body onload="document.body.innerHTML=\'PASS: A crash did not occur when the media element was removed before loading.\';'
p740
ssg207
g208
sS'media/video-duration-known-after-eos.html'
p741
(dp742
g8
S'Tests that duration is known after playback ended.'
p743
ssg210
g211
sS'http/tests/media/video-play-stall-before-meta-data.html'
p744
(dp745
g8
S'Test that stalling very early, while loading meta-data, stops delaying the load event.'
p746
ssS'media/video-timeupdate-during-playback.html'
p747
(dp748
g8
S"Test 'timeupdate' events are posted while playing but not while paused."
p749
ssS'media/video-single-valid-source.html'
p750
(dp751
g8
S'Test that a single valid &lt;source&gt; element loads correctly'
p752
ssS'media/video-src-invalid-remove.html'
p753
(dp754
g8
S"Test that removing 'src' attribute does NOT trigger load of &lt;source&gt; elements"
p755
ssS'http/tests/security/contentSecurityPolicy/media-src-blocked.html'
p756
(dp757
g8
S"This test passes if it doesn't alert failure."
p758
ssg194
g195
sS'media/video-load-readyState.html'
p759
(dp760
g8
g66
sssS'nonskip'
p761
(dp762
g397
g398
sg343
g344
sg674
g675
sg240
g241
sg528
g529
sg665
g666
sg702
g703
sg576
g577
sg361
g362
sg310
g311
sssb.