1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
|
# See http://www.chromium.org/developers/testing/webkit-layout-tests/testexpectations for more information on this file.
# -----------------------------------------------------------------
# SLOW BUT PASSING
# -----------------------------------------------------------------
crbug.com/237000 virtual/gpu/fast/canvas/getPutImageDataPairTest.html [ Slow ]
webkit.org/b/82097 [ Debug ] editing/selection/move-by-word-visually-crash-test-5.html [ Slow ]
crbug.com/24182 [ Debug ] fast/css/large-list-of-rules-crash.html [ Slow ]
crbug.com/24182 [ Debug ] fast/dom/shadow/tree-scope-crash.html [ Slow ]
crbug.com/24182 [ Debug ] fast/dom/HTMLSelectElement/option-add-crash.html [ Slow ]
crbug.com/24182 [ Debug ] fast/dom/Window/window-postmessage-clone-really-deep-array.html [ Slow ]
crbug.com/24182 [ Debug ] fast/frames/calculate-percentage.html [ Slow ]
crbug.com/24182 [ Debug ] fast/frames/frameset-frameborder-boolean-values.html [ Slow ]
crbug.com/24182 [ Debug ] fast/frames/valid.html [ Slow ]
crbug.com/24182 [ Debug ] fast/js/reserved-words-as-property.html [ Slow ]
crbug.com/24182 [ Debug ] fast/js/nested-object-gc.html [ Slow ]
crbug.com/24182 [ Debug ] fast/js/global-constructors.html [ Slow ]
crbug.com/24182 [ Mac Debug ] fast/js/recursion-limit-equal.html [ Slow ]
crbug.com/259934 [ Debug ] fast/js/regress/HashMap-put-get-iterate-keys.html [ Slow ]
crbug.com/24182 [ Debug ] fast/loader/javascript-url-iframe-crash.html [ Slow ]
crbug.com/24182 [ Debug ] http/tests/security/xss-DENIED-iframe-src-alias.html [ Slow ]
crbug.com/24182 http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-aborted.html [ Slow ]
crbug.com/24182 [ Debug ] jquery/data.html [ Slow ]
crbug.com/243782 [ Debug ] jquery/deferred.html [ Slow ]
crbug.com/24182 [ Debug ] jquery/dimensions.html [ Slow ]
crbug.com/24182 [ Debug ] jquery/offset.html [ Slow ]
crbug.com/24182 [ Debug ] css3/flexbox/position-absolute-child.html [ Slow ]
crbug.com/24182 [ Debug ] fast/events/tabindex-focus-blur-all.html [ Slow ]
crbug.com/24182 [ Win Linux Debug ] fast/frames/invalid.html [ Slow ]
crbug.com/24182 [ Debug ] fast/dom/css-delete-doc.html [ Slow ]
crbug.com/24182 [ Debug ] svg/filters/big-sized-filter.svg [ Slow ]
crbug.com/24182 [ Debug ] fast/harness/results.html [ Slow ]
crbug.com/24182 [ Win Debug ] virtual/gpu/fast/canvas/webgl/canvas-test.html [ Slow ]
crbug.com/24182 [ Win Debug ] virtual/gpu/fast/canvas/webgl/framebuffer-object-attachment.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/webgl/read-pixels-test.html [ Slow ]
crbug.com/24182 fast/canvas/webgl/read-pixels-test.html [ Slow ]
crbug.com/24182 fast/canvas/webgl/context-release-upon-reload.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/webgl/context-release-upon-reload.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565.html [ Slow ]
crbug.com/24182 [ Win Debug ] virtual/gpu/fast/canvas/canvas-composite-image.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/canvas-createImageBitmap-drawImage.html [ Slow ]
crbug.com/24182 [ Win Debug ] virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Slow ]
crbug.com/24182 [ Debug ] virtual/gpu/fast/canvas/canvas-strokeRect-gradient-shadow.html [ Slow ]
crbug.com/24182 [ Linux ] fast/canvas/canvas-clip-rule.html [ Slow ]
crbug.com/24182 [ Debug ] virtual/gpu/fast/canvas/canvas-composite-transformclip.html [ Slow ]
crbug.com/24182 [ Win ] virtual/gpu/fast/canvas/canvas-toDataURL-jpeg-crash.html [ Slow ]
crbug.com/24182 [ Debug ] virtual/gpu/fast/canvas/canvas-strokePath-gradient-shadow.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/DrawImageSinglePixelStretch.html [ Slow ]
crbug.com/24182 virtual/gpu/fast/canvas/canvas-composite-alpha.html [ Slow ]
crbug.com/24182 [ Linux ] plugins/get-url-with-iframe-target.html [ Slow ]
crbug.com/24182 [ Linux ] plugins/get-url-with-javascript-destroying-plugin.html [ Slow ]
crbug.com/24182 [ Linux ] http/tests/plugins/third-party-cookie-accept-policy.html [ Slow ]
crbug.com/24182 [ Debug ] plugins/iframe-shims.html [ Slow ]
webkit.org/b/109400 [ Win ] http/tests/css/css-image-loading.html [ Pass Timeout ]
webkit.org/b/109400 [ Debug ] http/tests/css/shared-stylesheet-mutation.html [ Slow ]
webkit.org/b/109400 [ Mac Win ] http/tests/css/shared-stylesheet-mutation-preconstruct.html [ Slow ]
crbug.com/239871 [ Win Mac Debug ] editing/selection/move-by-word-visually-multi-space.html [ Slow ]
crbug.com/24182 [ Debug ] fast/frames/sandboxed-iframe-navigation-parent.html [ Slow ]
crbug.com/24182 [ Debug ] fast/frames/sandboxed-iframe-navigation-windowopen.html [ Slow ]
webkit.org/b/82417 [ Linux ] fast/frames/set-unloaded-frame-location.html [ Slow ]
webkit.org/b/86909 [ Win ] compositing/geometry/object-clip-rects-assertion.html [ Slow ]
webkit.org/b/86909 [ Win ] virtual/softwarecompositing/geometry/object-clip-rects-assertion.html [ Slow ]
webkit.org/b/90488 [ Win ] inspector/extensions/extensions-reload.html [ Slow ]
webkit.org/b/111649 [ Mac Win Linux ] fast/events/intercept-postmessage.html [ Slow ]
webkit.org/b/111640 [ Linux Mac Win ] fast/dom/Window/window-special-properties.html [ Slow ]
webkit.org/b/82954 svg/hixie/perf/007.xml [ Slow ]
# These tests started being slow when we switched to DRT.
# Note: when adding flaky expectations for specific inspector tests in Debug,
# you'll almost certainly want to keep [ Slow ]!
webkit.org/b/90488 [ Debug ] inspector [ Slow ]
webkit.org/b/90488 [ Debug ] http/tests/inspector [ Slow ]
webkit.org/b/90488 [ Debug ] http/tests/inspector-enabled [ Slow ]
webkit.org/b/90488 [ Debug ] inspector-protocol [ Slow ]
crbug.com/257132 http/tests/inspector/extensions-useragent.html [ Failure Pass Timeout ]
crbug.com/257132 http/tests/inspector/network/network-xhr-replay.html [ Failure Pass Timeout ]
crbug.com/257132 http/tests/inspector/resource-har-conversion.html [ Failure Pass Timeout ]
# Inspector IndexedDB tests are slow in Release as well.
crbug.com/246190 [ Release ] http/tests/inspector/indexeddb [ Slow ]
# Chromium r163873 slowed down these tests
webkit.org/b/100287 compositing/culling/filter-occlusion-blur-large.html [ Slow ]
webkit.org/b/66989 transforms/3d/point-mapping/3d-point-mapping-deep.html [ Slow ]
webkit.org/b/101362 [ Debug ] fast/dom/Window/customized-property-survives-gc.html [ Slow ]
# This test os slow since r144263
webkit.org/b/111054 [ Debug ] fast/forms/time-multiple-fields/time-multiple-fields-stepup-stepdown-from-renderer.html [ Slow ]
crbug.com/229435 [ Debug ] editing/selection/caret-at-bidi-boundary.html [ Slow ]
crbug.com/248078 [ Win ] compositing/culling/filter-occlusion-blur.html [ Slow ]
crbug.com/248078 [ Win ] compositing/tiny-layer-rotated.html [ Slow ]
crbug.com/248081 [ Win7 ] css3/calc/simple-calcs.html [ Slow ]
crbug.com/248081 [ Win7 ] css3/filters/filter-change-repaint-composited.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/filesystem/file-writer-abort.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/filesystem/file-writer-abort-continue.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/filesystem/workers/file-writer-gc-blob.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/forms/calendar-picker/month-picker-key-operations.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/forms/suggestion-picker/date-suggestion-picker-step-attribute.html [ Slow ]
crbug.com/248081 [ Win7 Debug ] fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload.html [ Slow ]
crbug.com/248081 [ Win ] virtual/gpu/fast/hidpi/image-set-background-dynamic.html [ Slow ]
crbug.com/248081 [ Win ] virtual/gpu/fast/hidpi/image-set-border-image-dynamic.html [ Slow ]
# Test is now just slow (from webkit.org/b/62754)
Bug(dpranke) http/tests/misc/object-embedding-svg-delayed-size-negotiation-2.htm [ Slow ]
Bug(dpranke) virtual/gpu/compositedscrolling/overflow/remove-overflow-crash2.html [ Slow ]
# Got slow with V8 update to 1.3.15. Debug logging perhaps?
crbug.com/24182 [ Debug ] fast/forms/input-maxlength.html [ Slow ]
# These tests appears to timeout every 10 or 20 runs.
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-10.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-20.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-30.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-40.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-50.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-60.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-70.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-80.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-90.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-100.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-110.html [ Slow ]
webkit.org/b/60094 [ Debug ] fast/encoding/parser-tests-120.html [ Slow ]
crbug.com/51854 [ Win ] http/tests/storage/callbacks-are-called-in-correct-context.html [ Slow ]
# Need to figure out why this is slow.
webkit.org/b/60131 [ Debug ] fast/css/visited-link-hang.html [ Slow ]
crbug.com/24182 http/tests/cache/subresource-expiration-1.html [ Slow ]
crbug.com/24182 http/tests/cache/subresource-expiration-2.html [ Slow ]
# New failures from WebKit r51577
webkit.org/b/72530 [ Debug ] fast/frames/sandboxed-iframe-navigation-targetlink.html [ Slow ]
webkit.org/b/85106 tables/mozilla/other/slashlogo.html [ Slow ]
crbug.com/128057 [ Debug ] http/tests/websocket/tests/hybi/workers/worker-reload.html [ Slow ]
webkit.org/b/108876 [ Linux Win ] media/track/track-cues-cuechange.html [ Slow ]
webkit.org/b/108876 [ Linux Win ] media/track/track-cues-enter-exit.html [ Slow ]
# these tests were slow already and seem to have gotten slower around r149356, enough to Timeout otherwise.
crbug.com/236992 [ Debug ] css3/filters/filter-property-computed-style.html [ Slow ]
crbug.com/236992 [ Debug ] css3/flexbox/position-absolute-children.html [ Slow ]
crbug.com/236992 [ Debug ] fast/css/css-selector-deeply-nested.html [ Slow ]
crbug.com/237245 editing/selection/programmatic-selection-on-mac-is-directionless.html [ Slow ]
crbug.com/244481 virtual/gpu/fast/canvas/canvas-draw-canvas-on-canvas-shadow.html [ Slow ]
crbug.com/244481 virtual/gpu/fast/canvas/canvas-imageSmoothingEnabled-repaint.html [ Slow ]
crbug.com/244481 virtual/gpu/fast/canvas/canvas-composite-canvas.html [ Slow ]
crbug.com/26253 [ Win Release ] http/tests/navigation/reload-subframe-object.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/kde/Array.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/kde/Boolean.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-normalcode.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-strictcode.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/mozilla/strict/8.12.5.html [ Slow ]
crbug.com/243782 [ Win Debug ] fast/js/mozilla/strict/8.7.2.html [ Slow ]
crbug.com/243782 [ Win7 Debug ] compositing/video/video-reflection.html [ Slow ]
crbug.com/243782 [ Win7 Debug ] compositing/geometry/video-opacity-overlay.html [ Slow ]
crbug.com/243782 [ Win7 Debug ] editing/selection/move-by-word-visually-mac.html [ Slow ]
crbug.com/243782 [ Win7 Debug ] editing/selection/move-by-word-visually-multi-line.html [ Slow ]
crbug.com/243782 [ Win7 Mac Debug ] editing/selection/move-by-word-visually-single-space-inline-element.html [ Slow ]
crbug.com/243782 [ Mac Win7 Debug ] storage/indexeddb/objectstore-cursor.html [ Slow ]
crbug.com/243782 [ Mac Win7 Debug ] storage/indexeddb/pending-activity.html [ Slow ]
crbug.com/244739 [ Win ] compositing/video-frame-size-change.html [ Slow ]
crbug.com/24182 [ Release ] fast/workers/storage/interrupt-database.html [ Slow ]
crbug.com/24182 [ Debug ] fast/workers/shared-worker-name.html [ Slow ]
# -----------------------------------------------------------------
# END SLOW
# -----------------------------------------------------------------
crbug.com/247466 [ Win Debug ] inspector/debugger/live-edit-breakpoints.html [ Skip ]
crbug.com/247466 [ Debug ] inspector/debugger/dom-breakpoints.html [ Skip ]
crbug.com/247466 [ Release ] inspector/debugger/dom-breakpoints.html [ Slow ]
crbug.com/247466 [ Debug ] inspector/debugger/xhr-breakpoints.html [ Skip ]
crbug.com/247466 [ Debug ] inspector/debugger/script-formatter-breakpoints.html [ Skip ]
crbug.com/247466 [ Win Debug ] inspector/profiler/heap-snapshot-comparison-expansion-preserved-when-sorting.html [ Skip ]
crbug.com/249087 [ Win Debug ] inspector/debugger/debugger-activation-crash2.html [ Pass Failure Slow ]
crbug.com/254988 [ Debug ] inspector/debugger/debugger-breakpoints-not-activated-on-reload.html [ Slow Crash Pass ]
crbug.com/254988 [ Win Debug ] inspector/debugger/callstack-placards-discarded.html [ Slow Crash Pass ]
crbug.com/247466 [ Debug ] inspector/debugger/set-breakpoint.html [ Skip ]
crbug.com/247466 [ Debug ] inspector/debugger/script-formatter-console.html [ Skip ]
crbug.com/247466 [ Debug ] inspector/debugger/script-formatter-search.html [ Skip ]
crbug.com/247466 [ Debug ] inspector/debugger/linkifier.html [ Skip ]
crbug.com/256518 [ Win7 Debug ] pointer-lock/mouse-event-delivery.html [ Crash ]
# Sometimes the output includes an empty line, sometimes it doesn't. Flake.
crbug.com/239874 http/tests/xmlhttprequest/send-data-view.html [ Failure Pass ]
crbug.com/239465 [ Win ] fast/canvas/webgl/premultiplyalpha-test.html [ Pass Timeout ]
crbug.com/24182 [ Win Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Slow ]
crbug.com/24182 [ XP ] fast/filesystem/workers/file-writer-events.html [ Timeout Pass ]
crbug.com/24182 [ Debug ] fast/filesystem/workers/file-writer-empty-blob.html [ Timeout Pass ]
crbug.com/258949 [ Release ] fast/filesystem/workers/file-writer-truncate-extend.html [ Crash Pass ]
crbug.com/24182 [ Mac Debug ] editing/selection/selection-button-text.html [ Timeout Pass ]
crbug.com/24182 [ Debug ] jquery/attributes.html [ Timeout ]
crbug.com/24182 [ Debug ] jquery/core.html [ Timeout ]
crbug.com/24182 [ Debug ] jquery/event.html [ Timeout ]
crbug.com/24182 [ Release ] jquery/event.html [ Slow ]
crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]
crbug.com/24182 [ Win ] http/tests/xmlhttprequest/simple-cross-origin-progress-events.html [ Pass Timeout ]
crbug.com/24182 [ Win ] http/tests/xmlhttprequest/supported-xml-content-types.html [ Pass Timeout ]
crbug.com/24182 [ Debug ] html5lib/webkit-resumer.html [ Pass Timeout ]
crbug.com/24182 [ Win Debug ] http/tests/cache/stopped-revalidation.html [ Pass Timeout ]
crbug.com/24182 http/tests/navigation/slowtimerredirect-basic.html [ Pass Timeout ]
crbug.com/24182 [ Win ] http/tests/history/back-to-post.php [ Pass Timeout ]
crbug.com/255183 [ Debug ] http/tests/cache/cancel-image-via-src-change.html [ Failure Pass ]
# The test has been timing out since landed in r130587.
webkit.org/b/98659 [ Debug ] fast/dom/gc-dom-tree-lifetime.html [ Pass Timeout ]
crbug.com/24182 [ Debug ] fast/js/toString-and-valueOf-override.html [ Timeout ]
crbug.com/249707 [ Debug ] fast/dom/StyleSheet/gc-rule-children-wrappers.html [ Timeout Pass ]
crbug.com/239554 http/tests/security/frameNavigation/opener.html [ Pass Timeout ]
crbug.com/260129 [ Mac Release ] fast/events/scrollbar-double-click.html [ Failure Pass ]
crbug.com/241869 [ Debug ] css3/flexbox/multiline-justify-content.html [ Pass Timeout ]
crbug.com/259547 virtual/gpu/fast/canvas/canvas-blend-image.html [ Skip ]
crbug.com/259547 virtual/gpu/fast/canvas/canvas-blend-solid.html [ Skip ]
# Unskip after implementing DRT support for setDefersLoading and goBack.
webkit.org/b/60877 loader/navigation-while-deferring-loads.html [ Skip ]
webkit.org/b/60877 loader/load-defer-resume-crash.html [ Skip ]
# Overflowing LayoutUnits cause RenderGeometryMap assertions
webkit.org/b/67434 [ Debug ] fast/overflow/overflow-height-float-not-removed-crash.html [ Skip ]
webkit.org/b/67434 [ Debug ] fast/overflow/overflow-height-float-not-removed-crash2.html [ Skip ]
webkit.org/b/67434 [ Debug ] fast/overflow/overflow-height-float-not-removed-crash3.html [ Skip ]
webkit.org/b/67434 [ Debug ] fast/block/float/overhanging-tall-block.html [ Skip ]
# Requires generation of progress events during loading
webkit.org/b/100985 media/progress-events-generated-correctly.html [ Failure Pass Slow ]
# CSS3 Text support is not yet enabled for all properties (must replace CSS3_TEXT with a runtime flag).
webkit.org/b/112755 fast/css3-text/css3-text-indent/text-indent-each-line.html [ ImageOnlyFailure ]
# We expect V8 to crash in an orderly fashion instead of throwing a JavaScript out-of-memory error.
webkit.org/b/103348 fast/js/string-replacement-outofmemory.html [ Crash ]
webkit.org/b/112923 fast/forms/calendar-picker/calendar-picker-appearance-month-popup.html [ ImageOnlyFailure Pass ]
# Skipped until/unless color-correction is reimplemented.
crbug.com/28005 fast/css/parsing-color-correction.html [ Skip ]
# LightTPD doesn't accept unknown HTTP methods
crbug.com/30536 [ Win ] http/tests/xmlhttprequest/methods-lower-case.html [ Skip ]
crbug.com/30536 [ Win ] http/tests/xmlhttprequest/methods-async.html [ Timeout ]
# Need a setAuthorAndUserStylesEnabled method in
# testRunner. Now we have preference to enable/disable user
# styles(not work now), we still need to add a preference to enable/disable
# styles of both author and user.
# SKIP because it causes an additional error message in:
# fast/css/display-none-inline-style-change-crash.html somehow
# the message is dumped after the #EOF, which causes an additional
# error in the header of the following test.
crbug.com/24197 fast/css/disabled-author-styles.html [ Skip ]
# Test itself passes, but causes subsequent tests to fail.
webkit.org/b/83260 fast/text/international/embed-bidi-style-in-isolate-crash.html [ Skip ]
# -----------------------------------------------------------------
# Inspector tests
# -----------------------------------------------------------------
# There is no enough plugins support in DRT
crbug.com/233124 http/tests/inspector/network/network-embed.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-content-replacement-embed.html [ Skip ]
crbug.com/67662 http/tests/inspector/console-websocket-error.html [ Failure Timeout ]
# Transferred size are not supported in DRT.
crbug.com/233124 http/tests/inspector/network/network-size.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-size-chunked.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-size-sync.html [ Skip ]
# PageAgent can not getCookies from DumpRenderTree.
webkit.org/b/65770 http/tests/inspector/resource-main-cookies.php [ Skip ]
webkit.org/b/74654 http/tests/inspector/network/network-worker.html [ Skip ]
webkit.org/b/75186 [ Linux ] http/tests/inspector-enabled/dedicated-workers-list.html [ Skip ]
# -----------------------------------------------------------------
# Security tests
# -----------------------------------------------------------------
# Need to update chromium so the web frame delegate is informed when window objects
# in isolated worlds are cleared.
crbug.com/27849 http/tests/security/isolatedWorld/didClearWindowObject.html [ Failure ]
# Due to the differences in initialization checks in KURL and googleurl.
# Note: this test was also marked as flaky on WIN RELEASE above, BUGCR31342.
# See also https://webkit.org/b/108780
crbug.com/39423 security/block-test.html [ Failure ]
# -----------------------------------------------------------------
# Plugin tests
# -----------------------------------------------------------------
crbug.com/61799 webkit.org/b/64319 plugins/evaluate-js-after-removing-plugin-element.html [ Skip ]
# Object.keys on an NPObject produces the wrong output.
crbug.com/35387 [ Linux Win ] plugins/reentrant-update-widget-positions.html [ Timeout Pass ]
crbug.com/35387 [ Mac ] plugins/reentrant-update-widget-positions.html [ Timeout Failure ]
# Tests differences from switching to webkit.org's test netscape plugin rather
# than chromium's old forked copy.
crbug.com/108833 plugins/geturlnotify-during-document-teardown.html [ Crash Failure ]
webkit.org/b/48655 [ Debug ] plugins/js-from-destroy.html [ Crash ]
# canplaythrough event is sent too early.
# Test is intentionally SLOW as we're waiting for a connection timeout.
crbug.com/73609 http/tests/media/video-play-stall.html [ Failure Slow ]
crbug.com/100798 [ Debug ] fullscreen/full-screen-iframe-allowed.html [ Failure Pass ]
crbug.com/100798 [ Debug ] fullscreen/full-screen-iframe-allowed-prefixed.html [ Failure Pass ]
# -----------------------------------------------------------------
# SVG TESTS
# -----------------------------------------------------------------
# Reporting translation of -0.00.
webkit.org/b/106126 [ Win ] svg/custom/feComponentTransfer-Table.svg [ ImageOnlyFailure Pass ]
# Only flaky on Linux. Looks like slight pixel differences in text-on-a-path.
crbug.com/250897 [ Linux ] svg/batik/text/smallFonts.svg [ ImageOnlyFailure Pass ]
# Flaky mostly on XP, where the <use> batiklogo.svg doesn't arrive in time to get rendered.
crbug.com/258991 [ XP ] svg/batik/text/verticalTextOnPath.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textLayout.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/smallFonts.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textOnPath.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textFeatures.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textPosition2.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textLayout2.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textEffect.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/verticalText.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textProperties.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textEffect3.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/longTextOnPath.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textPosition.svg [ Failure Pass ]
crbug.com/258991 [ Win ] svg/batik/text/textProperties2.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textDecoration.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textAnchor.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textEffect2.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textLength.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textStyles.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/text/textOnPathSpaces.svg [ Failure Pass ]
crbug.com/258991 [ Release ] svg/batik/filters/feTile.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/filters/filterRegions.svg [ Failure Pass ]
crbug.com/258991 [ Release ] svg/batik/masking/maskRegions.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/paints/gradientLimit.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/paints/patternRegions-positioned-objects.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/paints/patternRegionA.svg [ Failure Pass ]
crbug.com/258991 [ XP ] svg/batik/paints/patternRegions.svg [ Failure Pass ]
# The test needs fixing. Flakiness is common across all Mac platforms, not just chromium.
webkit.org/b/25817 svg/dom/SVGScriptElement/script-load-and-error-events.svg [ Failure Pass ]
webkit.org/b/106598 svg/dom/SVGScriptElement/script-onerror-bubbling.svg [ Pass Timeout ]
webkit.org/b/60118 [ Win Debug ] svg/dom/SVGScriptElement/script-set-href.svg [ Failure Pass ]
webkit.org/b/78830 svg/custom/mask-invalidation.svg [ ImageOnlyFailure Pass ]
# Failing since added by r108699
webkit.org/b/79454 [ Linux Mac ] svg/text/text-viewbox-rescale.html [ ImageOnlyFailure Pass ]
# These require more investigation. There is a small change, probably two pixels, in the filter offset
# when comparing the former and new results. This may be due to bad test design or may be revealing a bug
# in the code.
webkit.org/b/80517 svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource.html [ ImageOnlyFailure Pass ]
webkit.org/b/81243 svg/repaint/repainting-after-animation-element-removal.svg [ ImageOnlyFailure Pass ]
# Flaky on Linux after http://trac.webkit.org/changeset/112022
webkit.org/b/82217 [ Linux ] svg/zoom/text/zoom-foreignObject.svg [ ImageOnlyFailure Pass ]
# Flaky since at least r111670
webkit.org/b/82258 [ Debug ] svg/custom/circular-marker-reference-4.svg [ Failure Pass ]
webkit.org/b/82509 [ Linux ] svg/text/append-text-node-to-tspan.html [ ImageOnlyFailure Pass ]
webkit.org/b/82954 [ Debug Mac Win ] svg/W3C-SVG-1.1/animate-elem-77-t.svg [ ImageOnlyFailure Pass ]
webkit.org/b/82954 [ Debug Mac Win ] svg/W3C-SVG-1.1/text-text-05-t.svg [ ImageOnlyFailure Pass ]
webkit.org/b/83183 [ Mac ] svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size.html [ ImageOnlyFailure Pass ]
webkit.org/b/99893 svg/animations/mozilla/animateMotion-mpath-targetChange-1.svg [ ImageOnlyFailure ]
# Many WIN and Linux SVG tests containing text are flaky. It seems different fonts are used at different times.
webkit.org/b/83303 [ Linux Mac ] svg/zoom/text/zoom-hixie-mixed-009.xml [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Linux Mac ] svg/hixie/mixed/009.xml [ ImageOnlyFailure Pass ]
webkit.org/b/83306 [ Win ] svg/hixie/mixed/009.xml [ ImageOnlyFailure ]
webkit.org/b/83303 [ Linux ] svg/text/scaling-font-with-geometric-precision.html [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Linux ] svg/transforms/text-with-mask-with-svg-transform.svg [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Linux ] svg/transforms/text-with-pattern-with-svg-transform.svg [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-1.html [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Win ] svg/as-background-image/svg-as-background-3.html [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Debug ] svg/custom/mouse-move-on-svg-container-standalone.svg [ ImageOnlyFailure Pass ]
webkit.org/b/83303 [ Debug ] svg/custom/mouse-move-on-svg-root-standalone.svg [ ImageOnlyFailure Pass ]
# This fails image 5-10% of the time. Probably a race condition on timers.
webkit.org/b/83471 svg/as-image/animated-svg-as-image-same-image.html [ ImageOnlyFailure Pass ]
webkit.org/b/84230 [ Mac ] svg/as-image/img-preserveAspectRatio-support-1.html [ Pass Timeout ]
webkit.org/b/84719 [ Win ] svg/text/select-text-svgfont.html [ Failure Pass ]
webkit.org/b/84854 [ Linux ] svg/batik/text/textOnPath.svg [ ImageOnlyFailure Pass ]
webkit.org/b/84854 [ Linux ] svg/batik/text/verticalTextOnPath.svg [ ImageOnlyFailure Pass ]
webkit.org/b/84854 [ Win7 ] svg/batik/text/textOnPath.svg [ Failure ImageOnlyFailure Pass ]
webkit.org/b/84854 [ Win7 ] svg/batik/text/verticalTextOnPath.svg [ Failure ImageOnlyFailure Pass ]
webkit.org/b/85107 svg/as-image/animated-svg-as-image.html [ ImageOnlyFailure Pass ]
webkit.org/b/93589 svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading.svg [ Pass Timeout ]
webkit.org/b/111626 [ Mac Debug ] svg/css/font-face-crash.html [ Crash Pass ]
# -----------------------------------------------------------------
# End SVG TESTS
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# Accessibility layout tests
#
# AccessibilityController and AccessibilityUIElement are only
# partially finished - about half the tests can't run yet.
crbug.com/10322 accessibility/aria-activedescendant-crash.html [ Skip ]
crbug.com/10322 accessibility/aria-combobox.html [ Skip ]
crbug.com/10322 accessibility/aria-invalid.html [ Skip ]
crbug.com/10322 accessibility/aria-menubar-menuitems.html [ Skip ]
crbug.com/10322 accessibility/aria-tables.html [ Skip ]
crbug.com/10322 accessibility/aria-used-on-image-maps.html [ Skip ]
crbug.com/10322 accessibility/deleting-iframe-destroys-axcache.html [ Skip ]
crbug.com/10322 accessibility/document-attributes.html [ Skip ]
crbug.com/10322 accessibility/iframe-bastardization.html [ Skip ]
crbug.com/10322 accessibility/image-map-update-parent-crash.html [ Skip ]
crbug.com/10322 accessibility/image-map2.html [ Skip ]
crbug.com/10322 accessibility/internal-link-anchors2.html [ Skip ]
crbug.com/10322 accessibility/language-attribute.html [ Skip ]
crbug.com/10322 accessibility/lists.html [ Skip ]
crbug.com/10322 accessibility/media-element.html [ Skip ]
crbug.com/10322 accessibility/placeholder.html [ Skip ]
crbug.com/10322 accessibility/plugin.html [ Skip ]
crbug.com/10322 accessibility/radio-button-group-members.html [ Skip ]
crbug.com/10322 accessibility/table-attributes.html [ Skip ]
crbug.com/10322 accessibility/table-sections.html [ Skip ]
crbug.com/10322 accessibility/table-with-aria-role.html [ Skip ]
crbug.com/10322 accessibility/transformed-element.html [ Skip ]
crbug.com/10322 accessibility/visible-elements.html [ Skip ]
webkit.org/b/96529 accessibility/hidden-legend.html [ Skip ]
webkit.org/b/73912 accessibility/aria-checkbox-text.html [ Skip ]
webkit.org/b/99665 accessibility/loading-iframe-sends-notification.html [ Skip ]
webkit.org/b/109056 accessibility/html-html-element-is-ignored.html [ Skip ]
webkit.org/b/73912 accessibility/aria-checkbox-sends-notification.html [ Failure Pass ]
webkit.org/b/111004 [ Linux Debug ] accessibility/svg-remote-element.html [ Failure Pass ]
webkit.org/b/111004 [ Win7 Debug ] accessibility/svg-remote-element.html [ Failure ]
# -----------------------------------------------------------------
# End Accessibility layout tests
# -----------------------------------------------------------------
# This test is slow due to Mesa slowness.
crbug.com/244481 virtual/gpu/canvas/philip/tests/2d.shadow.blur.low.html [ Skip ]
crbug.com/174268 webgl [ Skip ]
webkit.org/b/92287 fast/canvas/webgl/context-creation-and-destruction.html [ Failure Pass Timeout ]
webkit.org/b/92287 virtual/gpu/fast/canvas/webgl/context-creation-and-destruction.html [ Failure Pass Timeout ]
# WebGL not yet supported by the software compositor.
crbug.com/151713 virtual/softwarecompositing/draws-content/webgl-background-layer.html [ Skip ]
crbug.com/151713 virtual/softwarecompositing/draws-content/webgl-simple-background.html [ Skip ]
crbug.com/151713 virtual/softwarecompositing/backface-visibility/backface-visibility-webgl.html [ Skip ]
crbug.com/151713 virtual/softwarecompositing/visibility/visibility-simple-webgl-layer.html [ Skip ]
crbug.com/151713 virtual/softwarecompositing/webgl [ Skip ]
# This test isn't hanging, it just takes 12-13 seconds to run. See BUGWK87839.
crbug.com/30536 http/tests/misc/acid3.html [ Failure Slow ] # See "SVG Tests" section too
# Clipping differences between Chromium platforms. Needs investigation.
webkit.org/b/98599 [ Linux Win ] css3/masking/clip-path-reference-userSpaceOnUse.html [ ImageOnlyFailure ]
# This test sometimes fails indefinitely, other times it takes 1-2 seconds.
crbug.com/14009 [ Win ] http/tests/misc/dns-prefetch-control.html [ Pass Timeout ]
webkit.org/b/110296 [ Linux MountainLion ] fast/multicol/newmulticol/column-rules-fixed-height.html [ ImageOnlyFailure ]
crbug.com/250935 [ Win ] fast/multicol/shrink-to-column-height-for-pagination.html [ ImageOnlyFailure Pass ]
# There seems to be some endemic MountainLion reftest failure.
# In theory, this shouldn't happen with reftests. Indicates a likely genuine
# MountainLion Blink bug.
webkit.org/b/110203 [ MountainLion ] fast/multicol/seamless-flowed-through-columns.html [ ImageOnlyFailure ]
webkit.org/b/110377 [ MountainLion ] fast/multicol/newmulticol/layers-in-multicol.html [ ImageOnlyFailure ]
webkit.org/b/110377 [ MountainLion ] fast/multicol/newmulticol/float-paginate-complex.html [ ImageOnlyFailure ]
webkit.org/b/110377 [ MountainLion ] fast/multicol/newmulticol/float-paginate.html [ ImageOnlyFailure ]
webkit.org/b/110377 [ MountainLion ] fast/multicol/newmulticol/positioned-with-constrained-height.html [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-block-formatting-context-001.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-containing-block-003.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-001.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-002.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-003.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-004.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-013.htm [ ImageOnlyFailure ]
webkit.org/b/102163 [ MountainLion ] ietestcenter/css3/multicolumn/column-width-applies-to-014.htm [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-allregions-nobreaks.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-allregions.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-breakafteralways-maxheight.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-breakbeforealways.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-definedheight-changenotdetected.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-firstregion-breakalways.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-horizontal-bt.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-lastregion-overflowauto-breaksignored.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-lastregion-overflowauto.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-maxheight-region.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-middleregion.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-secondregion-breakoutside.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-secondregion.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-breakafteralways-maxheight.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-breakafteralways.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-breakaftermargin.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-breakbeforealways.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-multiplebreaks.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-overflowauto-breaksignored.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-singleregion-overflowauto.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-vertical-lr.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autoheight-vertical-rl.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autowidth-normalflow-minmaxwidth.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autowidth-normalflow-minwidth.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/autowidth-normalflow-vertrl.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/region-style-image-background-color.html [ ImageOnlyFailure ]
webkit.org/b/102164 [ MountainLion ] fast/regions/render-region-custom-style-mark.html [ ImageOnlyFailure ]
webkit.org/b/102165 [ MountainLion ] compositing/text-on-scaled-layer.html [ ImageOnlyFailure ]
webkit.org/b/102165 [ MountainLion ] compositing/text-on-scaled-surface.html [ ImageOnlyFailure ]
webkit.org/b/102165 [ MountainLion ] virtual/softwarecompositing/text-on-scaled-layer.html [ ImageOnlyFailure ]
webkit.org/b/102165 [ MountainLion ] virtual/softwarecompositing/text-on-scaled-surface.html [ ImageOnlyFailure ]
# issues w/ ahem glyph rendering causing failures for reftests on ML?
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/border-conflict-element-001d.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/c541-word-sp-001.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/text-indent-014.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-007.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-010.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-012.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-013.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-014.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] css2.1/20110323/overflow-applies-to-015.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/block/float/floats-wrap-inside-inline-003.htm [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-001.html [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-002.html [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-003.html [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-004.html [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-005.html [ ImageOnlyFailure ]
webkit.org/b/102166 [ MountainLion ] fast/css/text-indent-first-line-006.html [ ImageOnlyFailure ]
webkit.org/b/103609 [ MountainLion ] fast/regions/autoheight-dynamic-update.html [ ImageOnlyFailure ]
webkit.org/b/103609 [ MountainLion ] fast/regions/firstletter-inside-flowthread.html [ ImageOnlyFailure ]
webkit.org/b/103609 [ MountainLion ] fast/regions/listmarker-inside-flowthread.html [ ImageOnlyFailure ]
webkit.org/b/47975 [ MountainLion ] fast/block/float/max-width-clear-float-with-overflow-hidden.html [ ImageOnlyFailure ]
webkit.org/b/104715 [ MountainLion ] fast/block/float/floats-wrap-inside-inline-007.html [ ImageOnlyFailure ]
webkit.org/b/107893 [ MountainLion ] fast/exclusions/shape-inside/shape-inside-first-fit-001.html [ ImageOnlyFailure ]
webkit.org/b/109283 [ MountainLion ] fast/regions/selecting-text-through-different-region-flows.html [ ImageOnlyFailure ]
webkit.org/b/110568 [ MountainLion ] fast/multicol/newmulticol/positioned-split.html [ ImageOnlyFailure ]
webkit.org/b/110739 [ MountainLion ] fast/regions/shape-inside/shape-inside-on-regions.html [ ImageOnlyFailure ]
crbug.com/234061 [ MountainLion ] fast/regions/shape-inside/shape-inside-recursive-layout.html [ ImageOnlyFailure ]
# Failing since r144633
webkit.org/b/111510 [ MountainLion ] fast/regions/region-style-in-columns.html [ ImageOnlyFailure ]
webkit.org/b/111141 fast/regions/seamless-iframe-flowed-into-regions.html [ ImageOnlyFailure ]
# The following are flaky in that some times the timeout or crash, but we think
# it is because of bugs in other parts of the code and not specific to what
# these tests are doing. The are being noted here so we can get the buildbots
# green so new mac regressions are caught much quicker.
# (there are a few others marked w/ multiple status like this in other parts of
# the file, but they were left there as the comments in those areas are valid.)
crbug.com/10384 [ Mac ] fast/dom/Window/new-window-opener.html [ Failure Slow ]
crbug.com/9798 [ Win Release ] http/tests/navigation/no-referrer-reset.html [ Pass Timeout ]
# Unexpected gray
crbug.com/23476 [ Mac ] fast/frames/inline-object-inside-frameset.html [ Failure ImageOnlyFailure ]
crbug.com/23476 [ Linux Win7 Debug ] fast/frames/inline-object-inside-frameset.html [ Failure ImageOnlyFailure Pass ]
# We could fix this test for us and upstream it if the test shell user agent
# would let us differentiate test_shell and WebKit DumpTreeNode.
crbug.com/7482 [ Mac ] http/tests/misc/timer-vs-loading.html [ Failure Timeout ]
crbug.com/7482 [ Linux Win ] http/tests/misc/timer-vs-loading.html [ Pass Timeout ]
# Flakey. Not clear when it started, but it was before 3/9/09.
# This test also started failing with the merge of March 25th 2009
crbug.com/10441 [ Mac Win ] transitions/transition-end-event-transform.html [ Failure Pass ]
# This test isn't just slow -- sometimes it times out indefinitely.
crbug.com/27569 [ Win ] http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html [ Pass Timeout ]
crbug.com/9798 [ Win ] http/tests/misc/redirect-with-quotes.php [ Pass Timeout ]
crbug.com/9798 [ Win7 ] http/tests/misc/refresh-headers.php [ Pass Timeout ]
crbug.com/9798 [ Win ] http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html [ Pass Timeout ]
crbug.com/9798 [ Win ] http/tests/xmlhttprequest/encode-request-url-2.html [ Pass Timeout ]
crbug.com/9797 crbug.com/9798 [ Win ] http/tests/xmlhttprequest/state-after-network-error.html [ Pass Timeout ]
# This test definitely times out (i.e. is not just slow).
crbug.com/9798 [ Win Release ] http/tests/xmlhttprequest/small-chunks-response-text.html [ Pass Timeout ]
# Flaky timeouts first appearing at r27764 (webkit 48947)
crbug.com/9798 [ Win ] http/tests/cookies/multiple-cookies.html [ Pass Timeout ]
# WebKit roll 49405:49413
crbug.com/28409 http/tests/xmlhttprequest/logout.html [ Failure Timeout ]
# These fail because chromium's appcache is async but webkit's is not.
crbug.com/2844 http/tests/appcache/idempotent-update.html [ Failure Pass ]
# This test fails because there is no setAppCacheMaximumSize API yet.
crbug.com/2844 http/tests/appcache/max-size.html [ Skip ]
# LayoutTestController::clearApplicationCacheForOrigin isn't implemented
webkit.org/b/ http/tests/appcache/origin-delete.html [ Skip ]
# LayoutTestController::getOriginsWithApplicationCache isn't implemented
webkit.org/b/ http/tests/appcache/origins-with-appcache.html [ Skip ]
# LayoutTestController::applicationCacheDiskUsageForOrigin isn't implemented - https://bugs.webkit.org/show_bug.cgi?id=57127
webkit.org/b/ http/tests/appcache/origin-usage.html [ Skip ]
# LayoutTestController::setAutomaticLinkDetectionEnabled isn't implemented
webkit.org/b/85463 editing/inserting/smart-link-when-caret-is-moved-before-URL.html [ Skip ]
webkit.org/b/85463 editing/inserting/typing-space-to-trigger-smart-link.html [ Skip ]
# Expectations from roll to 53171:53194
# As of Oct 7, 2010, times out on all platforms when doing DEBUG costing 13 seconds on average. Skipping.
# As of Aug 31, 2012, now times out in release. Marking flaky everywhere.
crbug.com/32308 fast/frames/cached-frame-counter.html [ Pass Timeout ]
crbug.com/33293 [ Mac Debug ] fast/media/lifetime.html [ Pass Timeout ]
# Chromium DumpRenderTree does not have support for visited links.
# It always return false in response to isLinkVisited().
webkit.org/b/111031 fast/history/multiple-classes-visited.html [ Failure ]
webkit.org/b/111031 fast/history/nested-visited-test.html [ Failure ]
webkit.org/b/111031 fast/history/self-is-visited.html [ Failure ]
webkit.org/b/111031 fast/history/sibling-visited-test.html [ Failure ]
webkit.org/b/111031 fast/loader/stateobjects/state-url-sets-links-visited.html [ Failure ]
webkit.org/b/111031 fast/history/visited-link-background-color.html [ ImageOnlyFailure ]
# Chromium does not support cancel for notifications permissions.
webkit.org/b/42798 fast/notifications/notifications-cancel-request-permission.html [ Pass Timeout ]
webkit.org/b/42598 http/tests/misc/401-alternative-content.php [ Failure ]
webkit.org/b/42598 http/tests/xmlhttprequest/failed-auth.html [ Failure Timeout ]
webkit.org/b/42769 http/tests/xmlhttprequest/remember-bad-password.html [ Failure ]
# Slow test introduced in r64817
crbug.com/51571 [ Win ] http/tests/misc/bad-charset-alias.html [ Pass Timeout ]
# Mark as flaky initially while tuning on trybots
Bug(nbarth) [ Release ] perf/ [ Failure Pass Timeout ]
Bug(nbarth) perf/accessibility-title-ui-element.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/append-text-nodes-without-renderers.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/array-nested-loop.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/array-push-pop.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/array-reverse.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/class-list-remove.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/clone-with-focus.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/document-contains.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/htmlcollection-backwards-iteration.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/htmlcollection-last-item.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/mouse-event.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/object-keys.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/set-attribute.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/show-hide-table-rows.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/svg-path-appenditem.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/table-rows-length-caching.html [ Failure Pass Timeout ]
Bug(nbarth) [ Release ] perf/typing-at-end-of-line.html [ Failure Pass Timeout ]
webkit.org/b/45737 [ Debug ] fast/frames/frame-limit.html [ Timeout ]
webkit.org/b/45737 [ Win Linux Release ] fast/frames/frame-limit.html [ Slow ]
# Regressions from webkit roll r67178:t67358
webkit.org/b/60092 [ Debug ] fast/forms/select-set-length-with-mutation-remove.html [ Pass Timeout ]
webkit.org/b/60093 [ Win7 ] http/tests/incremental/slow-utf8-text.pl [ Pass Timeout ]
webkit.org/b/60093 [ Linux Debug ] http/tests/incremental/slow-utf8-text.pl [ Slow ]
crbug.com/58257 [ Win ] http/tests/misc/last-modified-parsing.html [ Failure Pass Timeout ]
# Failing from r69420, mac failing from r71493:r71496
crbug.com/58735 http/tests/misc/prefetch-purpose.html [ Pass Timeout ]
# Vertical text needs to be implemented in platforms other than OS X.
crbug.com/65877 fast/writing-mode/japanese-ruby-vertical-lr.html [ Failure Pass ]
crbug.com/65877 fast/writing-mode/japanese-ruby-vertical-rl.html [ Failure Pass ]
crbug.com/65877 [ Linux Win ] fast/writing-mode/japanese-ruby-horizontal-bt.html [ Failure Pass ]
# Added in WK r71424
# We should probably just skip this test, everyone else has since
# https://bugs.webkit.org/show_bug.cgi?id=49182
crbug.com/62138 animations/stop-animation-on-suspend.html [ Failure Pass Timeout ]
crbug.com/61739 [ Debug ] animations/suspend-resume-animation-events.html [ Failure Pass ]
webkit.org/b/91429 [ Debug ] fast/frames/calculate-round.html [ Skip ]
crbug.com/66087 [ Win ] fast/dom/Geolocation/timestamp.html [ Failure Pass ]
crbug.com/66087 [ Win ] http/tests/misc/no-last-modified.html [ Pass Timeout ]
crbug.com/250528 fast/dom/gc-2.html [ Failure Pass ]
# Needs V8 investigation. Skipped due to concern that this may be corrupting
# memory and thus leading to unpredictable results.
crbug.com/66099 fast/js/array-sort-modifying-tostring.html [ Pass Timeout ]
crbug.com/66751 http/tests/local/link-stylesheet-load-order-preload.html [ Failure Pass Timeout ]
crbug.com/66751 http/tests/local/link-stylesheet-load-order.html [ Failure Pass Timeout ]
# The test is just too slow and has never passed since its introduction on Dbg build.
webkit.org/b/90363 [ Debug ] fast/overflow/lots-of-sibling-inline-boxes.html [ Pass Timeout ]
webkit.org/b/90363 [ Release ] fast/overflow/lots-of-sibling-inline-boxes.html [ Slow ]
crbug.com/68436 [ Debug ] fast/dom/DOMImplementation/createDocument-with-used-doctype.html [ Pass Timeout ]
# These have been flaky for as long as we have test history.
webkit.org/b/52063 [ Win ] http/tests/navigation/ping-cross-origin.html [ Pass Timeout ]
# These were flaky, now failing more consistently after r75169.
webkit.org/b/52061 [ Debug ] transitions/suspend-transform-transition.html [ ImageOnlyFailure Pass ]
webkit.org/b/52061 [ Debug ] transitions/change-values-during-transition.html [ Failure Pass ]
webkit.org/b/52061 [ Linux Release ] transitions/change-values-during-transition.html [ Failure Pass ]
#///////////////////////////////////////////////////////////////////////////
# GPU
#///////////////////////////////////////////////////////////////////////////
# These tests are too slow with our MESA backend. We can re-enable when we have
# bots running tests on real hardware.
webkit.org/b/49629 compositing/lots-of-img-layers.html [ Skip ]
webkit.org/b/49629 [ Win Debug ] virtual/softwarecompositing/lots-of-img-layers.html [ Slow ]
webkit.org/b/49629 compositing/lots-of-img-layers-with-opacity.html [ Skip ]
crbug.com/76550 [ Win Debug ] fast/dom/Window/window-function-frame-getter-precedence.html [ Slow ]
crbug.com/76550 [ Lion SnowLeopard Debug ] fast/dom/Window/window-function-frame-getter-precedence.html [ Timeout ]
crbug.com/76550 [ Linux Debug ] fast/dom/Window/window-function-frame-getter-precedence.html [ Pass Timeout ]
# Has been timing out, initiated at:
# Webkit patches in range [r81976, r81981]
# Chromium patches in range [r79428, r79442]
crbug.com/77468 fast/forms/file/input-file-directory-upload.html [ Skip ]
# Flaky, supposedly testRunner.setSerializeHTTPLoads would help.
crbug.com/240970 fast/preloader/document-write-2.html [ Failure Pass ]
crbug.com/240970 fast/preloader/document-write.html [ Failure Pass ]
crbug.com/780807 http/tests/misc/webtiming-origins.html [ Failure Pass ]
webkit.org/b/58193 [ Win7 ] http/tests/local/fileapi/send-sliced-dragged-file.html [ Pass Timeout ]
webkit.org/b/56702 [ Win ] http/tests/navigation/ping-cross-origin-from-https.html [ Failure Pass Timeout ]
crbug.com/246067 fast/filesystem/file-writer-write-overlapped.html [ Crash Pass ]
# crbug.com/86340 [ Win Debug ] fast/filesystem/file-writer-write-overlapped.html [ Failure Pass ]
crbug.com/86340 [ Win Debug ] fast/filesystem/workers/file-writer-write-overlapped.html [ Failure Pass ]
crbug.com/82281 fast/xpath/xpath-iterator-result-should-mark-its-nodeset.html [ Failure Timeout ]
# Mostly passes post-content_shell, occasionally flaky
webkit.org/b/60822 [ Linux ] plugins/get-url-with-javascript-url.html [ Timeout Pass ]
# Flaky since added by r86478
crbug.com/82881 http/tests/appcache/interrupted-update.html [ Failure Pass ]
# Random timeouts and failures going back a week.
crbug.com/83290 [ Win ] http/tests/misc/link-rel-prefetch-and-subresource.html [ Pass Timeout ]
webkit.org/b/98906 fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html [ Pass Timeout ]
# CSS Regions tests for region styling and scoped styles
webkit.org/b/49142 fast/regions/style-scoped-in-flow-override-region-styling-multiple-regions.html [ ImageOnlyFailure ]
# CSS Regions tests for <dialog>
crbug.com/244792 [ Mac ] fast/regions/dialog-fragmentation.html [ ImageOnlyFailure ]
webkit.org/b/70887 [ Debug ] jquery/css.html [ Pass Timeout ]
webkit.org/b/66419 http/tests/misc/authentication-redirect-1/authentication-sent-to-redirect-cross-origin.html [ Failure Timeout ]
webkit.org/b/66419 http/tests/misc/authentication-redirect-2/authentication-sent-to-redirect-same-origin.html [ Failure Timeout ]
webkit.org/b/66419 http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html [ Failure Timeout ]
webkit.org/b/66974 [ Debug ] fast/events/keydown-1.html [ Pass Timeout ]
# SVG painting in high DPI mode is broken in DRT.
webkit.org/b/92511 svg/as-image/animated-svg-repaints-completely-in-hidpi.html [ ImageOnlyFailure Pass ]
webkit.org/b/72039 http/tests/download/literal-utf-8.html [ Missing Pass ]
webkit.org/b/72039 editing/pasteboard/drag-files-to-editable-element.html [ Missing Pass ]
webkit.org/b/111023 fast/loader/unload-hyperlink-targeted.html [ Pass Timeout ]
webkit.org/b/111023 fast/dom/Window/Location/set-location-after-close.html [ Pass Timeout ]
# These tests time out 50% of the time.
crbug.com/259546 fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html [ Skip ]
crbug.com/259546 fast/loader/images-enabled-unset-can-block-image-and-can-reload-in-place.html [ Skip ]
webkit.org/b/70988 [ Debug ] fast/forms/submit-to-blank-multiple-times.html [ Failure Pass ]
# BUGWK70988 MAC DEBUG SLOW : fast/frames/calculate-fixed.html = PASS
# Crashing since on or before r122699, please uncomment previous line before removing.
webkit.org/b/91415 [ Mac Linux Debug ] fast/frames/calculate-fixed.html [ Failure Pass Slow ]
webkit.org/b/91415 [ Win Debug ] fast/frames/calculate-fixed.html [ Slow ]
# Opera-submitted tests to W3C for <track>, a lot of failures still.
webkit.org/b/103926 media/track/opera/idl/media-idl-tests.html [ Failure Pass ]
webkit.org/b/103926 media/track/opera/interfaces/HTMLElement/HTMLTrackElement/src.html [ Failure Pass ]
webkit.org/b/103926 media/track/opera/interfaces/TextTrack/activeCues.html [ Skip ]
webkit.org/b/103926 media/track/opera/interfaces/TextTrackCue/getCueAsHTML.html [ Crash Pass Timeout ]
webkit.org/b/103926 [ Release ] media/track/opera/track/webvtt/parsing-cue-data/tests/entities.html [ Failure Pass ]
webkit.org/b/103926 [ Debug ] media/track/opera/track/webvtt/parsing-cue-data/tests/entities.html [ Crash Timeout ]
webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/tags.html [ Crash Failure Pass Timeout ]
webkit.org/b/103926 media/track/opera/track/webvtt/rendering/adhoc/12345_timestamps.html [ ImageOnlyFailure Pass ]
webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/timestamps.html [ Failure Pass ]
webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/tree-building.html [ Crash Failure Pass Timeout ]
webkit.org/b/103926 media/track/opera/track/webvtt/rendering/adhoc/cue_font_size_transition.html [ Failure ImageOnlyFailure Pass ]
webkit.org/b/103926 media/track/opera/track/webvtt/rendering/adhoc/voice_with_evil_timestamp.html [ ImageOnlyFailure Pass ]
# Animations tests use an inherently-flaky timer-based design.
webkit.org/b/66953 [ Mac Win Debug ] animations/change-one-anim.html [ Failure Pass ]
webkit.org/b/111612 animations/animation-delay-changed.html [ Failure Pass ]
webkit.org/b/72761 accessibility/anonymous-render-block-in-continuation-causes-crash.html [ Pass Timeout ]
webkit.org/b/73766 css3/unicode-bidi-isolate-aharon-failing.html [ ImageOnlyFailure ]
webkit.org/b/74746 [ Win ] http/tests/xmlhttprequest/workers/methods.html [ Failure Timeout ]
webkit.org/b/74746 [ Win ] http/tests/xmlhttprequest/workers/shared-worker-methods.html [ Failure ]
webkit.org/b/74746 [ Win ] http/tests/xmlhttprequest/workers/shared-worker-methods-async.html [ Failure ]
webkit.org/b/75111 fast/workers/storage/use-same-database-in-page-and-workers.html [ Pass Timeout ]
# Crashes due to an OOM error on V8.
crbug.com/108832 fast/js/array-splice.html [ Crash Timeout ]
webkit.org/b/48454 compositing/tiling/huge-layer-img.html [ Failure Pass ]
# New reftest failing on Win7.
webkit.org/b/76050 [ Win7 ] fast/text/font-kerning.html [ ImageOnlyFailure ]
webkit.org/b/76488 [ Win ] css3/images/cross-fade-background-size.html [ Failure ImageOnlyFailure ]
webkit.org/b/81542 css3/images/cross-fade-invalidation.html [ ImageOnlyFailure Pass ]
webkit.org/b/76727 fast/multicol/span/span-as-immediate-child-property-removal.html [ Failure ImageOnlyFailure Pass ]
webkit.org/b/76727 fast/multicol/span/span-as-immediate-columns-child-removal.html [ Failure ImageOnlyFailure Pass ]
# Transform (rotation) seems to be flakily applied.
crbug.com/244884 fast/layers/no-clipping-overflow-hidden-added-after-transform.html [ Failure ImageOnlyFailure Pass ]
crbug.com/244884 fast/layers/no-clipping-overflow-hidden-added-after-transition.html [ Failure ImageOnlyFailure Pass ]
crbug.com/244884 fast/layers/no-clipping-overflow-hidden-hardware-acceleration.html [ Failure ImageOnlyFailure Pass ]
# Skipped until setTouchPointRadius get implemented
crbug.com/261276 touchadjustment/focusout-on-touch.html [ Skip ]
webkit.org/b/78159 compositing/iframes/scrolling-iframe.html [ Failure Pass ]
webkit.org/b/78159 virtual/softwarecompositing/iframes/scrolling-iframe.html [ Failure Pass ]
webkit.org/b/80498 [ Linux Win ] fast/workers/worker-multi-startup.html [ Crash Pass ]
webkit.org/b/91946 fast/events/rtl-scrollbar.html [ Failure Pass ]
crbug.com/249595 animations/cross-fade-webkit-mask-box-image.html [ ImageOnlyFailure Pass ]
webkit.org/b/81145 [ Mac ] fast/frames/invalid.html [ ImageOnlyFailure Pass Slow ]
webkit.org/b/81145 [ Lion ] fast/writing-mode/broken-ideograph-small-caps.html [ Crash ]
webkit.org/b/81145 [ Lion ] fast/writing-mode/broken-ideographic-font.html [ Crash ]
webkit.org/b/81145 [ Lion ] fast/writing-mode/japanese-rl-text-with-broken-font.html [ Crash ]
crbug.com/261277 fast/events/touch/gesture/pad-gesture-fling.html [ Failure Pass ]
webkit.org/b/81638 [ Mac Debug ] editing/selection/iframe.html [ ImageOnlyFailure Pass ]
webkit.org/b/81931 fast/images/destroyed-image-load-event.html [ Pass Timeout ]
webkit.org/b/81931 virtual/deferred/fast/images/destroyed-image-load-event.html [ Pass Timeout ]
webkit.org/b/82297 [ Mac ] fast/events/platform-wheelevent-paging-x-in-scrolling-page.html [ Failure Pass ]
webkit.org/b/82297 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-page.html [ Failure Pass ]
webkit.org/b/82297 [ Mac ] fast/events/platform-wheelevent-paging-y-in-scrolling-page.html [ Failure Pass ]
webkit.org/b/ [ Win7 ] http/tests/xmlhttprequest/redirect-cross-origin-post.html [ Failure Pass ]
webkit.org/b/83647 [ Linux Win ] fast/multicol/cell-shrinkback.html [ ImageOnlyFailure ]
# CSS Gradients now use premultiplied color space. The following tests need rebase
crbug.com/227396 fast/gradients/crash-on-zero-radius.html [ ImageOnlyFailure ]
crbug.com/227396 fast/gradients/simple-gradients.html [ ImageOnlyFailure ]
crbug.com/227396 fast/gradients/unprefixed-generated-gradients.html [ ImageOnlyFailure ]
crbug.com/227396 fast/gradients/generated-gradients.html [ ImageOnlyFailure ]
crbug.com/227396 css3/compositing/effect-background-blend-mode-tiled.html [ ImageOnlyFailure ]
crbug.com/227396 css3/compositing/effect-background-blend-mode.html [ ImageOnlyFailure ]
# CSS Background Blending tests that need rebasing
crbug.com/251239 css3/compositing/background-blend-mode-gradient-color.html [ Missing ]
crbug.com/251239 css3/compositing/background-blend-mode-gradient-gradient.html [ Missing ]
crbug.com/251239 css3/compositing/background-blend-mode-gradient-image.html [ Missing ]
crbug.com/251239 css3/compositing/background-blend-mode-multiple-background-layers.html [ Missing ]
crbug.com/251727 css3/compositing/background-blend-mode-default-value.html [ Missing ]
crbug.com/251727 css3/compositing/background-blend-mode-different-image-formats.html [ Missing ]
crbug.com/251727 css3/compositing/background-blend-mode-image-color.html [ Missing ]
crbug.com/251727 css3/compositing/background-blend-mode-image-image.html [ Missing ]
crbug.com/251727 css3/compositing/background-blend-mode-single-layer-no-blending.html [ Missing ]
crbug.com/251240 css3/compositing/background-blend-mode-image-svg.html [ Missing ]
crbug.com/251240 css3/compositing/background-blend-mode-svg-color.html [ Missing ]
# IETC grid layout
webkit.org/b/83912 ietestcenter/css3/grid/grid-items-002.htm [ ImageOnlyFailure ]
webkit.org/b/83913 ietestcenter/css3/grid/grid-items-003.htm [ ImageOnlyFailure ]
# IETC multi-column
webkit.org/b/84759 ietestcenter/css3/multicolumn/column-containing-block-001.htm [ ImageOnlyFailure ]
webkit.org/b/84760 ietestcenter/css3/multicolumn/column-containing-block-002.htm [ ImageOnlyFailure ]
webkit.org/b/84761 ietestcenter/css3/multicolumn/column-filling-001.htm [ ImageOnlyFailure ]
webkit.org/b/84770 ietestcenter/css3/multicolumn/column-width-applies-to-007.htm [ ImageOnlyFailure ]
webkit.org/b/84771 ietestcenter/css3/multicolumn/column-width-applies-to-009.htm [ ImageOnlyFailure ]
webkit.org/b/84772 ietestcenter/css3/multicolumn/column-width-applies-to-010.htm [ ImageOnlyFailure ]
webkit.org/b/84773 ietestcenter/css3/multicolumn/column-width-applies-to-012.htm [ ImageOnlyFailure ]
webkit.org/b/84777 ietestcenter/css3/multicolumn/column-width-applies-to-015.htm [ ImageOnlyFailure ]
# IETC flexbox failures
webkit.org/b/85211 ietestcenter/css3/flexbox/flexbox-align-stretch-001.htm [ ImageOnlyFailure ]
webkit.org/b/85212 ietestcenter/css3/flexbox/flexbox-layout-002.htm [ ImageOnlyFailure ]
# IETC CSS units
webkit.org/b/85308 [ Debug ] ietestcenter/css3/valuesandunits/units-000.htm [ Crash Timeout ]
webkit.org/b/85308 [ Release ] ietestcenter/css3/valuesandunits/units-000.htm [ ImageOnlyFailure ]
# IETC namespace failures
webkit.org/b/86142 ietestcenter/css3/namespaces/syntax-021.xml [ ImageOnlyFailure ]
webkit.org/b/84550 [ Debug ] fast/canvas/2d.text.draw.fill.maxWidth.gradient.html [ Failure Pass ]
webkit.org/b/84720 [ SnowLeopard Debug ] fast/repaint/fixed-right-in-page-scale.html [ ImageOnlyFailure Pass ]
webkit.org/b/84735 [ Win ] http/tests/inspector/change-iframe-src.html [ Pass Timeout ]
# Skip it because it seems its frame loading notifications leak to the next test.
webkit.org/b/85949 http/tests/loading/post-in-iframe-with-back-navigation.html [ Skip ]
webkit.org/b/86114 [ Debug ] animations/combo-transform-translate+scale.html [ Failure Pass ]
webkit.org/b/92279 [ Release ] http/tests/inspector/resource-har-pages.html [ Failure Timeout Pass ]
webkit.org/b/92279 [ Debug ] http/tests/inspector/resource-har-pages.html [ Failure Slow Pass ]
webkit.org/b/86674 [ Debug ] fast/dom/HTMLObjectElement/beforeload-set-text-crash.xhtml [ Pass Timeout ]
# Ref-tests can't have platform specific results.
webkit.org/b/87175 [ Win Linux ] fast/regions/floats-basic-in-variable-width-regions.html [ ImageOnlyFailure ]
webkit.org/b/87175 [ Win Linux MountainLion ] fast/regions/overflow-in-uniform-regions.html [ ImageOnlyFailure ]
# See http://crbug.com/244285 for the crash instance.
webkit.org/b/87321 fast/history/history-subframe-with-name.html [ Failure Pass Timeout Crash ]
webkit.org/b/87321 [ Win Debug ] fast/history/history-traversal-is-asynchronous.html [ Pass Timeout ]
# Shadow DOM for replaced elements is not rendered correctly yet.
webkit.org/b/90860 fast/dom/shadow/shadowdom-for-object-complex-shadow.html [ ImageOnlyFailure ]
webkit.org/b/90860 fast/dom/shadow/shadowdom-for-object-without-shadow.html [ ImageOnlyFailure ]
webkit.org/b/91487 fast/dom/shadow/shadowdom-for-select-complex-shadow.html [ ImageOnlyFailure ]
webkit.org/b/91487 fast/dom/shadow/shadowdom-for-select-without-shadow.html [ ImageOnlyFailure ]
webkit.org/b/91488 fast/dom/shadow/shadowdom-for-output-only-shadow.html [ ImageOnlyFailure ]
webkit.org/b/91489 fast/dom/shadow/shadowdom-for-fieldset-complex-shadow.html [ ImageOnlyFailure ]
webkit.org/b/91489 fast/dom/shadow/shadowdom-for-fieldset-only-shadow.html [ ImageOnlyFailure ]
# a:enabled and area:enabled are not correctly implemented yet.
webkit.org/b/102349 fast/dom/shadow/pseudoclass-update-enabled-anchor.html [ ImageOnlyFailure ]
webkit.org/b/102349 fast/dom/shadow/pseudoclass-update-enabled-area.html [ ImageOnlyFailure ]
# Requires setUseDeferredFrameLoading() API from LayoutTestController.
webkit.org/b/87652 http/tests/appcache/load-from-appcache-defer-resume-crash.html [ Skip ]
webkit.org/b/88939 fast/events/before-unload-adopt-subframe-to-outside.html [ Failure Pass ]
# The test has its own notion of timeouts that manifest timeouts as FAIL.
webkit.org/b/88833 media/video-played-collapse.html [ Failure Pass ]
webkit.org/b/88833 [ Win Debug ] media/track/track-kind.html [ Pass Timeout ]
crbug.com/249293 [ Linux Debug ] media/track/track-removal-crash.html [ Pass Crash ]
webkit.org/b/88832 [ Win ] http/tests/xmlhttprequest/origin-exact-matching.html [ Pass Timeout ]
webkit.org/b/89702 virtual/softwarecompositing/scaling/tiled-layer-recursion.html [ ImageOnlyFailure Pass ]
webkit.org/b/89820 [ Linux Win ] fast/text/hyphen-min-preferred-width.html [ ImageOnlyFailure ]
# webkitIsFullScreen does not have the correct value after an iframe exits fullscreen
webkit.org/b/90704 fullscreen/exit-full-screen-iframe.html [ Failure Pass Timeout ]
webkit.org/b/90746 fast/multicol/column-span-parent-continuation-crash.html [ Pass Timeout ]
webkit.org/b/90980 fast/forms/textarea/textarea-state-restore.html [ Failure Pass Timeout ]
webkit.org/b/91183 http/tests/w3c/webperf/approved/HighResolutionTime/test_cross_frame_start.html [ Failure Pass ]
# started failing around Chrome r207326 to r207404, but only on main waterfall
# Flakes also on the V8 waterfall on Win7.
Bug(senorblanco) [ Win ] http/tests/w3c/webperf/submission/Google/HighResolutionTime/worker-dedicated-basic.html [ Failure Pass ]
# Fails since creation in 122663
webkit.org/b/91372 [ Win ] css2.1/20110323/vertical-align-boxes-001.htm [ ImageOnlyFailure ]
#webkit.org/b/91445 [ XP ] plugins/embed-attributes-style.html [ Pass Timeout ]
webkit.org/b/92019 [ Debug ] fast/text/international/inline-plaintext-relayout-with-leading-neutrals.html [ ImageOnlyFailure Pass ]
webkit.org/b/92022 [ Debug ] svg/W3C-SVG-1.1/struct-dom-06-b.svg [ Failure Pass ]
crbug.com/243711 [ Lion Release ] svg/W3C-SVG-1.1/struct-dom-06-b.svg [ Failure ]
webkit.org/b/92027 fast/performance/performance-now-timestamps.html [ Failure Pass ]
webkit.org/b/99333 [ Debug ] plugins/update-widgets-crash.html [ Pass Timeout ]
webkit.org/b/93566 [ Debug ] fast/parser/iframe-sets-parent-to-javascript-url.html [ Failure Pass ]
webkit.org/b/93567 [ Debug ] fast/parser/javascript-url-compat-mode.html [ Failure Pass ]
# Added by bug 89826
webkit.org/b/94003 [ Win ] fast/css/word-spacing-characters-complex-text.html [ ImageOnlyFailure ]
webkit.org/b/94017 [ Win ] css2.1/20110323/c541-word-sp-000.htm [ ImageOnlyFailure ]
webkit.org/b/95581 [ XP ] http/tests/misc/javascript-url-stop-loaders.html [ Pass Timeout ]
crbug.com/240374 compositing/overlap-blending/reflection-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 virtual/softwarecompositing/overlap-blending/reflection-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 compositing/overlap-blending/children-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 compositing/overlap-blending/children-opacity-no-overlap.html [ ImageOnlyFailure ]
crbug.com/240374 virtual/softwarecompositing/overlap-blending/preserves3d-opacity.html [ ImageOnlyFailure ]
webkit.org/b/95588 [ Mac ] fast/dom/shadow/shadowdom-for-textarea-complex-shadow.html [ ImageOnlyFailure ]
# Failing due to sub-pixel layout.
webkit.org/b/95136 fast/css/sticky/sticky-left-percentage.html [ ImageOnlyFailure ]
webkit.org/b/95136 [ Linux Win ] fast/css/sticky/sticky-writing-mode-vertical-lr.html [ ImageOnlyFailure ]
webkit.org/b/95136 [ Linux Win ] fast/css/sticky/sticky-writing-mode-vertical-rl.html [ ImageOnlyFailure ]
# Does not yet support new web notifications TestRunner API
webkit.org/b/95506 http/tests/notifications [ Skip ]
webkit.org/b/96441 [ Win Debug ] fast/hidpi/gradient-with-scaled-ancestor.html [ ImageOnlyFailure ]
crbug.com/248155 [ Win ] virtual/gpu/fast/hidpi/gradient-with-scaled-ancestor.html [ Slow ImageOnlyFailure Pass ]
crbug.com/248155 [ Linux ] virtual/gpu/fast/hidpi/gradient-with-scaled-ancestor.html [ ImageOnlyFailure Pass ]
webkit.org/b/96441 crbug.com/245611 [ Win7 ] virtual/gpu/fast/hidpi/image-set-as-background.html [ ImageOnlyFailure Pass Timeout ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-as-background.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win7 Release ] virtual/gpu/fast/hidpi/image-set-background-repeat-without-size.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-background-repeat-without-size.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win7 Release ] virtual/gpu/fast/hidpi/image-set-background-repeat.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-background-repeat.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win7 Release ] virtual/gpu/fast/hidpi/image-set-border-image-simple.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-border-image-simple.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win7 Release ] virtual/gpu/fast/hidpi/image-set-in-content-dynamic.html [ ImageOnlyFailure Pass Timeout ]
crbug.com/245611 [ Win7 ] fast/hidpi/image-set-in-content-dynamic.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win Release ] virtual/gpu/fast/hidpi/image-set-out-of-order.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-out-of-order.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] virtual/gpu/fast/hidpi/image-set-simple.html [ ImageOnlyFailure Pass Timeout ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-simple.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win Release ] virtual/gpu/fast/hidpi/image-set-without-specified-width.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Win ] fast/hidpi/image-set-without-specified-width.html [ ImageOnlyFailure Pass ]
crbug.com/245611 [ Linux ] fast/hidpi/video-controls-in-hidpi.html [ ImageOnlyFailure Pass ]
crbug.com/248415 [ Win Debug ] virtual/gpu/fast/hidpi/image-set-out-of-order.html [ ImageOnlyFailure Timeout Pass ]
crbug.com/248415 [ Win Debug ] virtual/gpu/fast/hidpi/image-set-without-specified-width.html [ ImageOnlyFailure Timeout Pass ]
webkit.org/b/98087 fast/css/lang-mapped-to-webkit-locale-dynamic.xhtml [ Failure Pass ]
webkit.org/b/96833 [ Debug ] svg/carto.net/selectionlist.svg [ ImageOnlyFailure Pass ]
# TestPlugin needs GL.
crbug.com/230257 virtual/softwarecompositing/plugins/webplugin-alpha.html [ ImageOnlyFailure ]
crbug.com/230257 virtual/softwarecompositing/plugins/webplugin-no-alpha.html [ ImageOnlyFailure ]
crbug.com/230257 virtual/softwarecompositing/plugins/webplugin-reflection.html [ ImageOnlyFailure ]
webkit.org/b/97179 http/tests/css/link-css-disabled-value-with-slow-loading-sheet.html [ Failure Pass ]
webkit.org/b/97296 [ Win ] fast/text/international/hebrew-selection.html [ ImageOnlyFailure ]
crbug.com/b/242955 [ Linux ] compositing/gestures/gesture-tapHighlight-simple-longPress.html [ ImageOnlyFailure Pass ]
webkit.org/b/98275 media/event-queue-crash.html [ Skip ]
#webkit.org/b/98811 [ Mac ] fast/transforms/transformed-focused-text-input.html [ ImageOnlyFailure Pass ]
webkit.org/b/99604 [ Win ] http/tests/workers/text-encoding.html [ Pass Timeout ]
# This ref-test doesn't work on Chromium Mac ("Test" is offset).
webkit.org/b/101093 [ Mac ] fast/sub-pixel/float-wrap-zoom.html [ ImageOnlyFailure ]
# Flaky on win7 since at least r162410
webkit.org/b/99886 [ Win7 Debug ] fast/dom/shadow/input-with-validation.html [ ImageOnlyFailure Pass ]
webkit.org/b/78830 svg/repaint/image-with-clip-path.svg [ ImageOnlyFailure Pass ]
# Only ready for JSC so far, not fixed in v8 yet.
webkit.org/b/97499 http/tests/security/script-crossorigin-onerror-information.html [ Failure ]
webkit.org/b/97499 http/tests/security/script-no-crossorigin-onerror-should-be-sanitized.html [ Failure ]
webkit.org/b/100023 [ Mac ] fast/sub-pixel/file-upload-control-at-fractional-offset.html [ ImageOnlyFailure ]
webkit.org/b/100806 [ Linux Win7 ] fast/css/font-face-unicode-range.html [ Failure ImageOnlyFailure ]
webkit.org/b/100806 [ Win7 ] fast/css/font-face-download-error.html [ Failure Pass ]
webkit.org/b/102131 fast/workers/worker-exception-during-navigation.html [ Crash Pass ]
webkit.org/b/102264 [ Debug ] css3/filters/custom/custom-filter-property-computed-style.html [ Pass Timeout ]
webkit.org/b/102724 svg/carto.net/colourpicker.svg [ ImageOnlyFailure Pass ]
crbug.com/237003 [ Win Mac Debug ] http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_iframe_self_navigation.html [ Failure Pass ]
crbug.com/237003 http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_dynamic_insertion.html [ Failure Pass Timeout ]
crbug.com/237003 [ Win ] http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_initiator_types.html [ Failure Pass Timeout ]
crbug.com/237003 [ Mac Linux ] http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_redirects.html [ Failure ]
crbug.com/237003 [ Win ] http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_redirects.html [ Failure Timeout ]
#webkit.org/b/103148 [ Lion ] fast/frames/iframe-scaling-with-scroll.html [ ImageOnlyFailure Pass ]
#webkit.org/b/103148 [ Lion ] fast/frames/iframe-scrolling-attribute.html [ ImageOnlyFailure Pass ]
#webkit.org/b/103148 [ Linux ] fast/text/atsui-small-caps-punctuation-size.html [ Failure ImageOnlyFailure Pass ]
webkit.org/b/103446 [ Mac ] http/tests/canvas/canvas-slow-font-loading.html [ ImageOnlyFailure ]
webkit.org/b/103471 http/tests/navigation/slowmetaredirect-basic.html [ Pass Timeout ]
# New tests added in r136492 that do not work in chromium
webkit.org/b/99800 fast/harness/perftests/runs-per-second-iterations.html [ Pass Timeout ]
webkit.org/b/104092 fast/frames/paint-iframe-background.html [ Failure Pass ]
webkit.org/b/104283 [ Win7 ] fonts/monospace.html [ Failure Pass ]
webkit.org/b/104489 [ Win ] http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_mark.html [ Failure Pass ]
webkit.org/b/104489 [ Win ] http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_clearMarks.html [ Failure Pass ]
webkit.org/b/104489 [ Win ] http/tests/w3c/webperf/submission/Intel/user-timing/test_user_timing_measure_associate_with_navigation_timing.html [ Failure Pass ]
# No support for exposing in-band text tracks
crbug.com/230708 media/track/track-in-band.html [ Skip ]
crbug.com/230708 media/track/track-in-band-cues-added-once.html [ Skip ]
crbug.com/230708 media/track/track-in-band-style.html [ Skip ]
crbug.com/230708 media/track/track-in-band-legacy-api.html [ Skip ]
webkit.org/b/104489 http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_attribute_order.html [ Failure Pass Timeout ]
webkit.org/b/104489 http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_script_types.html [ Failure Pass Timeout ]
webkit.org/b/105595 [ Mac ] svg/text/alt-glyph-for-surrogate-pair.svg [ ImageOnlyFailure ]
webkit.org/b/106238 [ Win ] svg/dynamic-updates/SVGUseElement-dom-href1-attr.html [ ImageOnlyFailure Pass ]
webkit.org/b/106238 [ Win ] svg/dynamic-updates/SVGUseElement-svgdom-href1-prop.html [ ImageOnlyFailure Pass ]
webkit.org/b/106249 [ Win ] fast/speech/scripted/navigate-away.html [ Failure Pass ]
webkit.org/b/106387 crbug.com/238363 [ Debug ] svg/W3C-SVG-1.1/animate-elem-80-t.svg [ Crash ImageOnlyFailure Pass ]
webkit.org/b/106387 [ Debug ] svg/W3C-SVG-1.1/filters-comptran-01-b.svg [ ImageOnlyFailure Pass ]
webkit.org/b/106390 [ Win ] svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ ImageOnlyFailure Pass ]
webkit.org/b/106390 [ Win ] svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ ImageOnlyFailure Pass ]
webkit.org/b/106426 inspector/geolocation-error.html [ Failure Pass ]
webkit.org/b/106426 inspector/geolocation-success.html [ Failure Pass ]
webkit.org/b/106426 [ XP ] inspector/geolocation-watchPosition.html [ Failure Pass ]
#webkit.org/b/106858 [ Debug ] scrollingcoordinator/non-fast-scrollable-region-transformed-iframe.html [ ImageOnlyFailure Pass ]
webkit.org/b/107962 [ Release ] http/tests/loading/redirect-methods.html [ Failure Pass ]
crbug.com/239549 inspector-protocol/heap-profiler/heap-snapshot-with-detached-dom-tree.html [ Failure Pass ]
webkit.org/b/110247 [ Debug ] fast/workers/storage/interrupt-database.html [ Crash Pass Slow ]
# Tests failing since applyPageScaleFactorInCompositor enabled
crbug.com/225184 fast/repaint/relayout-fixed-position-after-scale.html [ ImageOnlyFailure ]
crbug.com/225184 inspector/elements/highlight-node-scaled.html [ Failure Timeout ]
crbug.com/225184 svg/as-image/image-respects-pageScaleFactor.html [ Failure ImageOnlyFailure ]
crbug.com/225184 [ Mac Linux ] fast/text/descent-clip-in-scaled-page.html [ ImageOnlyFailure ]
# Viewport tag tests involving "height" parameter.
crbug.com/242336 fast/viewport/viewport-2.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-31.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-32.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-40.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-41.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-48.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-53.html [ Failure ]
crbug.com/242336 fast/viewport/viewport-117.html [ Failure ]
# Pixel tests for RTL iframe scrollbar is erroneous. Cannot observe on actual browser.
crbug.com/227473 [ Debug ] virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow-scrolled.html [ Failure Pass ]
crbug.com/227473 [ Debug ] compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html [ Failure Pass ]
crbug.com/192172 [ Debug ] compositing/rtl/rtl-iframe-absolute-overflow.html [ Failure Pass ]
crbug.com/192172 [ Debug ] virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow.html [ Failure Pass ]
crbug.com/192172 [ Debug ] compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ Failure Pass ]
crbug.com/192172 [ Debug ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ Failure Pass ]
crbug.com/192172 [ Debug ] compositing/rtl/rtl-iframe-fixed-overflow.html [ Failure Pass ]
crbug.com/192172 [ Debug ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow.html [ Failure Pass ]
# The html5lib tests are all too slow to run in Debug, largely due to v8 per-document boot-up.
# V8 bug: https://code.google.com/p/v8/issues/detail?id=2567
webkit.org/b/110876 [ Debug ] html5lib/generated/ [ Skip ]
# Some of these tests are slow on the webkit.org Linux Release bot as well.
webkit.org/b/112381 [ Win Linux Release ] html5lib/generated/run-tests16-data.html [ Slow ]
webkit.org/b/111524 [ Debug ] fast/dom/HTMLDocument/document-special-properties.html [ Pass Timeout ]
webkit.org/b/111872 fast/dom/title-directionality-removeChild.html [ Failure Pass ]
# Subtle pixel difference in debug only.
webkit.org/b/112058 [ Debug SnowLeopard ] svg/custom/foreign-object-skew.svg [ ImageOnlyFailure ]
webkit.org/b/112193 fast/dom/Window/window-postmessage-clone.html [ Failure Pass ]
webkit.org/b/112621 [ Win Linux ] fast/forms/datalist/update-range-with-datalist.html [ ImageOnlyFailure Pass ]
webkit.org/b/112629 http/tests/xmlhttprequest/send-array-buffer.html [ Failure Pass ]
webkit.org/b/112643 http/tests/history/redirect-js-location-0-seconds.html [ Failure Pass ]
webkit.org/b/112980 [ Win Mac ] fast/frames/seamless/seamless-form-post-override.html [ Failure Pass ]
webkit.org/b/112980 [ Win Mac ] fast/frames/seamless/seamless-window-location-replace.html [ Failure Pass ]
webkit.org/b/112980 http/tests/navigation/lockedhistory-iframe.html [ Failure Pass ]
webkit.org/b/112980 http/tests/navigation/changing-frame-hierarchy-in-onload.html [ Failure Pass ]
webkit.org/b/112984 [ Win ] fast/mediastream/RTCPeerConnection-statsSelector.html [ Failure Pass ]
webkit.org/b/112987 [ Mac Win Release ] http/tests/xmlhttprequest/origin-whitelisting-https.html [ Failure Pass ]
webkit.org/b/113128 fast/files/xhr-response-blob.html [ Failure Pass ]
webkit.org/b/113178 [ Linux ] fast/css/font-family-pictograph.html [ Failure Pass ]
webkit.org/b/112610 [ Win ] fast/text/word-space-with-kerning-3.html [ ImageOnlyFailure ]
crbug.com/223332 svg/css/root-shadow-offscreen.svg [ ImageOnlyFailure ]
crbug.com/231154 fast/forms/textarea/textarea-appearance-basic.html [ Failure Pass Timeout ]
webkit.org/b/113487 [ Debug ] plugins/npruntime/npruntime-calls-with-null-npp.html [ Pass Timeout ]
webkit.org/b/113555 fast/forms/state-restore-per-form.html [ Pass Timeout ]
crbug.com/239811 crbug.com/229113 http/tests/history/redirect-js-location-assign-0-seconds.html [ Failure Pass ]
crbug.com/230554 [ Linux Mac Debug ] plugins/drag-events.html [ Crash Pass ]
# From WebKit's generic expectations.
# pending functional patch and per-port verification
webkit.org/b/109954 css3/line-break/line-break-auto-hyphens.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-auto-half-kana.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-loose-iteration-marks.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-auto-sound-marks.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-loose-prefixes.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-loose-hyphens.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-normal-sound-marks.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-strict-sound-marks.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-loose-inseparables.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-strict-half-kana.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-loose-sound-marks.html [ ImageOnlyFailure ]
webkit.org/b/109954 css3/line-break/line-break-normal-hyphens.html [ ImageOnlyFailure ]
webkit.org/b/109954 [ Mac ] css3/line-break/line-break-loose-postfixes.html [ ImageOnlyFailure ]
webkit.org/b/109954 [ Mac ] css3/line-break/line-break-loose-centered.html [ ImageOnlyFailure ]
# pending implementation completion and feature enabling
webkit.org/b/109570 media/track/regions-webvtt [ Skip ]
crbug.com/231721 [ Win ] svg/custom/invisible-text-after-scrolling.xhtml [ Pass Timeout ]
# The image output is wrong (some red dots can be seen).
crbug.com/232061 [ Linux ] fast/text/zero-font-size-2.html [ ImageOnlyFailure ]
crbug.com/233223 http/tests/history/redirect-js-location-href-0-seconds.html [ Failure Pass ]
crbug.com/233260 [ Win ] fast/preloader/script.html [ Failure ]
#crbug.com/233585 media/media-document-audio-repaint.html [ ImageOnlyFailure ]
crbug.com/234069 [ Mac Release ] fast/events/touch/gesture/long-press-drag-drop-touch-editing-combined.html [ Failure Pass ]
crbug.com/234891 fast/dom/timer-throttling-hidden-page.html [ Failure Pass ]
crbug.com/227397 svg/animations/animateMotion-additive-1.svg [ ImageOnlyFailure ]
crbug.com/224317 http/tests/security/canvas-remote-read-data-url-svg-image.html [ Failure Pass ]
crbug.com/234758 [ Win Debug ] tables/mozilla/other/test3.html [ Crash Pass ]
crbug.com/234758 [ Debug ] jquery/traversing.html [ Pass Timeout ]
crbug.com/234758 [ Lion ] virtual/softwarecompositing/scrollbars/custom-composited-different-track-parts.html [ ImageOnlyFailure Pass ]
crbug.com/234758 [ Debug ] fast/parser/nested-fragment-parser-crash.html [ Pass Timeout ]
crbug.com/234758 [ Debug ] http/tests/workers/terminate-during-sync-operation.html [ Pass Timeout ]
crbug.com/234758 [ Win7 ] fast/frames/seamless/seamless-nested-crash.html [ Crash Pass Timeout ]
crbug.com/234758 [ Mac Debug ] fast/workers/worker-document-leak.html [ Pass Timeout ]
crbug.com/237250 [ SnowLeopard Debug ] media/video-source-load.html [ Crash Pass ]
crbug.com/237250 [ SnowLeopard Debug ] media/media-fragments/TC0081.html [ Crash Pass ]
crbug.com/237250 [ SnowLeopard Debug ] media/media-fragments/TC0070.html [ Crash Pass ]
crbug.com/237250 [ SnowLeopard Debug ] media/video-zoom.html [ Crash Pass ]
crbug.com/237250 [ SnowLeopard Debug ] media/video-set-rate-from-pause.html [ Crash Pass ]
crbug.com/237250 [ Lion Debug ] media/video-zoom-controls.html [ Crash Pass ]
crbug.com/237270 [ Win7 ] transforms/2d/transform-2d.html [ Pass Timeout ]
crbug.com/237270 [ Debug ] fast/dom/SelectorAPI/resig-SelectorsAPI-test.xhtml [ Pass Timeout ]
#crbug.com/237270 [ Debug ] fast/sub-pixel/transformed-iframe-copy-on-scroll.html [ Pass Timeout ]
crbug.com/251129 [ Linux Win Debug ] http/tests/history/redirect-js-form-submit-0-seconds.html [ Failure Pass ]
# Gets a "Maximum call stack size exceeded" exception in debug that doesn't happen in release.
crbug.com/14885 [ Debug ] fast/js/JSON-stringify.html [ Failure ]
crbug.com/14885 [ Mac Release ] fast/js/JSON-stringify.html [ Failure ]
# started failing around the V8 roll in http://crrev.com/206035
# started timing out around r154246..r154251
crbug.com/260744 crbug.com/249894 [ Debug ] fast/js/regress/inline-arguments-access.html [ Pass Failure Crash Timeout ]
# Caused by http://trac.webkit.org/changeset/56394.
crbug.com/143475 [ Win ] http/tests/xmlhttprequest/xmlhttprequest-50ms-download-dispatch.html [ Failure Pass Timeout ]
crbug.com/130259 [ Linux ] fast/forms/checkbox/checkbox-appearance-basic.html [ ImageOnlyFailure Pass ]
crbug.com/130259 [ Linux ] fast/forms/datalist/input-appearance-range-with-datalist-zoomed.html [ ImageOnlyFailure Pass ]
crbug.com/130259 [ Linux ] fast/forms/radio/radio-appearance-basic.html [ ImageOnlyFailure Pass ]
crbug.com/130259 [ Linux ] fast/forms/range/range-appearance-basic.html [ ImageOnlyFailure Pass ]
crbug.com/14866009 [ Mac Win ] fast/forms/checkbox/checkbox-appearance-basic.html [ Failure ImageOnlyFailure Pass ]
crbug.com/14866009 [ Mac Win ] fast/forms/radio/radio-appearance-basic.html [ Failure ImageOnlyFailure Pass ]
crbug.com/86338 fast/loader/file-protocol-fragment.html [ Failure Pass ]
webkit.org/b/81697 fast/notifications/notifications-request-permission.html [ Failure Pass ]
#crbug.com/225184 [ Debug ] scrollingcoordinator/non-fast-scrollable-region-scaled-iframe.html [ ImageOnlyFailure Pass ]
crbug.com/237270 fast/js/stack-overflow-arrity-catch.html [ Failure Pass ]
crbug.com/238082 [ Win Mac Linux Debug ] media/media-continues-playing-after-replace-source.html [ Crash Pass Timeout ]
crbug.com/88588 [ Debug ] fast/lists/inlineBoxWrapperNullCheck.html [ Failure Pass ]
crbug.com/252344 http/tests/history/redirect-js-document-location-0-seconds.html [ Failure Pass ]
webkit.org/b/92811 [ Win Linux Debug ] compositing/video-page-visibility.html [ ImageOnlyFailure ]
webkit.org/b/92811 [ Mac ] compositing/video-page-visibility.html [ ImageOnlyFailure ]
webkit.org/b/92811 [ Win Linux Debug ] virtual/softwarecompositing/video-page-visibility.html [ ImageOnlyFailure ]
crbug.com/249580 svg/text/font-size-below-point-five.svg [ Failure ImageOnlyFailure Pass ]
# See http://crbug.com/244167 for the failure
crbug.com/236344 fast/forms/calendar-picker/week-picker-key-operations.html [ Slow Failure Pass ]
crbug.com/237270 fast/css/custom-font-xheight.html [ Pass Timeout ]
crbug.com/237270 fast/css/sticky/sticky-top-zoomed.html [ Pass Timeout ]
crbug.com/237270 fast/css/variables/invalid-font-reference.html [ Pass Timeout ]
crbug.com/237270 http/tests/history/replacestate-post-to-get-2.html [ Pass Timeout ]
crbug.com/237270 http/tests/history/replacestate-post-to-get.html [ Pass Timeout ]
crbug.com/237270 http/tests/images/jpeg-partial-load.html [ Pass Timeout ]
crbug.com/237270 http/tests/images/png-partial-load.html [ Pass Timeout ]
crbug.com/237270 http/tests/images/png-partial-load-no-alpha.html [ Pass Timeout ]
crbug.com/240400 fast/dom/console-log-stack-overflow.html [ Failure Pass ]
crbug.com/240515 [ Mac ] fast/dom/HTMLMeterElement/meter-styles.html [ ImageOnlyFailure Pass ]
crbug.com/240632 fast/loader/javascript-url-iframe-remove-on-navigate.html [ Skip ]
crbug.com/241576 [ Win ] http/tests/appcache [ Pass Timeout ]
crbug.com/241481 http/tests/w3c/webperf/approved/navigation-timing/html/test_timing_attributes_order.html [ Failure Pass ]
crbug.com/241665 fast/events/touch/emulate-touch-events.html [ Failure Pass ]
crbug.com/242511 [ Mac Debug ] svg/custom/uri-reference-handling.svg [ Crash Pass ]
# Seems to be flaky on all platforms
crbug.com/244921 http/tests/navigation/back-twice-without-commit.html [ Failure Pass ]
crbug.com/248938 virtual/threaded/animations/animation-direction-reverse-fill-mode.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/suspend-transform-animation.html [ Slow ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/animation-direction-reverse-fill-mode-hardware.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/3d/state-at-end-event-transform.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/3d/change-transform-in-end-event.html [ Slow ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/cross-fade-background-image.html [ Pass ImageOnlyFailure ]
crbug.com/248938 [ Win Release ] virtual/threaded/animations/cross-fade-background-image.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-direction-reverse.html [ Pass Failure Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/missing-from-to.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/change-keyframes.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/animations/missing-values-last-keyframe.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Mac Debug ] virtual/threaded/animations/missing-from-to-transforms.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/dynamic-stylesheet-loading.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/cross-fade-webkit-mask-box-image.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Mac Win ] virtual/threaded/animations/cross-fade-border-image-source.html [ Pass ImageOnlyFailure ]
crbug.com/248938 [ Mac Debug ] virtual/threaded/animations/missing-keyframe-properties.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/missing-keyframe-properties.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/suspend-resume-animation.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/3d/transform-origin-vs-functions.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/3d/matrix-transform-type-animation.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Release ] virtual/threaded/animations/3d/matrix-transform-type-animation.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/3d/replace-filling-transform.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/keyframes-out-of-order.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/change-keyframes-name.html [ Pass Failure Timeout ]
crbug.com/248938 [ Linux Debug ] virtual/threaded/animations/animation-add-events-in-handler.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-welcome-safari.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/opacity-transform-animation.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/combo-transform-rotate+scale.html [ Pass Failure ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/combo-transform-rotate+scale.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/stop-animation-on-suspend.html [ Pass Failure Timeout Crash ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/keyframes-comma-separated.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/animations/play-state-paused.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Mac ] virtual/threaded/animations/cross-fade-webkit-mask-image.html [ Pass ImageOnlyFailure ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/cross-fade-webkit-mask-image.html [ Pass ImageOnlyFailure ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/cross-fade-webkit-mask-image.html [ Slow ]
crbug.com/248938 [ Win ] virtual/threaded/animations/animation-offscreen-to-onscreen.html [ Pass Timeout ]
crbug.com/248938 [ Mac Debug ] virtual/threaded/animations/animation-offscreen-to-onscreen.html [ Pass Timeout ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/additive-transform-animations.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/additive-transform-animations.html [ Pass Timeout ]
crbug.com/248938 [ Mac ] virtual/threaded/animations/additive-transform-animations.html [ Pass ImageOnlyFailure ]
crbug.com/248938 virtual/threaded/animations/fill-mode-forwards.html [ Pass Failure Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/transition-and-animation-3.html [ Pass Failure ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/keyframes.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/animation-on-inline-crash.html [ Pass Timeout ]
crbug.com/248938 [ Linux Release ] virtual/threaded/animations/animation-on-inline-crash.html [ Slow ]
crbug.com/248938 virtual/threaded/animations/play-state-suspend.html [ Pass Failure Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/missing-keyframe-properties-timing-function.html [ Pass Failure ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/timing-functions.html [ Pass Failure Timeout ]
crbug.com/248938 [ Mac Linux Debug ] virtual/threaded/animations/missing-values-first-keyframe.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Win Release ] virtual/threaded/animations/missing-values-first-keyframe.html [ Pass Timeout ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/fill-mode.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/import.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-direction-normal.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 virtual/threaded/animations/suspend-resume-animation-events.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/play-state.html [ Pass Failure Timeout ]
crbug.com/248938 [ Mac Linux ] virtual/threaded/animations/transition-and-animation-1.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/transition-and-animation-1.html [ Slow ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/combo-transform-translate+scale.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/animation-delay-changed.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/change-one-anim.html [ Pass Failure ]
crbug.com/248938 [ Win Linux ] virtual/threaded/animations/change-transform-style-during-animation.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/3d/transform-perspective.html [ Slow ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/matrix-anim.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/animations/animation-direction-reverse-hardware.html [ Slow ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/override-transition-crash.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-nested.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/transitions/interrupted-all-transition.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-multiple-03.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/hang-with-bad-transition-list.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/transitions/extra-transition.html [ Pass Failure Timeout ]
crbug.com/248938 [ Debug ] virtual/threaded/transitions/interrupt-zero-duration.html [ Pass Failure Timeout ]
crbug.com/248938 [ Mac ] virtual/threaded/transitions/move-after-transition.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/move-after-transition.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/cubic-bezier-overflow-color.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/svg-text-shadow-transition.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 virtual/threaded/transitions/interrupt-transform-transition.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/transitions/3d/interrupted-transition.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/mask-transitions.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/cubic-bezier-overflow-length.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/interrupted-accelerated-transition.html [ Pass Failure Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/bad-transition-shorthand-crash.html [ Pass Timeout Crash ]
crbug.com/248938 virtual/threaded/transitions/suspend-transform-transition.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 virtual/threaded/transitions/start-transform-transition.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/opacity-transition-zindex.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/transition-end-event-transform.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/change-values-during-transition.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-multiple-04.html [ Pass Failure ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/cubic-bezier-overflow-svg-length.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-destroy-iframe.html [ Pass Timeout ]
crbug.com/248938 [ Win Mac ] virtual/threaded/transitions/steps-timing-function.html [ Pass Failure ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/transition-end-event-rendering.html [ Pass Timeout ]
crbug.com/248938 [ Win ] virtual/threaded/transitions/cubic-bezier-overflow-shadow.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/cancel-transition.html [ Pass Failure Timeout ]
crbug.com/248938 [ Debug ] virtual/threaded/transitions/longhand-vs-shorthand-initial.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/transition-end-event-unprefixed-02.html [ Pass Failure ]
crbug.com/255724 [ Mac Debug ] animations/animation-direction-normal.html [ Failure ]
crbug.com/255726 [ Debug ] compositing/contents-opaque/visibility-hidden.html [ Pass Failure ]
# Switching to content shell failures
crbug.com/178709 plugins/document-open.html [ Failure ]
crbug.com/178744 plugins/npruntime/browser-object-identity.html [ Failure ]
crbug.com/178745 [ Debug ] plugins/open-and-close-window-with-plugin.html [ Crash ]
crbug.com/178745 [ Release ] plugins/open-and-close-window-with-plugin.html [ Failure ]
crbug.com/223583 http/tests/filesystem/no-cache-filesystem-url.html [ Skip ]
crbug.com/231859 [ Win Linux ] compositing/plugins/invalidate_rect.html [ Failure ]
crbug.com/231863 compositing/visibility/visibility-composited-animation.html [ Pass ImageOnlyFailure ]
crbug.com/231864 [ Linux ] css3/font-feature-settings-rendering.html [ ImageOnlyFailure ]
crbug.com/231865 editing/pasteboard/copy-image-with-alt-text.html [ Failure ]
crbug.com/231866 fast/backgrounds/animated-gif-as-background.html [ Pass ImageOnlyFailure ]
crbug.com/231867 fast/css-grid-layout/grid-disabled-by-default.html [ Failure ]
crbug.com/231868 [ Linux ] fast/css/font-face-multiple-faces.html [ ImageOnlyFailure ]
crbug.com/231869 [ Linux ] fast/css/font-face-opentype.html [ ImageOnlyFailure ]
crbug.com/231870 [ Linux ] fast/css/font-face-synthetic-bold-italic.html [ ImageOnlyFailure ]
crbug.com/231873 [ Linux ] fast/css/font-face-weight-matching.html [ ImageOnlyFailure ]
crbug.com/231874 [ Linux ] fast/css/font-face-woff.html [ ImageOnlyFailure ]
crbug.com/231875 fast/css/preserve-user-specified-zoom-level-on-reload.html [ Failure ]
crbug.com/231878 fast/dom/HTMLLinkElement/prefetch.html [ Failure ]
crbug.com/231878 fast/dom/HTMLLinkElement/subresource.html [ Failure ]
crbug.com/231880 fast/dom/Window/open-window-min-size.html [ Failure ]
crbug.com/231908 fast/dom/rtl-scroll-to-leftmost-and-resize.html [ Failure ]
crbug.com/231910 fast/dom/vertical-scrollbar-in-rtl.html [ Failure ]
crbug.com/231914 fast/forms/state-restore-broken-state.html [ Failure ]
crbug.com/231917 [ Win Mac Release ] fast/parser/external-entities-in-xslt.xml [ Failure ]
crbug.com/231917 [ Win Lion Debug ] fast/parser/external-entities-in-xslt.xml [ Failure ]
crbug.com/231918 fast/regions/css-regions-disabled.html [ Failure ]
crbug.com/231922 [ Linux Mac ] fast/workers/storage/test-authorizer-sync.html [ Failure ]
crbug.com/231922 [ Mac ] fast/workers/storage/test-authorizer.html [ Failure ]
crbug.com/231922 [ Mac ] storage/websql/test-authorizer.html [ Failure ]
crbug.com/231926 http/tests/loading/progress-finished-callback.html [ Failure ]
crbug.com/231927 http/tests/misc/createElementNamespace1.xml [ Failure ]
crbug.com/231929 http/tests/navigation/no-referrer-target-blank.html [ Failure ]
crbug.com/231931 http/tests/security/local-user-CSS-from-remote.html [ Failure ]
crbug.com/231932 http/tests/security/redirect-BLOCKED-to-localURL.html [ Failure ]
crbug.com/231940 [ Mac ] storage/websql/sql-error-codes.html [ Failure ]
crbug.com/231942 svg/dom/fuzz-path-parser.html [ Failure ]
crbug.com/231859 [ Win Linux ] virtual/softwarecompositing/plugins/invalidate_rect.html [ Failure ]
crbug.com/233884 animations/3d/transform-origin-vs-functions.html [ Pass Failure ]
crbug.com/233887 plugins/call-as-function.html [ Failure ]
crbug.com/233888 virtual/softwarecompositing/reflections/nested-reflection-animated.html [ Pass ImageOnlyFailure ]
crbug.com/235449 fast/loader/stateobjects/state-attribute-history-getter.html [ Failure Pass ]
crbug.com/235448 fast/loader/stateobjects/popstate-fires-on-history-traversal.html [ Failure Pass ]
crbug.com/235110 [ Mac ] virtual/softwarecompositing [ Skip ]
crbug.com/243231 [ Mac ] animations/suspend-transform-animation.html [ ImageOnlyFailure Pass ]
crbug.com/246143 [ Win Linux Debug ] animations/suspend-transform-animation.html [ ImageOnlyFailure Pass ]
crbug.com/243242 [ Linux Win ] virtual/softwarecompositing/layer-creation/overlap-animation-container.html [ Failure Pass ]
crbug.com/243248 [ Mac Win ] fast/events/attempt-scroll-with-no-scrollbars.html [ Failure Pass ]
crbug.com/243249 http/tests/misc/submit-post-keygen.html [ Pass Timeout ]
crbug.com/111316 fast/dom/call-a-constructor-as-a-function.html [ Failure ]
crbug.com/243291 [ Debug ] css3/filters/custom/custom-filter-nonseparable-blend-mode-color.html [ Crash ]
crbug.com/243291 [ Debug ] css3/filters/custom/custom-filter-nonseparable-blend-mode-hue.html [ Crash ]
crbug.com/243291 [ Debug ] css3/filters/custom/custom-filter-nonseparable-blend-mode-luminosity.html [ Crash ]
crbug.com/243291 [ Debug ] css3/filters/custom/custom-filter-nonseparable-blend-mode-saturation.html [ Crash ]
crbug.com/243291 [ Debug ] css3/filters/custom/effect-custom-combined-missing.html [ Crash ]
crbug.com/243291 [ Debug ] css3/filters/custom/effect-custom-transform-parameters.html [ Crash ]
crbug.com/168853 [ Debug ] fast/loader/stateobjects/replacestate-in-onunload.html [ Crash ]
crbug.com/243302 [ Debug ] svg/custom/unicode-in-tspan-multi-svg-crash.html [ Pass Crash ]
crbug.com/243353 [ Linux Win ] animations/dynamic-stylesheet-loading.html [ Failure Pass ]
crbug.com/243353 animations/suspend-resume-animation.html [ Failure Pass ]
crbug.com/243353 [ Win Linux ] animations/animation-direction-normal.html [ ImageOnlyFailure Pass ]
crbug.com/243353 [ Win Linux ] animations/animation-direction-reverse.html [ Failure Pass ]
crbug.com/243353 animations/play-state-paused.html [ ImageOnlyFailure Pass ]
crbug.com/243370 [ Mac ] fast/forms/select/popup-closes-on-blur.html [ Failure ]
crbug.com/243378 [ Linux ] fast/text/chromium-linux-text-subpixel-positioning.html [ Failure ]
crbug.com/243420 http/tests/appcache/different-https-origin-resource-main.html [ Failure ]
crbug.com/243420 http/tests/w3c/webperf/approved/UserTiming/test_user_timing_measure_exceptions.htm [ Failure ]
crbug.com/243492 [ Win Mac Linux ] http/tests/inspector-enabled/injected-script-discard.html [ Pass Timeout ]
crbug.com/243515 [ Win ] fast/autoresize/basic.html [ Pass Timeout ]
crbug.com/243520 [ Mac ] fast/css/font-weight-1.html [ Failure ImageOnlyFailure Pass ]
crbug.com/243523 http/tests/history/back-with-fragment-change.php [ Pass Timeout Failure ]
crbug.com/243593 [ Win ] fast/media/color-does-not-include-alpha.html [ Failure ]
crbug.com/243596 [ Win ] inspector-protocol/input/dispatchMouseEvent.html [ Failure Pass ]
crbug.com/243599 [ Release ] fast/loader/stateobjects/replacestate-in-onunload.html [ Crash Pass ]
crbug.com/243599 [ Mac ] http/tests/plugins/interrupted-get-url.html [ Crash Pass ]
crbug.com/243649 [ Mac ] transitions/cancel-transition.html [ Failure Pass ]
crbug.com/243655 [ Win7 Debug ] compositing/iframes/scroll-grandchild-iframe.html [ Timeout Pass ]
crbug.com/243663 [ Win7 ] compositing/animation/computed-style-during-delay.html [ Pass Failure ]
crbug.com/243663 [ Win7 ] compositing/reflections/nested-reflection-transition.html [ ImageOnlyFailure Pass ]
crbug.com/243683 [ Linux Mac Win ] http/tests/css/link-css-disabled-value-with-slow-loading-sheet-in-error.html [ Pass Failure ]
crbug.com/243353 animations/play-state-suspend.html [ Failure Pass ]
crbug.com/243353 animations/play-state.html [ Failure Pass ]
crbug.com/243701 editing/execCommand/apply-style-command-crash.html [ Pass Timeout ]
crbug.com/243725 http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_cached.html [ Failure Pass ]
crbug.com/243730 [ Mac ] fast/dom/HTMLMeterElement/meter-optimums.html [ Timeout ImageOnlyFailure Pass ]
crbug.com/243730 [ Linux Mac Win ] fast/dom/HTMLMeterElement/meter-element.html [ Timeout Pass ]
crbug.com/243732 [ Mac ] transforms/3d/point-mapping/3d-point-mapping-3.html [ ImageOnlyFailure Pass ]
crbug.com/243736 [ Release ] storage/websql/quota-tracking.html [ Failure Pass ]
crbug.com/243738 [ Linux Mac ] http/tests/loading/preload-append-scan.php [ Failure Pass ]
crbug.com/243738 [ Win ] http/tests/loading/preload-append-scan.php [ Timeout Pass ]
crbug.com/243782 fullscreen/full-screen-remove-ancestor.html [ Pass Timeout ]
crbug.com/246077 fullscreen/full-screen-render-inline.html [ ImageOnlyFailure ]
crbug.com/243782 [ Win7 Linux ] css3/filters/effect-reference-hidpi-hw.html [ Slow ]
crbug.com/243782 [ Mac ] fast/dom/HTMLProgressElement/progress-writing-mode.html [ Pass Timeout ]
crbug.com/243894 [ Mac ] svg/zoom/page/zoom-zoom-coords.xhtml [ Failure Pass ]
crbug.com/244003 [ Win ] svg/css/font-face-crash.html [ Crash Timeout Pass ]
crbug.com/244005 fast/dom/gc-acid3.html [ Pass Failure Timeout ]
crbug.com/244111 svg/filters/feMorphology-crash.html [ Pass Timeout ]
crbug.com/244112 [ Linux Win Mac Debug ] fast/dom/gc-11.html [ Pass Timeout ]
crbug.com/244123 [ Win ] fast/forms/suggestion-picker/date-suggestion-picker-key-operations.html [ Failure Pass Slow ]
crbug.com/244123 [ Win ] fast/forms/suggestion-picker/month-suggestion-picker-key-operations.html [ Failure Pass Slow ]
crbug.com/244123 [ Win ] fast/forms/suggestion-picker/week-suggestion-picker-key-operations.html [ Failure Pass Slow ]
crbug.com/244341 [ Win ] css3/filters/composited-during-animation.html [ Failure Pass Timeout ]
crbug.com/244341 css3/filters/composited-during-animation-layertree.html [ Failure Pass ]
crbug.com/245556 [ Win7 Release ] compositing/transitions/transform-on-large-layer.html [ Pass Timeout ]
crbug.com/245566 [ Linux Win Debug ] editing/execCommand/delete-no-scroll.html [ Pass Timeout ]
crbug.com/245567 http/tests/xmlhttprequest/send-undefined-and-null.html [ Failure Pass ]
crbug.com/247575 fast/text/international/hindi-spacing.html [ ImageOnlyFailure Pass ]
# Seems to be hit by the try jobs only.
crbug.com/243599 [ Linux Win ] http/tests/xmlhttprequest/access-control-repeated-failed-preflight-crash.html [ Crash Pass Timeout ]
crbug.com/244114 [ Win Release ] svg/css/font-face-variant-crash.html [ Crash Pass ]
crbug.com/244114 [ Win Debug ] svg/css/font-face-variant-crash.html [ Pass Timeout ]
# Test depends on timezone.
crbug.com/244179 fast/js/date-parse-test.html [ Failure Pass ]
# Makes the following test crash
crbug.com/244225 inspector-protocol/dom/setFileInputFiles.html [ Skip ]
crbug.com/244276 fast/images/gif-loop-count.html [ ImageOnlyFailure Pass ]
crbug.com/244276 crbug.com/245189 virtual/deferred/fast/images/gif-loop-count.html [ ImageOnlyFailure Pass ]
# New baselines are needed due to the switch to use bicubic filtering in Skia.
crbug.com/229120 virtual/deferred/fast/images/imagemap-focus-ring-zero-outline-width.html [ ImageOnlyFailure ]
crbug.com/229120 virtual/deferred/fast/images/jpeg-with-color-profile.html [ ImageOnlyFailure ]
crbug.com/229120 virtual/deferred/fast/images/png-with-color-profile.html [ ImageOnlyFailure ]
crbug.com/229120 virtual/deferred/fast/images/rgb-png-with-cmyk-color-profile.html [ ImageOnlyFailure ]
crbug.com/229120 virtual/deferred/fast/images/ycbcr-with-cmyk-color-profile.html [ ImageOnlyFailure ]
# Slow because of bug 259094
crbug.com/229120 virtual/deferred/fast/images/pixel-crack-image-background-webkit-transform-scale.html [ ImageOnlyFailure Slow ]
crbug.com/246749 [ Debug ] inspector/extensions/extensions-panel.html [ Timeout Pass ]
crbug.com/226256 storage/indexeddb/pending-version-change-stuck.html [ Timeout Pass ]
# DCHECK in SkFixed.h
crbug.com/243309 [ Mac Debug ] accessibility/content-changed-notification-causes-crash.html [ Crash Pass ]
crbug.com/243309 [ Mac Debug ] fast/css/font-size-nan.svg [ Crash Pass ]
crbug.com/243309 [ Mac Debug ] fast/css/large-font-size-crash.html [ Crash Pass ]
crbug.com/243309 [ Mac Debug ] svg/text/font-size-too-large-crash.svg [ Crash Pass ]
crbug.com/245154 editing/selection/move-by-character-brute-force.html [ Pass Timeout ]
crbug.com/245630 compositing/overflow/overflow-positioning.html [ ImageOnlyFailure Pass ]
crbug.com/245641 [ Win7 XP ] http/tests/loading/text-content-type-with-binary-extension.html [ Failure Pass ]
crbug.com/245644 [ Win7 Linux Debug ] virtual/gpu/fast/canvas/2d.text.draw.fill.maxWidth.gradient.html [ Failure Pass ]
crbug.com/169734 [ Win ] inspector-protocol/console-timestamp.html [ Failure Pass ]
crbug.com/246072 fast/forms/post-popup-no-multiple-windows.html [ Pass Timeout ]
crbug.com/259560 inspector/timeline/timeline-decode-resize.html [ Skip ]
crbug.com/246549 http/tests/security/svg-image-leak.html [ Failure Pass ]
crbug.com/247614 [ Debug ] printing/print-close-crash.html [ Crash ]
# Seems to have been timing out for a long time.
crbug.com/248969 [ Win7 Debug ] printing/page-count-with-one-word.html [ Timeout Pass ]
crbug.com/247604 fast/workers/shared-worker-lifecycle.html [ Failure ]
crbug.com/247604 fast/workers/shared-worker-frame-lifecycle.html [ Skip ]
crbug.com/247888 fast/workers/worker-cloneport.html [ Failure Pass Timeout ]
crbug.com/247889 [ Win ] http/tests/navigation/back-send-referrer.html [ Pass Timeout ]
# Needs new pixel baselines on other platforms
Bug(jamesr) compositing/video/video-controls-layer-creation.html [ ImageOnlyFailure Pass ]
Bug(jamesr) virtual/softwarecompositing/video/video-controls-layer-creation.html [ ImageOnlyFailure Pass ]
# New baseline might fail on Mac according to trybots.
crbug.com/245520 [ Mac ] compositing/repaint/transform-style-change.html [ ImageOnlyFailure ]
webkit.org/b/60109 [ Linux Release ] inspector/elements/edit-dom-actions.html [ Slow ]
crbug.com/247979 [ Win Mac Release ] inspector/elements/edit-dom-actions.html [ Slow Failure Pass ]
crbug.com/247979 [ Win7 Debug ] inspector/elements/edit-dom-actions.html [ Timeout ]
crbug.com/247979 [ Mac Linux Debug ] inspector/elements/edit-dom-actions.html [ Pass Timeout ]
crbug.com/247981 [ Debug ] inspector/profiler/heap-snapshot-get-profile-crash.html [ Pass Crash ]
crbug.com/247982 [ Win7 Debug ] virtual/deferred/fast/images/exif-orientation-css.html [ ImageOnlyFailure Pass ]
crbug.com/247982 [ Win7 Mac Debug ] virtual/gpu/compositedscrolling/overflow/overflow-positioning.html [ ImageOnlyFailure Pass ]
crbug.com/247982 [ XP ] virtual/gpu/compositedscrolling/overflow/overflow-positioning.html [ ImageOnlyFailure Pass ]
crbug.com/248062 css3/compositing/effect-background-blend-mode-stacking.html [ ImageOnlyFailure Pass ]
crbug.com/248063 [ Debug ] plugins/plugin-clip-subframe.html [ Pass Failure ]
crbug.com/248063 [ Release Win ] plugins/plugin-clip-subframe.html [ Pass Failure ]
crbug.com/248065 [ Linux ] svg/text/foreignObject-text-clipping-bug.xml [ Pass ImageOnlyFailure ]
crbug.com/248067 fast/workers/shared-worker-storagequota-query-usage.html [ Pass Failure ]
crbug.com/248067 [ Release ] fast/workers/worker-storagequota-query-usage.html [ Pass Failure ]
crbug.com/248067 storage/storageinfo-query-usage.html [ Pass Failure ]
crbug.com/248067 storage/storagequota-query-usage.html [ Pass Failure ]
crbug.com/248121 fast/events/frame-scroll-fake-mouse-move.html [ Pass Failure ]
crbug.com/248121 fast/events/overflow-scroll-fake-mouse-move.html [ Pass Failure ]
crbug.com/248128 inspector/console/console-url-and-line.html [ Pass Failure ]
crbug.com/260655 [ Linux Debug ] inspector/profiler/canvas2d/canvas2d-gradient-capturing.html [ Crash Pass ]
crbug.com/248407 [ Debug ] compositing/reflections/animation-inside-reflection.html [ Pass Timeout ]
crbug.com/248146 [ Linux ] editing/selection/after-line-wrap.html [ ImageOnlyFailure Pass ]
crbug.com/248146 [ Linux ] editing/style/create-block-for-style-012.html [ ImageOnlyFailure Pass ]
crbug.com/248146 [ Linux ] fast/text/whitespace/nbsp-mode-and-linewraps.html [ ImageOnlyFailure Pass ]
crbug.com/250970 [ Debug ] fast/events/simulated-key-state.html [ Crash Timeout ]
Bug(dpranke) [ Linux ] fast/writing-mode/broken-ideographic-font.html [ Failure ]
crbug.com/254332 [ Linux Win ] fast/forms/button/button-reset-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/button/button-reset-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/254332 fast/forms/checkbox/checkbox-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/checkbox/checkbox-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win Mac ] fast/forms/radio/radio-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/radio/radio-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/range/range-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/range/range-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/submit/submit-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ Linux Win ] fast/forms/submit/submit-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/248832 [ XP ] virtual/softwarecompositing/reflections/nested-reflection-anchor-point.html [ ImageOnlyFailure ]
crbug.com/251079 [ Debug ] fast/parser/fragment-parser.html [ Pass Timeout ]
crbug.com/251091 [ Mac ] http/tests/xmlviewer/dumpAsText/xmlviewer.xml [ Pass Crash ]
crbug.com/256506 [ Win Debug ] crypto/worker-random-values-limits.html [ Pass Crash ]
crbug.com/244266 [ Win Debug ] virtual/threaded/animations/animation-controller-drt-api.html [ Failure Pass ]
crbug.com/251149 [ Debug ] media/media-constants.html [ Pass Crash ]
crbug.com/252038 [ Debug ] editing/selection/fake-doubleclick.html [ Pass Failure ]
crbug.com/252865 [ Debug ] http/tests/media/media-source/mediasource-seek-during-pending-seek.html [ Failure Pass ]
crbug.com/252573 [ Mac Win ] fast/forms/empty-textarea-toggle-disabled.html [ Pass Timeout ]
# Causes the test following it ( fast/loader/subresource-willSendRequest-null.html ) to Timeout.
crbug.com/253619 fast/loader/subresource-load-failed-crash.html [ Skip ]
crbug.com/254219 [ MountainLion ] fast/multicol/newmulticol/columns-shorthand-parsing.html [ ImageOnlyFailure ]
crbug.com/254985 [ Win ] fast/events/space-scroll-event.html [ Crash Pass ]
crbug.com/255359 [ Debug ] fast/events/resize-events-count.html [ Pass Failure ]
crbug.com/255359 [ Debug ] fast/events/resize-events-fixed-layout.html [ Pass Failure ]
crbug.com/256226 [ Debug ] webmidi/requestmidiaccess.html [ Crash Pass ]
crbug.com/255714 [ Linux ] editing/execCommand/switch-list-type-with-orphaned-li.html [ Pass Failure ]
crbug.com/257325 [ Mac ] media/audio-repaint.html [ Pass ImageOnlyFailure ]
crbug.com/255407 plugins/npruntime/leak-window-scriptable-object.html [ Pass Failure ]
# started timing out around r154246..r154251
crbug.com/260744 [ Debug ] fast/js/regress/function-dot-apply.html [ Timeout ]
crbug.com/260744 [ Debug ] fast/js/regress/inline-arguments-local-escape.html [ Timeout ]
# Below test case need to rebaseline after crbug.com/254914
crbug.com/254914 [ Win Mac ] tables/mozilla_expected_failures/bugs/bug58402-2.html [ Failure ]
crbug.com/254914 [ Win Mac ] tables/mozilla/core/bloomberg.html [ Failure ]
crbug.com/254914 [ Linux ] tables/mozilla_expected_failures/bugs/bug58402-2.html [ ImageOnlyFailure ]
crbug.com/254914 [ Linux ] tables/mozilla/core/bloomberg.html [ ImageOnlyFailure ]
crbug.com/254914 [ Mac ] fast/table/table-rowspan-height-distribution-in-rows-1.html [ Failure ]
crbug.com/254914 [ Mac ] fast/table/table-rowspan-height-distribution-in-rows-2.html [ Failure ]
crbug.com/263058 fast/dom/HTMLTableElement/colSpan.html [ NeedsRebaseline ]
crbug.com/263058 fast/dom/HTMLTableElement/createCaption.html [ NeedsRebaseline ]
crbug.com/263058 fast/dom/isindex-001.html [ NeedsRebaseline ]
crbug.com/263058 fast/dom/isindex-002.html [ NeedsRebaseline ]
crbug.com/263058 fast/dom/Window/open-existing-pop-up-blocking.html [ NeedsRebaseline ]
crbug.com/263058 fast/dynamic/012.html [ NeedsRebaseline ]
crbug.com/263058 fast/dynamic/selection-highlight-adjust.html [ NeedsRebaseline ]
crbug.com/263058 fast/encoding/invalid-UTF-8.html [ NeedsRebaseline ]
crbug.com/263058 fast/encoding/utf-16-big-endian.html [ NeedsRebaseline ]
crbug.com/263058 fast/encoding/utf-16-little-endian.html [ NeedsRebaseline ]
crbug.com/263058 fast/events/autoscroll.html [ NeedsRebaseline ]
crbug.com/263058 fast/events/context-no-deselect.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/basic-inputs.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/button-inner-block-reuse.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/color/input-appearance-color.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/control-restrict-line-height.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/encoding-test.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/fieldset-align.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/floating-textfield-relayout.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/form-element-geometry.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/image-border.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-align.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-bkcolor.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-default-bkcolor.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-disabled.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-focus.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-height.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-preventDefault.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-readonly.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-selection.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-visibility.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-appearance-width.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-baseline.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-disabled-color.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-double-click-selection-gap-bug.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-field-text-truncated.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-placeholder-visibility-1.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-placeholder-visibility-3.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-readonly-autoscroll.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-readonly-dimmed.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-readonly-empty.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-spaces.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-table.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-click-inside.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-click-outside.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-double-click.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-drag-down.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-option-delete.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-scroll-left-on-blur.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-self-emptying-click.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-text-word-wrap.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-type-text-min-width.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-value.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/input-width.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/minWidthPercent.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/number/number-appearance-rtl.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/number/number-appearance-spinbutton-disabled-readonly.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/number/number-appearance-spinbutton-layer.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/placeholder-position.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/placeholder-pseudo-style.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/plaintext-mode-2.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/search-cancel-button-style-sharing.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/search-display-none-cancel-button.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/searchfield-heights.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/search-rtl.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/search/search-appearance-basic.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/search-vertical-alignment.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/select-visual-hebrew.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/tabbing-input-iframe.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/targeted-frame-submission.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/textfield-focus-ring.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/textfield-overflow.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/text-style-color.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/text/text-appearance-basic.html [ NeedsRebaseline ]
crbug.com/263058 fast/forms/visual-hebrew-text-field.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/content-opacity-1.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/content-opacity-2.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/frameElement-iframe.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/iframe-option-crash.xhtml [ NeedsRebaseline ]
crbug.com/263058 fast/frames/iframe-scaling-with-scroll.html [ NeedsManualRebaseline ]
crbug.com/263058 fast/frames/iframe-scrolling-attribute.html [ NeedsManualRebaseline ]
crbug.com/263058 fast/frames/iframe-text-contents.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/iframe-with-frameborder.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/onlyCommentInIFrame.html [ NeedsRebaseline ]
crbug.com/263058 fast/frames/take-focus-from-iframe.html [ NeedsRebaseline ]
crbug.com/263058 fast/html/details-no-summary4.html [ NeedsRebaseline ]
crbug.com/263058 fast/html/details-open2.html [ NeedsRebaseline ]
crbug.com/263058 fast/html/details-open4.html [ NeedsRebaseline ]
crbug.com/263058 fast/html/details-open-javascript.html [ NeedsRebaseline ]
crbug.com/263058 fast/inline/inline-box-background.html [ NeedsRebaseline ]
crbug.com/263058 fast/inline/inline-box-background-long-image.html [ NeedsRebaseline ]
crbug.com/263058 fast/inline/inline-box-background-repeat-x.html [ NeedsRebaseline ]
crbug.com/263058 fast/inline/inline-box-background-repeat-y.html [ NeedsRebaseline ]
crbug.com/263058 fast/inline/inline-continuation-borders.html [ NeedsRebaseline ]
crbug.com/263058 fast/layers/opacity-outline.html [ NeedsRebaseline ]
crbug.com/263058 fast/lists/dynamic-marker-crash.html [ NeedsRebaseline ]
crbug.com/263058 fast/lists/markers-in-selection.html [ NeedsRebaseline ]
crbug.com/263058 fast/lists/olstart.html [ NeedsRebaseline ]
crbug.com/263058 fast/lists/ol-start-parsing.html [ NeedsRebaseline ]
crbug.com/263058 fast/multicol/table-vertical-align.html [ NeedsRebaseline ]
crbug.com/263058 fast/overflow/image-selection-highlight.html [ NeedsRebaseline ]
crbug.com/263058 fast/overflow/overflow-rtl-inline-scrollbar.html [ NeedsRebaseline ]
crbug.com/263058 fast/overflow/overflow-text-hit-testing.html [ NeedsRebaseline ]
crbug.com/263058 fast/overflow/scrollRevealButton.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/4774354.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/clipped-relative.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/containing-block-position-change.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/delete-into-nested-block.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/fixed-move-after-keyboard-scroll.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/flexible-box-overflow-horizontal.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/flexible-box-overflow.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/float-move-during-layout.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/iframe-scroll-repaint.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/inline-block-overflow.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/layer-child-outline.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/layer-outline-horizontal.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/layer-outline.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/line-overflow.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/outline-child-repaint.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/outline-shrinking.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/overflow-delete-line.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/renderer-destruction-by-invalidateSelection-crash.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/repaint-during-scroll-with-zoom.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/search-field-cancel.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/static-to-positioned.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/subtree-root-skipped.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/table-cell-move.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/text-selection-rect-in-overflow-2.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/text-shadow-horizontal.html [ NeedsRebaseline ]
crbug.com/263058 fast/repaint/text-shadow.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/007.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/border-radius-clip.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/inline-box-wrapper-handover.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/replaced-breaking.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/replaced-breaking-mixture.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/width100percent-searchfield.html [ NeedsRebaseline ]
crbug.com/263058 fast/replaced/width100percent-textfield.html [ NeedsRebaseline ]
crbug.com/263058 fast/speech/input-appearance-numberandspeech.html [ NeedsRebaseline ]
crbug.com/263058 fast/speech/input-appearance-searchandspeech.html [ NeedsRebaseline ]
crbug.com/263058 fast/speech/input-appearance-speechbutton.html [ NeedsRebaseline ]
crbug.com/263058 fast/speech/speech-bidi-rendering.html [ NeedsRebaseline ]
crbug.com/263058 fast/sub-pixel/sub-pixel-iframe-copy-on-scroll.html [ NeedsRebaseline ]
crbug.com/263058 fast/sub-pixel/transformed-iframe-copy-on-scroll.html [ NeedsManualRebaseline ]
crbug.com/263058 fast/table/003.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/040.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/040-vertical.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/add-before-anonymous-child.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/border-collapsing/border-collapsing-head-foot.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/border-collapsing/border-collapsing-head-foot-vertical.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/border-collapsing/rtl-border-collapsing.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/border-collapsing/rtl-border-collapsing-vertical.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/click-near-anonymous-table.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/colspanMinWidth.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/colspanMinWidth-vertical.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/edge-offsets.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/giantRowspan.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/quote-text-around-iframe.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/row-height-recalc.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/rtl-cell-display-none-assert.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/spanOverlapRepaint.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/text-field-baseline.html [ NeedsRebaseline ]
crbug.com/263058 fast/table/unbreakable-images-quirk.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-kerning-and-ligatures.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-multiple-renderers.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-negative-spacing-features.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-pointtooffset-calls-cg.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-rtl-override-selection.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-spacing-features.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/basic/015.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/capitalize-empty-generated-string.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/cg-vs-atsui.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/in-rendered-text-rtl.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-european-terminators.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-ignored-for-first-child-inline.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-innertext.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-LDB-2-CSS.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-LDB-2-formatting-characters.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/bidi-LDB-2-HTML.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/hebrew-vowels.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/rtl-caret.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/rtl-white-space-pre-wrap.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/text-combine-image-test.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/text-spliced-font.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/international/vertical-text-glyph-test.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/midword-break-hang.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/should-use-atsui.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/textIteratorNilRenderer.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/whitespace/pre-wrap-overflow-selection.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/whitespace/pre-wrap-spaces-after-newline.html [ NeedsRebaseline ]
crbug.com/263058 fast/text/atsui-small-caps-punctuation-size.html [ NeedsManualRebaseline ]
crbug.com/263058 fast/transforms/transformed-focused-text-input.html [ NeedsManualRebaseline ]
crbug.com/263058 media/media-document-audio-repaint.html [ NeedsManualRebaseline ]
crbug.com/263058 http/tests/loading/simple-subframe.html [ NeedsRebaseline ]
crbug.com/263058 http/tests/local/file-url-sent-as-referer.html [ NeedsRebaseline ]
crbug.com/263058 http/tests/misc/iframe404.html [ NeedsRebaseline ]
crbug.com/263058 http/tests/misc/location-replace-crossdomain.html [ NeedsRebaseline ]
crbug.com/263058 http/tests/navigation/javascriptlink-frames.html [ NeedsRebaseline ]
crbug.com/263058 plugins/embed-attributes-style.html [ NeedsManualRebaseline ]
crbug.com/263058 plugins/mouse-click-plugin-clears-selection.html [ NeedsRebaseline ]
crbug.com/263058 printing/iframe-print.html [ NeedsRebaseline ]
crbug.com/263058 scrollingcoordinator/non-fast-scrollable-region-scaled-iframe.html [ NeedsManualRebaseline ]
crbug.com/263058 scrollingcoordinator/non-fast-scrollable-region-transformed-iframe.html [ NeedsManualRebaseline ]
crbug.com/263058 svg/custom/inline-svg-in-xhtml.xml [ NeedsRebaseline ]
crbug.com/263058 svg/custom/svg-float-border-padding.xml [ NeedsRebaseline ]
crbug.com/263058 svg/custom/svg-fonts-fallback.xhtml [ NeedsRebaseline ]
crbug.com/263058 svg/hixie/mixed/003.xml [ NeedsRebaseline ]
crbug.com/263058 svg/zoom/page/zoom-svg-float-border-padding.xml [ NeedsRebaseline ]
crbug.com/263058 svg/zoom/text/zoom-svg-float-border-padding.xml [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/45621.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug10269-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug10296-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug1055-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug1067-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug113235-3.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug1188.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug119786.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug12384.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug1302.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug137388-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug137388-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug137388-3.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug14323.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug14929.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug16252.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug17548.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug1800.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug18359.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug24200.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug2479-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug2479-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug2479-3.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug2479-4.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug27038-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug28928.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug2947.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug30692.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug32841.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug33137.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug3977.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug42187.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug4382.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug4527.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug46368-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug46368-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug47432.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug50695-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug51037.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug55545.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug59354.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug60992.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug6304.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug7112-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug7112-2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug727.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug7342.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug96334.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/bugs/bug99948.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/core/col_widths_fix_autoFix.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/core/col_widths_fix_fix.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/core/misc.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/core/table_widths.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/dom/tableDom.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/97619.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug10140.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug1647.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug21518.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug22122.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug2479-5.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/bugs/bug92647-1.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/core/captions3.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/core/col_span2.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/core/conflicts.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla_expected_failures/other/empty_cells.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/other/move_row.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/other/wa_table_thtd_rowspan.html [ NeedsRebaseline ]
crbug.com/263058 tables/mozilla/other/wa_table_tr_align.html [ NeedsRebaseline ]
crbug.com/263058 transforms/3d/general/perspective-non-layer.html [ NeedsRebaseline ]
crbug.com/263058 virtual/softwarecompositing/iframes/iframe-copy-on-scroll.html [ NeedsRebaseline ]
|