1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
|
// This file consists of lines with specifications of what
// to expect from layout test cases. The test cases can be directories
// in which case the expectations apply to all test cases in that
// directory and any subdirectory. The format of the file is along the
// lines of:
//
// LayoutTests/fast/js/fixme.js = FAIL
// LayoutTests/fast/js/flaky.js = FAIL PASS
// LayoutTests/fast/js/crash.js = CRASH TIMEOUT FAIL PASS
//
// To add other options:
// SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
// DEBUG : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
// DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
// LINUX DEBUG SKIP : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
// DEFER LINUX WIN : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
// BUG1234 DEBUG MAC : LayoutTests/fast/js/no-good.js = TIMEOUT PASS
//
// BUG[0-9]+: See this bug for more information. Every test that isn't marked
// WONTFIX should have a BUG annotation.
// SKIP: Doesn't run the test.
// SLOW: The test takes a long time to run, but does not timeout indefinitely.
// WONTFIX: For tests that we never intend to pass on a given platform.
// DEFER: Test does not count in our statistics for the current release.
// DEBUG: Expectations apply only to the debug build.
// RELEASE: Expectations apply only to release build.
// LINUX/WIN/MAC: Expectations apply only to these platforms.
//
// The format of a test line is as follows:
// METADATA : relative/path/to/test.html = EXPECTATIONS
//
// For example,
// LINUX : LayoutTests/media = PASS FAIL
//
// The above means that all the media tests are flaky, but only on Linux.
//
// Notes:
// -A test cannot be both SLOW and TIMEOUT
// -A test cannot be both DEFER and WONTFIX
// -A test can be included twice, but not via the same path.
// -If a test is included twice, then the more precise path wins.
// -CRASH tests cannot be DEFER or WONTFIX
// -----------------------------------------------------------------
// SLOW TESTS
// -----------------------------------------------------------------
BUG_OJAN SLOW : LayoutTests/fast/js/regexp-overflow.html = PASS
BUG_OJAN SLOW : LayoutTests/http/tests/misc/DOMContentLoaded-event.html = PASS
BUG_OJAN SLOW : LayoutTests/http/tests/navigation/multiple-back-forward-entries.html = PASS
BUG_OJAN SLOW : LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html = PASS
BUG_OJAN SLOW MAC LINUX : LayoutTests/http/tests/xmlhttprequest/small-chunks-response-text.html = PASS
BUG_OJAN SLOW WIN RELEASE : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
BUG_OJAN SLOW MAC LINUX : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = PASS
BUG_OJAN SLOW WIN MAC : LayoutTests/svg/custom/invisible-text-after-scrolling.xhtml = PASS
BUG_OJAN SLOW : LayoutTests/tables/mozilla/other/slashlogo.html = PASS
// -----------------------------------------------------------------
// SKIPPED TESTS
// -----------------------------------------------------------------
// The action taken when trying to load the resource
// (http://255.255.255.255/test.jpg) depends on the network proxy settings
// of the machine running the test, so we don't worry about that case.
WONTFIX : LayoutTests/security/block-test-no-port.html = PASS FAIL
// Since V8 is more interruptible than other engines, they use the standard
// long-running-script mechanism to handle very-long-running regexps too.
// See http://code.google.com/p/v8/issues/detail?id=287
WONTFIX SKIP : LayoutTests/fast/js/regexp-overflow-too-big.html = TIMEOUT
// XHTML tests. These tests seem like they work, but only because the
// expected output expects to see JS errors. There is no point in running
// these tests, because they are giving us a false sense of testing that isn't
// really happening. Furthermore, since they appear to pass if we do try to
// run them, we can't even list them as permanently expected to fail.
BUG793944 WONTFIX SKIP : LayoutTests/dom/xhtml = PASS
// We do not want to support Legacy mac encodings on Windows/Linux.
// On Mac, we can support them by building platform/text/mac, but
// probably we don't want there, either.
WONTFIX SKIP WIN LINUX : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
// Fails due to different window.close() rules. We need to decide whether we
// ever expect to pass this. Now also timing out.
BUG753420 WONTFIX SKIP : LayoutTests/fast/dom/open-and-close-by-DOM.html = FAIL
// Skip because of WebKit bug 18512. These bugs "poison" future tests, causing
// all SVG objects with fill="red" to be rendered in green.
WONTFIX SKIP : LayoutTests/svg/custom/fill-SVGPaint-interface.svg = PASS
WONTFIX SKIP : LayoutTests/svg/custom/getPresentationAttribute.svg = PASS
// WML is still an inprogress feature upstream. Chromium does not build
// with WML support, so skip its tests.
WONTFIX SKIP : LayoutTests/wml = FAIL
WONTFIX SKIP : LayoutTests/http/tests/wml = FAIL
// These tests are based on the JSC JavaScript profiler. The V8 JavaScript
// profiler is in development and will use a different approach than JSC and
// most likely these tests will always be JSC specific.
WONTFIX SKIP : LayoutTests/fast/profiler = FAIL TIMEOUT
// These tests depend on a bogus assumption that file:// URLs have universal
// access to other URLs. This isn't true for us.
WONTFIX SKIP : LayoutTests/editing/selection/drag-in-iframe.html = TIMEOUT
WONTFIX SKIP : LayoutTests/fast/dom/gc-6.html = TIMEOUT
WONTFIX SKIP : LayoutTests/fast/dom/gc-7.html = TIMEOUT
WONTFIX SKIP : LayoutTests/fast/frames/frame-set-same-location.html = TIMEOUT
WONTFIX SKIP : LayoutTests/fast/frames/frame-set-same-src.html = TIMEOUT
WONTFIX SKIP : LayoutTests/fast/frames/hover-timer-crash.html = TIMEOUT
// This test doesn't terminate because it contains exponential
// regexps. It is safe to disable because we run the same tests
// (sans the nonterminating ones) as part of the v8 tests.
WONTFIX SKIP : LayoutTests/fast/regex/test1.html = PASS
// -----------------------------------------------------------------
// FAILING TESTS
// -----------------------------------------------------------------
// We don't intend to pass all of these cases, so this is an expected fail.
// Window resizing is not implemented in chrome.
BUG1137420 WONTFIX : LayoutTests/fast/dom/Window/window-resize.html = FAIL
// This test is completely timing dependent. It is testing the time
// between a key event and a search event. You cannot count on this
// always being exactly the same, so we allow this to either PASS or FAIL
// but not CRASH or TIMEOUT.
WONTFIX : LayoutTests/fast/forms/search-event-delay.html = FAIL PASS
// Chrome uses different keyboard accelerators from those used by Safari, so
// these tests will always fail.
// TODO(pinkerton): these should probably pass on Mac since we want Emacs
// keybindings but they currently do not.
WONTFIX : LayoutTests/editing/pasteboard/emacs-cntl-y-001.html = FAIL
WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-a-k-y.html = FAIL
WONTFIX : LayoutTests/editing/pasteboard/emacs-ctrl-k-y-001.html = FAIL
WONTFIX : LayoutTests/editing/input/emacs-ctrl-o.html = FAIL
// These tests check for very kjs-specific garbage collector behavior. Gc-8
// tests behavior that makes no sense for us to implement. Gc-10 makes sense
// but would have to be implemented much differently to work in v8.
WONTFIX : LayoutTests/fast/dom/gc-8.html = FAIL
WONTFIX : LayoutTests/fast/dom/gc-10.html = FAIL
// This fails because we're missing various useless apple-specific
// properties on the window object.
// This test also timeouts in Debug mode.
BUG1058654 WONTFIX : LayoutTests/fast/dom/Window/window-properties.html = FAIL TIMEOUT
// Safari specific test to ensure that JavaScript errors aren't logged when in
// private browsing mode.
WONTFIX : LayoutTests/http/tests/security/cross-frame-access-private-browsing.html = FAIL
// We don't care about dashboard compatibility mode.
WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html = FAIL
WONTFIX SKIP : LayoutTests/http/tests/xmlhttprequest/svg-created-by-xhr-disallowed-in-dashboard.html = FAIL
WONTFIX : LayoutTests/svg/custom/embedded-svg-disallowed-in-dashboard.xml = FAIL
WONTFIX : LayoutTests/svg/custom/manually-parsed-embedded-svg-disallowed-in-dashboard.html = FAIL
WONTFIX : LayoutTests/svg/custom/manually-parsed-svg-disallowed-in-dashboard.html = FAIL
WONTFIX : LayoutTests/svg/custom/svg-disallowed-in-dashboard-object.html = FAIL
// Chrome uses different keyboard accelerators from those used by Safari, so
// these tests will always fail.
// TODO(ericroman): can the following 2 tests be removed from this list, since they pass?
WONTFIX : LayoutTests/fast/events/keydown-1.html = FAIL
WONTFIX LINUX WIN : LayoutTests/fast/events/option-tab.html = FAIL
// Chrome does not support WebArchives (just like Safari for Windows),
// although we might eventually want to on Mac.
BUG761653 WONTFIX SKIP : LayoutTests/webarchive/loading = FAIL TIMEOUT
BUG761653 WONTFIX : LayoutTests/webarchive = PASS
BUG761653 WONTFIX : LayoutTests/svg/webarchive = FAIL PASS
BUG761653 WONTFIX : LayoutTests/svg/custom/image-with-prefix-in-webarchive.svg = FAIL PASS
BUG761653 WONTFIX SKIP : LayoutTests/http/tests/webarchive = FAIL PASS
// Run the Mac-specific platform tests, but only to check for crashes.
WONTFIX : LayoutTests/platform/gtk = FAIL PASS
WONTFIX : LayoutTests/platform/mac = FAIL PASS TIMEOUT
WONTFIX : LayoutTests/platform/mac-leopard = FAIL PASS
WONTFIX : LayoutTests/platform/mac-tiger = FAIL PASS
WONTFIX : LayoutTests/platform/qt = FAIL PASS
WONTFIX LINUX MAC : LayoutTests/platform/win = FAIL PASS
// Ignored because we do not have OBJC bindings
WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-RTFD.html = FAIL
WONTFIX SKIP : LayoutTests/editing/pasteboard/paste-TIFF.html = FAIL
WONTFIX SKIP : LayoutTests/plugins/jsobjc-dom-wrappers.html = FAIL
WONTFIX SKIP : LayoutTests/plugins/jsobjc-simple.html = FAIL
WONTFIX SKIP : LayoutTests/plugins/root-object-premature-delete-crash.html = FAIL
WONTFIX SKIP : LayoutTests/plugins/throw-on-dealloc.html = FAIL
WONTFIX SKIP : LayoutTests/plugins/undefined-property-crash.html = FAIL
// Uses __apple_runtime_object
WONTFIX SKIP : LayoutTests/plugins/call-as-function-test.html = FAIL
// Ignore test because it tries to load .pdf files in <img> tags.
WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image-landscape.html = FAIL
WONTFIX LINUX WIN : LayoutTests/fast/images/pdf-as-image.html = FAIL
WONTFIX LINUX WIN : LayoutTests/fast/replaced/pdf-as-image.html = FAIL
// This test tries to print a PDF file as the expected result. I don't think
// we plan on supporting this anytime soon.
WONTFIX SKIP : LayoutTests/printing/media-queries-print.html = PASS
// Chrome doesn't call the willCacheResponse callback (a method
// of ResourceHandleClient). That function is Mac-specific.
BUG853268 WONTFIX : LayoutTests/http/tests/misc/willCacheResponse-delegate-callback.html = FAIL
// Checks for very kjs-specific garbage collector
// behavior. Gc-9 is completely braindamaged; it tests that certain
// properties are reset by the garbage collector. It looks to pass recently.
WONTFIX : LayoutTests/fast/dom/gc-9.html = PASS FAIL
// This test checks that ((new Error()).message is undefined, which is
// a direct contradiction of the javascript spec 15.11.4.3 which
// says that it must be a string.
WONTFIX : LayoutTests/fast/js/kde/evil-n.html = FAIL
// This test is broken. The regular expression used contains an error
// which kjs swallows and returns false, which is the expected result,
// but for which we issue a syntax error.
WONTFIX : LayoutTests/fast/js/code-serialize-paren.html = FAIL
// These tests check for a kjs-specific extension, that source file
// name and line numbers are available as properties on exception
// objects. We handle error positions differently.
WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-1.html = FAIL
WONTFIX : LayoutTests/fast/js/exception-linenums-in-html-2.html = FAIL
WONTFIX : LayoutTests/fast/js/exception-linenums.html = FAIL
WONTFIX : LayoutTests/fast/js/exception-expression-offset.html = FAIL
// These tests rely on specific details of decompilation of
// functions. V8 always returns the source code as written; there's
// no decompilation or pretty printing involved except for
// certain "native" functions where the V8 output does not include
// newline characters. This is working as intended and we don't care
// if the tests pass or fail. (It should probably simply be re-baselined.)
WONTFIX : LayoutTests/fast/js/function-names.html = FAIL PASS
// This test relies on KJS specific implementation
// (window.GCController.getJSObjectCount), which we have no intention of
// supporting.
WONTFIX SKIP : LayoutTests/fast/dom/Window/timeout-released-on-close.html = FAIL
// These tests expect a tiff decoder, which we don't have.
WONTFIX LINUX WIN : LayoutTests/fast/images/embed-image.html = FAIL
WONTFIX LINUX WIN : LayoutTests/fast/images/object-image.html = FAIL
// Safari has a unique handling of the BOM characters among browsers.
// There is a strong suspicion that this is a security problem, so we
// follow the rest of the browsers on this one.
WONTFIX : LayoutTests/fast/js/removing-Cf-characters.html = FAIL
// These tests fail in all but the PST/PDT time zone.
// Another reason for failure is that, for compatability, we don't obey
// the ECMA standard on DST exactly. We use the OS's facilities to
// convert to local time for dates within the UNIX 32-bit epoch,
// and follow the ECMA rules for dates outside that range.
// The ECMA rules say to use current DST rules for all dates,
// and that all dates that are separated by an exact multiple of
// 28 years must behave exactly the same.
// OS local time services are more accurate than this ECMA rule,
// which is a discrepancy.
WONTFIX SKIP : LayoutTests/fast/js/date-DST-time-cusps.html = PASS FAIL
WONTFIX SKIP : LayoutTests/fast/js/date-big-setdate.html = PASS FAIL
// The following tests fail because of difference in how the test shell
// navigation controller tracks navigations as compared to how the Mac
// implementation does it.
WONTFIX : LayoutTests/http/tests/history/redirect-200-refresh-0-seconds.pl = FAIL
WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-0-seconds.html = FAIL
WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-2-seconds.html = FAIL
WONTFIX : LayoutTests/http/tests/history/redirect-js-location-replace-before-load.html = FAIL
WONTFIX : LayoutTests/http/tests/history/redirect-meta-refresh-0-seconds.html = FAIL
// This test expects weird behavior of __defineGetter__ on the
// window object. It expects variables introduced with 'var x = value'
// to behave differently from variables introduced with 'y = value'.
// This just seems wrong and should have very low priority.
// Agreed, not required for Beta, we can debate this with WebKit post Beta
// (eseidel, 4/25)
// Ignore this until we see evidence that we need to support it.
WONTFIX : LayoutTests/fast/dom/getter-on-window-object2.html = FAIL
// V8 doesn't stable sort and we currently have no intention of
// changing this. It is tracked by:
// http://code.google.com/p/v8/issues/detail?id=90
WONTFIX : LayoutTests/fast/js/comparefn-sort-stability.html = FAIL
WONTFIX : LayoutTests/fast/js/sort-stability.html = FAIL
// We have no indication that anyone misses this and have currently no
// intention of implementing it.
WONTFIX : LayoutTests/fast/js/function-dot-arguments.html = FAIL
// This is a Safari specific test used to document the set of global
// constructors they expose and the exact way they are printed. Not
// important.
WONTFIX : LayoutTests/fast/js/global-constructors.html = FAIL
// This test is not reliable. The behavior depends on exactly how the
// stack limit is reached. We're happy with our behavior on this test
// as long as we don't crash.
WONTFIX : LayoutTests/fast/js/global-recursion-on-full-stack.html = FAIL PASS
// -----------------------------------------------------------------
// CHROME REWRITTEN TESTS
// -----------------------------------------------------------------
// These tests have been rewritten, with the original being ignored,
// because they were written in ways which are not cross-browser.
// (e.g. they expect implementation-dependent strings in output)
WONTFIX : LayoutTests/fast/js/date-proto-generic-invocation.html = FAIL
WONTFIX : LayoutTests/fast/js/kde/function.html = FAIL
WONTFIX : LayoutTests/fast/js/kde/inbuilt_function_tostring.html = FAIL
// These tests have been rewritten, with the original being ignored,
// because they rely on being able to shadow the 'top' variable on the
// global object. For security we disallow shadowing of top.
WONTFIX : LayoutTests/editing/selection/click-before-and-after-table.html = FAIL
// We're taking a different approach on this test than Webkit does, related to
// whether we create a window via a plugin when target is _blank.
BUG849085 WONTFIX SKIP : LayoutTests/plugins/get-url-with-blank-target.html = FAIL
// This test doesn't work on the bbot. Works locally.
WONTFIX SKIP : chrome/http/tests/plugins/get-file-url.html = FAIL PASS TIMEOUT
// Dashboard-related test
WONTFIX SKIP : LayoutTests/platform/mac/fast/css/dashboard-region-parser.html = FAIL
// Not a test?
WONTFIX SKIP : LayoutTests/http/tests/incremental/pause-in-script-element.pl = FAIL
// This test times out. It is testing arbitrary limits on the sizes
// of regular expressions. We handle larger regular expressions than
// JSCRE, but it takes a long time to run this test because it
// repeatedly creates big regular expressions. All the test is trying
// to verify is that we don't crash on this page.
WONTFIX : LayoutTests/fast/js/regexp-charclass-crash.html = PASS TIMEOUT
// This tests for an arbitrary limit set in JSCRE to terminate regular
// expressions with an exponential matching behavior. Since the V8
// regular expression engine can be preempted from the outside, we do not
// need to limit the execution this way. Firefox also keeps running
// on this one.
WONTFIX : LayoutTests/fast/regex/slow.html = TIMEOUT
// Test to verify legacy MAC encodings. We don't want to support them and
// have to skip this test.
WONTFIX SKIP : LayoutTests/fast/encoding/char-decoding-mac.html = FAIL
// WebKit QT Build-specific tests
WONTFIX SKIP : LayoutTests/platform/qt/view/fixed-layout-size.html = FAIL
// These don't have pixel results and rely on ObjC bindings. Don't run until they have pixel results.
WONTFIX SKIP : LayoutTests/platform/mac/editing/pasteboard/dataTransfer-set-data-file-url.html = FAIL
WONTFIX SKIP : LayoutTests/http/tests/security/dataTransfer-set-data-file-url.html = FAIL
// The issue is which global object to use as the implicit
// receiver for cross-frame calls. Currently, IE, Firefox and Chrome
// agree and only Safari is doing it this way.
BUG5053 WONTFIX : LayoutTests/fast/frames/cross-site-this.html = FAIL
// This tests a Safari incompatibility. This test should fail since
// it contains syntax errors that JSC for some reason choose not to
// throw. V8 follows the spec.
WONTFIX : LayoutTests/fast/js/reparsing-semicolon-insertion.html = FAIL
// These tests relate to transform/3d which is a work in progress and is not
// even run by the WebKit folk. They should be enabled whenever WebKit begins
// testing them by default. The bug to re-enable is:
// http://code.google.com/p/chromium/issues/detail?id=8455
WONTFIX SKIP : LayoutTests/transforms/3d = FAIL
// Copying with no selection is sometimes supposed to work
// Also skipped by Apple on Windows (rdar://problem/5015941)
BUG1124548 DEFER : LayoutTests/editing/execCommand/copy-without-selection.html = FAIL
// onload race condition due to poorly designed test.
// Works fine when run stand-alone. Not needed for Beta.
// Also skipped by Apple on Windows, due to intermittent failure
// (rdar://5313536)
BUG10270 DEFER WIN LINUX : LayoutTests/fast/dom/frame-loading-via-document-write.html = TIMEOUT FAIL
// WebKit's CSS counters are somewhat broken, thus expected results are failures
// Our high-precision timers make these tests flakey.
// We could fork these tests, but we'll just unfork them as soon as
// our high-precision timers are public.
BUG877986 DEFER WIN LINUX : LayoutTests/css2.1/t1204-increment-00-c-o.html = FAIL
BUG877986 DEFER WIN LINUX : LayoutTests/css2.1/t1204-increment-01-c-o.html = FAIL
BUG877986 DEFER WIN LINUX : LayoutTests/css2.1/t1204-increment-02-c-o.html = FAIL
BUG877986 DEFER WIN LINUX : LayoutTests/css2.1/t1204-reset-00-c-o.html = FAIL
BUG877986 DEFER WIN LINUX : LayoutTests/css2.1/t1204-reset-01-c-o.html = FAIL
// This are failing for different reasons under our new lighttpd configuration
// TODO(deanm): Address all of these via lighttpd if possible, otherwise fork.
// Maybe flaky and need to be forked?
// Difference in caching headers
BUG1234761 DEFER : LayoutTests/http/tests/xmlhttprequest/cache-override.html = FAIL
// LightTPD doesn't accept unknown HTTP methods
BUG1234761 DEFER SKIP : LayoutTests/http/tests/xmlhttprequest/methods-lower-case.html = TIMEOUT CRASH
BUG1234761 DEFER : LayoutTests/http/tests/xmlhttprequest/methods-async.html = FAIL TIMEOUT
BUG1234761 DEFER WIN LINUX MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-method.html = FAIL TIMEOUT PASS
// LightTPD doesn't accept unknown HTTP methods and passes CGIs a Content-Type
// even when a request didn't send the header.
BUG1234761 DEFER : LayoutTests/http/tests/xmlhttprequest/methods.html = FAIL TIMEOUT CRASH
// This passes when run in Chrome. It appears to be because of a difference
// in how lighttpd serves up the svn resource image (or the image
// contained in the svg image).
BUG1234761 DEFER : LayoutTests/http/tests/security/canvas-remote-read-svg-image.html = FAIL
// Another lighttpd quirk.
BUG8941 DEFER LINUX WIN : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL
BUG8941 DEFER MAC : LayoutTests/http/tests/xmlhttprequest/web-apps/013.html = FAIL TIMEOUT
// -----------------------------------------------------------------
// TEXT
// -----------------------------------------------------------------
// This class of test fails because of size differences in text runs.
// Mostly this is because of international text rendering differences.
// These fail now that we use the same font code path in test_shell
// as in Chrome
BUG1316221 DEFER LINUX WIN : LayoutTests/css2.1/t1202-counter-04-b.html = FAIL
BUG1316221 DEFER LINUX WIN : LayoutTests/css2.1/t1202-counters-04-b.html = FAIL
// The max length doesn't appear to be applied correctly (or the test needs
// changing), and furthermore, the over- and under-lines aren't placed
// properly over the "x".
BUG1124513 DEFER : LayoutTests/fast/forms/input-text-maxlength.html = FAIL
BUG1124513 DEFER : LayoutTests/fast/forms/input-text-paste-maxlength.html = FAIL
// This is a real bug, but not one we're fixing for Beta.
BUG628529 DEFER LINUX : LayoutTests/fast/text/stroking-decorations.html = FAIL
BUG628529 DEFER LINUX WIN : LayoutTests/fast/text/stroking.html = FAIL
// Incrorect results, in incorrect international font metrics.
// Fixing these overrides does not help us to Beta, deffering
BUG1124522 DEFER LINUX WIN : LayoutTests/fast/text/atsui-multiple-renderers.html = FAIL
BUG1124522 DEFER LINUX WIN : LayoutTests/fast/text/atsui-pointtooffset-calls-cg.html = FAIL
// This test checks that we hack around a bug in helvetica. We fail to.
BUG1143382 DEFER LINUX WIN : LayoutTests/fast/text/wide-zero-width-space.html = FAIL
// Font-size differences in international text cause the wrong character
// to be under the (x,y) click location used by the test. See bug
// on faking international font sizes like we do for Latin fonts.
BUG850411 DEFER LINUX WIN : LayoutTests/fast/text/atsui-rtl-override-selection.html = FAIL
// More missing international text overides, not needed for Beta.
// Capitalization results match Safari, even if "not fully correct"
BUG1124542 DEFER LINUX WIN : LayoutTests/fast/text/capitalize-boundaries.html = FAIL
// Different button line-heights, our behavior looks wrong.
BUG1145887 DEFER : LayoutTests/fast/forms/control-restrict-line-height.html = FAIL
BUG1145887 DEFER : LayoutTests/fast/replaced/table-percent-height.html = FAIL
// -----------------------------------------------------------------
// URL
// -----------------------------------------------------------------
// Form submission (GET) on non-standard url does not append a query.
// Defering these tests as the expected behavior is wonky, and shouldn't affect
// existing apps one way or another.
// Implicit expectation in this test is that you can "set query" on a data URL,
// and it should replace the first "?" substring. This makes absolutely no
// sense.
BUG1089231 DEFER : LayoutTests/fast/events/stopPropagation-submit.html = FAIL
// -----------------------------------------------------------------
// Workers
// -----------------------------------------------------------------
BUG10271 SKIP MAC LINUX : LayoutTests/fast/workers = TIMEOUT FAIL
BUG10271 SKIP : LayoutTests/fast/workers/stress-js-execution.html = TIMEOUT FAIL
BUG10271 SKIP : LayoutTests/fast/workers/worker-timeout.html = TIMEOUT FAIL
BUG10271 SKIP : LayoutTests/http/tests/workers = TIMEOUT FAIL
BUG10271 SKIP : LayoutTests/http/tests/xmlhttprequest/workers = TIMEOUT FAIL
BUG10271 DEFER MAC LINUX : LayoutTests/fast/events/dispatchEvent-crash.html = CRASH FAIL
// -----------------------------------------------------------------
// PENDING TESTS (forked to pending/, need to be sent upstream)
// -----------------------------------------------------------------
// These tests don't work with fast timers due to setTimeout
// races. Pending versions have these fixed.
// Upstreaming pending test needs work.
// See https://bugs.webkit.org/show_bug.cgi?id=21536
BUG972450 DEFER : LayoutTests/fast/repaint/bugzilla-6473.html = PASS FAIL
// -----------------------------------------------------------------
// Tests deferred until we provide support for a particular feature.
// -----------------------------------------------------------------
// These tests rely on the keygen tag, which we haven't wired up.
BUG802185 DEFER : LayoutTests/fast/html/keygen.html = FAIL
BUG820185 DEFER : LayoutTests/fast/invalid/residual-style.html = FAIL
// Tests that clicking the "x" box in a search field clears it; we don't
// currently have such a box except on Mac (where it's part of the native
// widget).
BUG10272 DEFER WIN LINUX : LayoutTests/fast/forms/search-abs-pos-cancel-button.html = FAIL
// -----------------------------------------------------------------
// Other
// -----------------------------------------------------------------
// Vertical scrollbar created when there is no overflow.
// See also https://bugs.webkit.org/show_bug.cgi?id=24434 .
BUG1055396 DEFER LINUX WIN : LayoutTests/fast/forms/textarea-scrollbar-height.html = FAIL
// Image with border="1" drawn without the border.
BUG1064038 DEFER LINUX WIN : LayoutTests/fast/forms/image-border.html = FAIL
// Pixeltest failure: Form control metrics incorrect
BUG10273 LINUX : LayoutTests/http/tests/navigation/javascriptlink-frames.html = FAIL PASS
BUG10273 MAC : LayoutTests/http/tests/navigation/javascriptlink-frames.html = TIMEOUT FAIL PASS
// Mac Safari under certain circumstances automatically places
// a caret in editable document even when none was requested programatically.
// We don't intend to copy this feature (at least not for Beta).
BUG742182 BUG845388 DEFER LINUX WIN : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
// Platform-specific: simulates command-{arrow} input to modify selection
// Our Event-Sender isn't robust enough to support this.
// Not required for Beta. This may also be related to known home/end issues
// which are intended to be fixed for Beta.
BUG742182 BUG845388 BUG960092 DEFER LINUX WIN : LayoutTests/editing/selection/move-begin-end.html = FAIL
// The end result looks right, but the event messages differ.
BUG845400 DEFER : LayoutTests/editing/pasteboard/paste-xml.xhtml = FAIL
// Directionality of mixed-direction text in selected choice should
// match that in the <select> option lists.
// Low priority, unclear if test expectations are correct (see bug)
BUG849411 DEFER : LayoutTests/fast/forms/select-writing-direction-natural.html = FAIL
// requires support for layoutTestController.encodeHostName()
BUG850875 DEFER : LayoutTests/fast/encoding/idn-security.html = FAIL
// These layout tests to see if link colors change after visiting a page. They
// does this by using layoutTestController.keepWebHistory() to turn on a
// temporary web history. layoutTestController.keepWebHistory() is not
// implemented in test shell.
// This is a test tool problem, not a Chrome problem.
BUG852346 DEFER : LayoutTests/fast/history/clicked-link-is-visited.html = FAIL
BUG842346 DEFER : LayoutTests/fast/history/subframe-is-visited.html = FAIL
// We don't support NPN_Enumerate, but don't know of any plugin
// which depends on that functionality. So we ignore this for beta.
BUG849056 DEFER : LayoutTests/plugins/netscape-enumerate.html = FAIL
// This tests the screen's pixel depth, which we don't set on the buildbots
// so it depends on the users settings. Making this a broken test for us.
// The test must be fixed to not depend on user settings and rebaselined. post-beta.
BUG10274 DEFER : LayoutTests/fast/dom/Window/window-screen-properties.html = FAIL PASS
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10275 DEFER : LayoutTests/http/tests/security/cross-frame-access-put.html = FAIL
// We don't support support window.resizeTo (nor is it planned for Beta)
BUG982602 DEFER : LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html = FAIL
// Test expects that when focus is in an iframe and page-up is hit, the parent
// document is also scrolled
// IE and FF also "fail" this test.
BUG10276 DEFER : LayoutTests/fast/frames/iframe-scroll-page-up-down.html = FAIL
// TODO(joshia): Need some changes to the test shell in order to support
// Java applet related unit tests. So disable the following for now.
BUG879449 DEFER : LayoutTests/fast/replaced/applet-disabled-positioned.html = FAIL
BUG879449 DEFER : LayoutTests/fast/replaced/applet-rendering-java-disabled.html = FAIL
// Due to differences in error pages. Needs re-baselining.
BUG1204878 DEFER : LayoutTests/http/tests/navigation/post-goback1.html = FAIL
// Since we don't have Aqua-themed controls, don't ignore the
// box-shadow properties of controls that request Aqua theming. But since Aqua
// controls are rare on the web, defer this fix.
BUG1130795 DEFER : LayoutTests/fast/forms/box-shadow-override.html = FAIL
// These tests are not valid: the so-called expected results are not known to
// be correct.
// TODO(ojan): They are *our* tests.
// It seems silly to skip our own tests when we can change/delete them.
// I'm marking them as deferred for now, but we should do something with them.
BUG849072 DEFER SKIP : chrome/http/mime = PASS
// We don't support the storage APIs. Some of the them hang.
BUG4360 DEFER SKIP : LayoutTests/storage = PASS
BUG4360 SKIP : LayoutTests/fast/js/exceptions-thrown-in-callbacks.html = PASS
// Fails due to storage APIs not implemented. Might be worth re-baselining
// temporarily so the rest of the conditions are still tested.
BUG1124568 DEFER : LayoutTests/fast/dom/Window/window-function-name-getter-precedence.html = FAIL
// These tests are disabled until <audio> and <video> tags are supported.
BUG4363 DEFER SKIP : LayoutTests/media = TIMEOUT
BUG4363 DEFER SKIP : LayoutTests/fast/media = PASS FAIL
BUG4363 DEFER : LayoutTests/http/tests/media = FAIL
BUG4363 DEFER : LayoutTests/http/tests/security/local-video-poster-from-remote.html = FAIL TIMEOUT
BUG4363 DEFER SLOW : LayoutTests/http/tests/security/local-video-source-from-remote.html = FAIL
BUG4363 DEFER SLOW : LayoutTests/http/tests/security/local-video-src-from-remote.html = FAIL
BUG4363 DEFER : LayoutTests/fast/dom/Window/custom-constructors.html = FAIL
// Function arguments object is copied for each access.
BUG941049 DEFER : LayoutTests/fast/js/kde/function_arguments.html = FAIL
// Need a setAuthorAndUserStylesEnabled method in
// layoutTestController. 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.
// Deferring, we don't support user-controlled UA stylesheets (in beta)
// Actually, gonna SKIP because it causes an additional error message in:
// LayoutTests/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.
BUG973468 DEFER SKIP : LayoutTests/fast/css/disabled-author-styles.html = FAIL
// It looks like the upstream test is incorrectly using font-family: Times
// instead of font-family: times new roman. This broke when we recently moved
// more of our font default settings to 'times new roman' from 'Times'. This
// should be fixed upstream. https://bugs.webkit.org/show_bug.cgi?id=16348
BUG10277 LINUX : LayoutTests/fast/css/font-face-default-font.html = FAIL
// We don't support dynamic fonts on Linux.
// Once we have the sandbox working, we should re-evaluate this.
BUG10278 DEFER LINUX : LayoutTests/fast/css/font-face-remote.html = FAIL
BUG10278 DEFER LINUX : LayoutTests/fast/css/font-face-implicit-local-font.html = FAIL
BUG10278 DEFER LINUX : LayoutTests/fast/css/font-face-unicode-range.html = FAIL
// The v8 bindings allow shadowing of all properties on the global
// object. If you use 'var prop = value' you will get a new variable
// named prop that shadows builtin properties on the global object.
// This behavior is consistent and I'm reluctant to make the massive
// change that would be needed to implement the inconsistent handling
// of this that KJS has (some properties can be shadowed and others
// can't). This should have low priority.
// We currently match IE and the plan was to convince KJS to change
// post-beta, but the bug is here:
// https://bugs.webkit.org/show_bug.cgi?id=16644 , and it's unclear
// what the resolution was.
// window-property-shadowing-name.html has also been affected by
// r8532 and now fails.
BUG10279 DEFER : LayoutTests/fast/dom/Window/window-property-shadowing-name.html = TIMEOUT FAIL
BUG10279 DEFER : LayoutTests/fast/js/var-declarations-shadowing.html = FAIL
// User stylesheets not currently supported by chrome.
// Webkit supports them by doing filesystem operations directly.
// This is disallowed in a sandboxed renderer. The test fails in
// test_shell.exe because the necessary filesystem stubs are notImplemented(),
// and would need to be proxied through the browser
BUG1042838 DEFER : LayoutTests/http/tests/security/local-user-CSS-from-remote.html = FAIL
// Extra space at end of test results. Since this is a crash test, a
// FAIL here is just as good as running the test normally.
// FAIL results from an extra newline at the top of the results
// the checked in results do not include the PASS text.
// May only need re-baselining?
BUG1126050 DEFER : LayoutTests/http/tests/navigation/changing-frame-hierarchy-in-onload.html = FAIL
// This test has hover effects that change the font size. This test also
// moves the mouse around, resulting in a layout that dances around.
// Depending upon when the snapshot is taken we get different results.
BUG10280 DEFER WIN LINUX : LayoutTests/fast/inline/dirtyLinesForInline.html = FAIL PASS
// -----------------------------------------------------------------
// SVG TESTS
// -----------------------------------------------------------------
// These are regressions from 1.0, but deemed DEFERable for 2.0.
BUG8635 DEFER LINUX WIN : LayoutTests/svg/custom/pattern-y-offset.svg = FAIL
BUG8635 DEFER LINUX WIN : LayoutTests/svg/batik/paints/patternRegions.svg = FAIL
BUG8635 DEFER LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/masking-mask-01-b.svg = FAIL
BUG8635 DEFER LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/struct-use-01-t.svg = FAIL
BUG8635 DEFER LINUX WIN : LayoutTests/svg/custom/pattern-cycle-detection.svg = FAIL
BUG5641 DEFER LINUX WIN : LayoutTests/svg/batik/text/textEffect.svg = FAIL
BUG5641 DEFER LINUX WIN : LayoutTests/svg/batik/text/textEffect3.svg = FAIL
BUG8763 DEFER LINUX WIN : LayoutTests/svg/custom/use-on-g-containing-foreignObject-and-image.svg = FAIL
BUG10281 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-02-b.svg = FAIL
BUG10281 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-image-07-t.svg = FAIL
BUG10281 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-symbol-01-b.svg = FAIL
// Radial gradient on text not rendered.
BUG10282 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-11-b.svg = FAIL
// Radial gradients with offset focal points are not implemented in Skia.
// See comment in WebCore/platform/graphics/skia/GradientSkia.cpp
BUG10283 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-13-b.svg = FAIL
// Merge 39744:39829 - regression
BUG10284 DEFER RELEASE : LayoutTests/svg/custom/path-bad-data.svg = FAIL
// Upstream dumprendertree changes caused the expected to change.
// Now our baseline is out of date, and we differ from Mac expected on the
// caret position in the last line of the text output.
BUG10285 DEFER WIN LINUX : LayoutTests/svg/custom/foreignObject-crash-on-hover.xml = FAIL
// Merge 39744:39913? - regressions
BUG10286 DEFER : LayoutTests/svg/W3C-SVG-1.1/animate-elem-02-t.svg = FAIL PASS
BUG10287 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/coords-units-01-b.svg = FAIL PASS
BUG10288 DEFER WIN LINUX : LayoutTests/svg/batik/text/verticalText.svg = FAIL
BUG10289 DEFER WIN LINUX : LayoutTests/svg/batik/masking/maskRegions.svg = FAIL
BUG10290 DEFER WIN LINUX : LayoutTests/svg/custom/image-small-width-height.svg = FAIL
// Bug in Skia, see https://bugs.webkit.org/show_bug.cgi?id=24534 .
BUG10291 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-06-b.svg = FAIL
BUG10291 DEFER WIN LINUX : LayoutTests/svg/batik/paints/patternRegionA.svg = FAIL
BUG10291 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-pattern-01-b.svg = FAIL
// -----------------------------------------------------------------
// End SVG Regressions
// -----------------------------------------------------------------
// Selection wrong.
BUG10292 MAC LINUX : LayoutTests/editing/selection/5354455-1.html = FAIL
BUG10293 LINUX : LayoutTests/fast/text/international/bidi-linebreak-001.html = FAIL
BUG10293 LINUX : LayoutTests/fast/text/international/bidi-linebreak-002.html = FAIL
BUG10293 LINUX : LayoutTests/fast/text/international/bidi-linebreak-003.html = FAIL
// Missing scrollbar.
BUG10294 LINUX : LayoutTests/fast/frames/onlyCommentInIFrame.html = FAIL
// Compact support was removed from WebKit by Hyatt and layout tests rebaselined in r40259.
BUG10295 MAC : LayoutTests/fast/dom/prototype-chain.html = FAIL
BUG10295 MAC : LayoutTests/fast/overflow/overflow-x-y.html = FAIL
BUG10295 MAC : LayoutTests/fast/parser/comment-in-textarea.html = FAIL
BUG10295 MAC : LayoutTests/fast/parser/open-comment-in-textarea.html = FAIL
// Font differences, requiring overriden metrics, not a real bug, not fixing for Beta
BUG10296 DEFER LINUX : LayoutTests/fast/text/international/bidi-AN-after-L.html = FAIL
BUG10296 DEFER MAC : LayoutTests/fast/text/international/bidi-menulist.html = FAIL
BUG10296 DEFER LINUX : LayoutTests/fast/text/international/bidi-neutral-run.html = FAIL
BUG10296 DEFER LINUX : LayoutTests/fast/text/international/thai-line-breaks.html = FAIL
BUG10296 LINUX : LayoutTests/fast/transforms/transform-on-inline.html = FAIL
BUG10296 LINUX : LayoutTests/fast/transforms/transform-table-row.html = FAIL
BUG10296 LINUX : LayoutTests/svg/batik/paints/patternPreserveAspectRatioA.svg = CRASH FAIL
BUG10296 DEFER MAC : LayoutTests/svg/batik/text/textFeatures.svg = FAIL PASS
// Needs to be rebaselined.
BUG10296 LINUX : LayoutTests/svg/custom/deep-dynamic-updates.svg = CRASH FAIL
BUG10296 LINUX : LayoutTests/svg/custom/foreign-object-skew.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-33-t.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-17-b.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/custom/gradient-stroke-width.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/custom/dominant-baseline-hanging.svg = FAIL
BUG10296 MAC : LayoutTests/svg/custom/inline-svg-in-xhtml.xml = FAIL
BUG10296 DEFER MAC LINUX : LayoutTests/svg/batik/text/textDecoration2.svg = FAIL PASS
BUG10296 LINUX : LayoutTests/svg/batik/text/textLength.svg = FAIL
BUG10296 DEFER MAC LINUX : LayoutTests/svg/batik/text/textProperties.svg = FAIL PASS
BUG10296 LINUX : LayoutTests/svg/custom/gradient-stop-corner-cases.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/custom/pattern-deep-referencing.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/custom/text-dom-01-f.svg = FAIL
BUG10296 DEFER LINUX : LayoutTests/svg/hixie/perf/007.xml = FAIL
BUG10296 DEFER LINUX : LayoutTests/svg/hixie/text/003a.xml = FAIL
BUG10296 DEFER LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/001.xml = FAIL
BUG10296 DEFER LINUX : LayoutTests/svg/hixie/viewbox/preserveAspectRatio/002.xml = FAIL
BUG10296 DEFER LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-36-t.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-40-t.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-81-t.svg = FAIL PASS
BUG10296 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-14-b.svg = FAIL
BUG10296 DEFER MAC LINUX : LayoutTests/svg/W3C-SVG-1.1/text-text-03-b.svg = FAIL PASS
// Pixel test passes. Texts differ by 1 on SVGRenderText bounding box.
BUG10297 LINUX : LayoutTests/svg/custom/scrolling-embedded-svg-file-image-repaint-problem.html = FAIL
// No anti-aliasing on the text.
BUG10298 LINUX : LayoutTests/svg/custom/use-on-disallowed-foreign-object-3.svg = FAIL
// SVG text fills not working. Note that linux baseline is wrong.
BUG10299 LINUX : LayoutTests/svg/custom/pointer-events-text.svg = FAIL
// Marking this again as failed. This test failed even after rebaseline due to
// the fact that the font is not specified in the test and it seems that the
// test falls back on a different font locally than on the buildbot so the
// baseline is invalid. This might indicate a failure in our font fallback code
// or might be expected and that we should either go with the buildbot output
// or change the test upstream to specify explicitly what font to use.
// The mask part of this test is totally wrong.
BUG3244 DEFER LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-6.html = FAIL
// The failures listed below have never passed in Chromium and need to be
// investigated, categorized, and (one hopes) fixed.
// The following tests fail because SVG animation is not yet implemented
BUG992321 DEFER LINUX WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-78-t.svg = FAIL
// These test fail full text diff (but not simplified diff) most likely due
// to differing implementations of SVG fonts. They may or may not represent
// real bugs which need fixin'
// pixeltest failure: font baseline should be on the path, not the centerline
// There's no baseline at all for this!
BUG992321 DEFER SKIP : LayoutTests/svg/batik/text/smallFonts.svg = FAIL
BUG992321 DEFER : LayoutTests/svg/batik/text/textBiDi.svg = FAIL
// pixeltest failure: font baseline should be on the path, not the centerline
BUG992321 DEFER LINUX WIN : LayoutTests/svg/batik/text/textOnPath.svg = FAIL
// pixeltest failure: font baseline should be on the path, not the centerline
BUG992321 DEFER LINUX WIN : LayoutTests/svg/batik/text/verticalTextOnPath.svg = FAIL
BUG992321 DEFER LINUX WIN : LayoutTests/svg/custom/path-textPath-simulation.svg = FAIL
// This test fails because of an oddity in stroke width calculation. A
// line is stroked horizontally from Y=100 with stroke width 100, we consider
// it to be occupying the scan lines from Y=50 to Y=149 inclusive, which
// is a total of 100 lines. Apple expects it to be occupying Y=150 as
// well. The specification isn't very specific on which behavior is correct,
// but I feel like ours makes more sense.
BUG992321 DEFER : LayoutTests/svg/custom/stroke-width-click.svg = FAIL
// These tests all pass simplified diff, but fail full text diffs due to
// positions and/or widths that deviate from Apple's expectations by varying
// degrees. These are almost certainly nonbugs, but won't be rebased until
// we can say for sure.
// The red marker is not drawing the same way as the mac.
BUG992321 DEFER LINUX WIN : LayoutTests/svg/custom/marker-changes.svg = FAIL
// 11 numbers differ, by an absolute total of 4.69
BUG992321 DEFER : LayoutTests/svg/custom/use-on-symbol-inside-pattern.svg = FAIL
// There are gaps in the whiskers of the tiger
BUG992321 DEFER LINUX WIN : LayoutTests/svg/hixie/perf/001.xml = FAIL
BUG992321 DEFER LINUX WIN : LayoutTests/svg/hixie/perf/002.xml = FAIL
// 1 numbers differ, by an absolute total of 1.00
BUG992321 DEFER LINUX WIN : LayoutTests/svg/hixie/text/003.html = FAIL
// SVG combined with font metrics.
BUG992321 DEFER LINUX : LayoutTests/svg/hixie/text/001-broken.xml = FAIL
// This is an interesting one.
// The test has an error which causes it to output a message to the console.
// Apple's expected results include this error. Actually, Apple's expected
// results include the error twice, because (apparently unique among console
// debugging messages) it's generated during rendering. The problem is that
// we end up invoking the renderer twice when we're doing pixel tests, once
// otherwise, so we get different results depending on whether pixel tests are
// enabled. (Neither matches Apple's exactly... when we have pixel tests on,
// the duplicate error message ends up at the end of the file, while Apple's
// results have them both at the top.) But this test doesn't represent a real
// failure in any way and nothing needs to be done to fix it. I'm leaving it
// in tests_fixable in case we change the test shell's webview delegate to
// ignore console messages while doing a pixel dump
BUG992321 DEFER : LayoutTests/svg/custom/clip-path-referencing-use2.svg = FAIL PASS
// These flakily fail image diffs. Punting on SVG for now.
// Note that the "expected" images checked in are not necessarily correct.
// pixeltest failure: font baseline should be on the path, not the centerline
BUG1107191 DEFER : LayoutTests/svg/batik/text/textStyles.svg = FAIL PASS
// These two tests have a highlight color that is different from the Mac,
// which is normal because selection color is different between Mac and
// Windows, but even so it still doesn't look identical because there is still
// some problem with the fill color for the text.
BUG10300 DEFER WIN LINUX : LayoutTests/svg/text/text-deco-01-b.svg = FAIL
BUG10300 MAC LINUX : LayoutTests/svg/text/text-text-08-b.svg = FAIL PASS
// SVG masks aren't quite working yet.
// Might also be related to https://bugs.webkit.org/show_bug.cgi?id=21910
// New tests. We should fix these, but they don't need to block the current release
BUG3244 DEFER LINUX WIN : LayoutTests/fast/backgrounds/svg-as-mask.html = FAIL
BUG3244 DEFER LINUX WIN : LayoutTests/fast/backgrounds/animated-svg-as-mask.html = FAIL
// Needs rebaseline.
BUG10301 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-34-t.svg = FAIL
BUG10302 LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-10-b.svg = FAIL
BUG10303 MAC : LayoutTests/svg/css/getComputedStyle-basic.xhtml = FAIL
BUG10303 LINUX : LayoutTests/svg/custom/pattern-rotate.svg = FAIL
// The pattern we generate appears to be scaled incorrectly.
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10303 DEFER WIN LINUX : LayoutTests/svg/custom/pointer-events-image.svg = FAIL
// I find it hard to care too much about SVG failures.
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-04-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-05-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-06-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-07-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-desc-02-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/interact-zoom-01-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-spacing-01-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-text-01-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/batik/text/textPosition.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/carto.net/slider.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/carto.net/textbox.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/carto.net/window.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/custom/coords-relative-units-transforms.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/custom/svg-fonts-in-html.html = FAIL
BUG10304 LINUX : LayoutTests/svg/custom/use-referencing-nonexisting-symbol.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/hixie/perf/003.xml = FAIL
BUG10304 LINUX : LayoutTests/svg/hixie/perf/004.xml = FAIL
BUG10304 LINUX : LayoutTests/svg/hixie/perf/005.xml = TIMEOUT FAIL
BUG10304 LINUX : LayoutTests/svg/hixie/perf/006.xml = FAIL
BUG10304 LINUX : LayoutTests/svg/hixie/text/003b.xml = FAIL
BUG10304 LINUX : LayoutTests/svg/text/text-spacing-01-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/text/text-text-01-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-01-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-02-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-03-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-04-b.svg = CRASH FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-05-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-06-t.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/W3C-SVG-1.1/fonts-elem-07-b.svg = FAIL
// Our gradients are wrong here.
BUG10304 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/pservers-grad-08-b.svg = FAIL
BUG10304 LINUX : LayoutTests/svg/carto.net/button.svg = FAIL
// New tests. We should fix these, but they don't need to block the current release
BUG10305 DEFER WIN LINUX : LayoutTests/svg/custom/getscreenctm-in-mixed-content2.xhtml = FAIL
BUG10305 DEFER WIN LINUX : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = FAIL
BUG10305 DEFER : LayoutTests/svg/custom/use-instanceRoot-event-listeners.xhtml = FAIL
BUG10306 LINUX : LayoutTests/svg/carto.net/combobox.svg = FAIL
// These have been failing for as long as we've had SVG support and were
// incorrectly removed during a merge.
BUG10307 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/filters-example-01-b.svg = FAIL
BUG10307 DEFER WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/struct-group-03-t.svg = FAIL
BUG10308 LINUX : LayoutTests/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop.html = CRASH PASS
// WebKit Merge 38950:39000 failures:
BUG10309 LINUX : LayoutTests/svg/custom/js-late-gradient-and-object-creation.svg = FAIL
// Linux pixeltest failure: slightly different shade of composited
// alpha in bottom group.
BUG10310 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-opacity-01-b.svg = FAIL
// Fixed upstream, see https://bugs.webkit.org/show_bug.cgi?id=21910.
// However, we need to support focal point for radial gradients.
BUG8696 DEFER LINUX WIN : LayoutTests/fast/backgrounds/svg-as-background-3.html = FAIL
//
// -----------------------------------------------------------------
// End of SVG tests
// -----------------------------------------------------------------
// This fails because of differences between how CG and Skia tests for
// a point in a path. See
// http://code.google.com/p/chromium/issues/detail?id=7465 for details.
BUG10311 DEFER WIN LINUX : LayoutTests/fast/canvas/pointInPath.html = FAIL
// Following tests are failing because Chrome does not allow file url
// to access non-file urls.
// TODO(port): mac is passing these, does that mean something is wrong?
BUG1026885 DEFER LINUX WIN : LayoutTests/editing/selection/4960137.html = FAIL
// These fail the pixel tests in debug mode because they have
// unpainted space (filled red in Debug but not in Release).
// https://bugs.webkit.org/show_bug.cgi?id=8423
BUG1115062 DEFER : LayoutTests/tables/mozilla_expected_failures/bugs/bug178855.xml = FAIL PASS
BUG1115062 DEFER DEBUG : LayoutTests/fast/flexbox/flex-hang.html = FAIL PASS
// Fails on webkit windows as well.
BUG1166644 DEFER WIN LINUX : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = FAIL
// Linux pixeltest failure: Form control metrics incorrect
BUG10312 MAC : LayoutTests/http/tests/navigation/redirect302-basic.html = FAIL
// The test may require a proper version of Java 6 RC 10 plugin
// installed to run.
BUG10313 DEFER : LayoutTests/plugins/bindings-test.html = FAIL
// These tests don't work on the open source buildbot because no font covers
// U+2798 (Heavy SE Arrow) and U+2799 (Heavy Rightwards Arrow). See bug #2304.
BUG10314 DEFER WIN : LayoutTests/css2.1/t0805-c5519-brdr-r-01-e.html = FAIL
BUG10314 DEFER WIN : LayoutTests/css2.1/t0905-c5525-fltblck-00-d-ag.html = FAIL
BUG10314 DEFER WIN LINUX : LayoutTests/css2.1/t0905-c414-flt-fit-01-d-g.html = FAIL
BUG10314 DEFER WIN LINUX : LayoutTests/css2.1/t0905-c5525-flthw-00-c-g.html = FAIL
BUG10314 DEFER WIN LINUX : LayoutTests/css2.1/t0905-c5526-flthw-00-c-g.html = FAIL
// No glyph for U+FFFD (Replacement Character : black diamond with
// question mark) in them
BUG10315 DEFER WIN LINUX : LayoutTests/fast/encoding/invalid-UTF-8.html = FAIL
// HTTPS tests fail on the open source buildbot with error "cross-site
// not access allowed". See bug # 2306
BUG10316 MAC : LayoutTests/http/tests/ssl/verify-ssl-enabled.php = FAIL PASS
// These require application cache to be enabled. Skip the tests because
// they're all timing out. TODO(tc): Upstream changes to the test so they
// fail quickly if window.applicationCache is undefined (then we don't have to
// skip them).
BUG2844 DEFER SKIP : LayoutTests/http/tests/appcache = TIMEOUT FAIL
// V8 failures as a result of the WebKit merge.
// http://code.google.com/p/v8/issues/detail?id=92
// v8: A setter that is added to a prototype after the inline cache is
// recorded will not be called.
BUG1344252 DEFER : LayoutTests/fast/js/pic/cached-prototype-setter.html = FAIL
// We have the wrong shadow for "This".
// It appears we're not obeying the "transparent" fill color.
BUG10317 LINUX : LayoutTests/fast/css/shadow-multiple.html = FAIL
// Problems with getImageData and toDataURL.
// We should fix this test, but it wasn't passing for the 1.0 release, so
// it doesn't need to block the current release
BUG2972 DEFER LINUX WIN : LayoutTests/fast/canvas/canvas-getImageData.html = FAIL
// We're much closer now. To fully pass this we need encoders for jpg
// and gif, which is a low priority.
BUG10318 DEFER WIN LINUX : LayoutTests/fast/canvas/toDataURL-supportedTypes.html = FAIL
// More tests that fail because of masks not working properly.
// New tests. We should fix these, but they don't need to block the current release
BUG10319 DEFER WIN LINUX : LayoutTests/fast/backgrounds/mask-composite.html = FAIL
BUG10319 DEFER WIN LINUX : LayoutTests/fast/backgrounds/repeat/mask-negative-offset-repeat.html = FAIL
BUG10319 DEFER WIN LINUX : LayoutTests/fast/borders/block-mask-overlay-image.html = FAIL
BUG10319 DEFER WIN LINUX : LayoutTests/fast/borders/inline-mask-overlay-image.html = FAIL
// This test finishes while in the middle of a CSS animation. This is
// intentional, but it makes pixel results unreliable.
// http://bugs.webkit.org/show_bug.cgi?id=21491
// CSS animations should not block our next release.
BUG10320 DEFER SKIP : LayoutTests/transitions/opacity-transition-zindex.html = PASS
// Issue 3273: TextInputController::firstRectForCharacterRange not implemented
// http://code.google.com/p/chromium/issues/detail?id=3273
BUG10321 DEFER : LayoutTests/editing/selection/move-left-right.html = FAIL
// Regression from the 41362:41402 merge.
BUG8402 MAC : LayoutTests/fast/forms/drag-out-of-textarea.html = FAIL PASS
// This test fails because (in Chromium) it includes the full path to the
// subframe URL. Need to teach dumpResourceLoadCallbacks() about relative
// URLs.
BUG8407 DEFER : LayoutTests/fast/loader/main-document-url-for-non-http-loads.html = FAIL
// ----------------------------------------------------------------------------
// NEW FOR THE MERGE
//
// These tests need to have their output inspected to make sure it's reasonable
// and then baselined if necessary.
// ----------------------------------------------------------------------------
// Accessibility is off in the browser, and accessibility is not a priority
// for the current release.
BUG10322 DEFER : LayoutTests/accessibility = FAIL
// Border radius not anti-aliased.
// New test. We should fix it, but it doesn't need to block the current release
BUG10322 DEFER WIN : LayoutTests/fast/borders/fieldsetBorderRadius.html = FAIL
// Linux pixeltest failure: radial gradients don't have offset focal point
BUG10322 DEFER WIN LINUX : LayoutTests/fast/gradients/generated-gradients.html = FAIL
// Linux pixeltest failure: radial gradients don't have offset focal point
// New test. We should fix it, but it doesn't need to block the current release
BUG10322 DEFER WIN LINUX : LayoutTests/fast/gradients/simple-gradients.html = FAIL
// This test isn't hanging, it just takes 12-13 seconds to run.
BUG10322 SLOW : LayoutTests/http/tests/misc/acid3.html = FAIL
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10323 DEFER : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-no-content-length-onProgress.html = FAIL
// Times out because this uses dom storage which we don't implement.
BUG4360 DEFER SKIP : LayoutTests/security/autocomplete-cleared-on-back.html = TIMEOUT
// Post-MERGE failures: these will all need to be fixed one day
// Linux pixeltest failure: caret is in the wrong place
// Upstream WebKit also skips this test and Safari with latest WebKit shows
// same behavior as Chromium. Not required for beta so marking as deferred.
BUG10324 DEFER WIN LINUX : LayoutTests/editing/selection/caret-rtl-2.html = FAIL
// This test assumes we're using unix paths and looks for a file:///test
// path. We correctly return file:///C:/test on Windows. We should fix
// upstream
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10325 DEFER WIN : LayoutTests/fast/dom/resource-locations-in-created-html-document.html = FAIL
BUG10326 : LayoutTests/http/tests/messaging/cross-domain-message-event-dispatch.html = TIMEOUT FAIL PASS
// See recent changes to test_shell_win.
BUG10326 MAC LINUX : LayoutTests/http/tests/navigation/metaredirect-basic.html = FAIL
// GURL/KURL difference in handling of "http:".
// New test. We should fix it, but it doesn't need to block the current release
BUG7386 DEFER : LayoutTests/http/tests/security/postMessage/invalid-origin-throws-exception.html = FAIL
// Linux pixeltest failure: Font mismatch
BUG10327 LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug14007-2.html = FAIL
// This test seems to fail on the builders but not locally.
// New test. We should fix it, but it doesn't need to block the current release
BUG10328 DEFER WIN LINUX : LayoutTests/fast/css/font-face-multiple-faces.html = FAIL
// Got flakey (both debug and release) around r3581 (ananta).
// New test. We should fix it, but it doesn't need to block the current release
BUG10329 DEFER WIN : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL PASS
// This test is timing sensitive and sometimes fails. However, other tests
// in the LayoutTests/animations/ directory are timing sensitive in the same
// way. Maybe this is just flaky because it's animating faster?
// Doesn't need to block our next release.
BUG10330 DEFER : LayoutTests/animations/big-rotation.html = FAIL PASS
// Uses ahem font and expects line heights to match some pixel value.
// We should be able to pass this -- not sure what's wrong.
BUG10331 LINUX : LayoutTests/css2.1/t1008-c44-ln-box-02-d-ag.html = FAIL
// Text is different, likely just needs a rebaseline.
BUG10332 LINUX : LayoutTests/css2.1/t1605-c545-txttrans-00-b-ag.html = FAIL
// Linux: color off by one. Rounding error?
BUG10333 LINUX : LayoutTests/editing/deleting/deletionUI-single-instance.html = FAIL
BUG10334 MAC : LayoutTests/editing/selection/select-from-textfield-outwards.html = FAIL
// Asks for "system" fonts, which we don't support at all.
BUG10335 LINUX : LayoutTests/fast/css/css2-system-fonts.html = FAIL
// Large fonts have different metrics.
BUG10336 LINUX : LayoutTests/fast/css/font-face-descriptor-multiple-values.html = FAIL
// Wants Helvetica, Monaco. It's still testing something useful, but we may
// need to check in a wrong-looking baseline. Windows looks wrong too.
BUG10337 LINUX : LayoutTests/fast/css/font-face-locally-installed.html = FAIL
// Font metrics wrong, despite using Lucida Grande?
BUG10338 LINUX : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
// Off-by-one in form controls -- font metrics?
BUG10339 MAC : LayoutTests/fast/forms/input-baseline.html = FAIL
BUG10339 MAC : LayoutTests/fast/forms/textfield-outline.html = FAIL
// Layout totally different -- wrong font selected?
BUG10340 LINUX : LayoutTests/fast/frames/viewsource-attribute.html = FAIL
// Linux flaky: sometimes I get scrollbars and sometimes not.
BUG10341 LINUX : LayoutTests/fast/lists/001.html = FAIL PASS
// We fail to load a file URL with a port number -- how does this work on
// Windows?
BUG10342 MAC LINUX : LayoutTests/fast/loader/file-URL-with-port-number.html = FAIL
// Text doesn't display at all -- maybe we don't have the slow font
// code enabled?
BUG10343 LINUX : LayoutTests/fast/text/atsui-kerning-and-ligatures.html = FAIL
BUG10343 LINUX : LayoutTests/fast/text/atsui-partial-selection.html = FAIL
BUG10343 LINUX : LayoutTests/fast/text/atsui-small-caps-punctuation-size.html = FAIL
BUG10343 LINUX : LayoutTests/fast/text/cg-vs-atsui.html = FAIL
BUG10343 LINUX : LayoutTests/fast/text/international/complex-character-based-fallback.html = FAIL
BUG10343 LINUX : LayoutTests/fast/text/large-text-composed-char.html = FAIL
// Missing text -- slow font path unimplemented?
BUG10344 LINUX : LayoutTests/fast/text/international/bidi-AN-after-empty-run.html = FAIL
BUG10344 LINUX : LayoutTests/fast/text/international/bidi-control-chars-treated-as-ZWS.html = FAIL
BUG10344 LINUX : LayoutTests/fast/text/international/bidi-listbox-atsui.html = FAIL
BUG10344 LINUX : LayoutTests/fast/text/should-use-atsui.html = FAIL
// Missing Arabic font.
BUG10345 LINUX : LayoutTests/fast/text/international/bidi-CS-after-AN.html = FAIL
// Missing Hindi font.
BUG10346 LINUX : LayoutTests/fast/text/international/hindi-spacing.html = FAIL
// We print to stderr when a failure happens while importing XSL;
// should disable this in libxml.
BUG10347 MAC LINUX : LayoutTests/fast/xsl/transform-xhr-doc.xhtml = FAIL
BUG10348 MAC : LayoutTests/fast/forms/input-appearance-height.html = FAIL
BUG10348 MAC : LayoutTests/fast/forms/input-text-scroll-left-on-blur.html = FAIL
// Linux pixeltest failure: Failing to apply style
BUG10349 LINUX : LayoutTests/fast/forms/select-style.html = FAIL
// Linux pixeltest failure: The text suggests that the radios should not
// overlap, but it's very close and quite different from the Windows version
BUG10350 LINUX : LayoutTests/fast/replaced/width100percent-radio.html = FAIL
// Linux pixel tests: the select arrow is clipping wrong on one line.
BUG_GWILSON LINUX : chrome/fast/forms/basic-selects.html = FAIL
// Depends on plugin support.
BUG10351 MAC LINUX : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL
BUG10351 MAC : LayoutTests/fast/dynamic/flash-replacement-test.html = FAIL
BUG10351 MAC : LayoutTests/fast/events/tabindex-focus-blur-all.html = FAIL PASS
BUG10351 MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug8499.html = FAIL
BUG_GWILSON LINUX : chrome/plugins/call-as-function.html = CRASH FAIL
BUG_GWILSON MAC : chrome/plugins/call-as-function.html = FAIL
BUG10351 LINUX : LayoutTests/fast/js/navigator-mimeTypes-length.html = FAIL
BUG10351 MAC LINUX : LayoutTests/http/tests/plugins/cross-frame-object-access.html = FAIL
BUG10351 LINUX : LayoutTests/http/tests/plugins/get-url.html = TIMEOUT
// Skip because we throw an exception before we get to dumpAsText.
BUG10351 SKIP MAC LINUX : LayoutTests/http/tests/plugins/geturlnotify-from-npp-destroystream.html = FAIL
BUG10351 LINUX : LayoutTests/http/tests/plugins/interrupted-get-url.html = TIMEOUT
BUG10351 LINUX : LayoutTests/http/tests/plugins/npapi-response-headers.html = TIMEOUT
BUG10351 LINUX : LayoutTests/http/tests/plugins/post-url-file.html = CRASH TIMEOUT
BUG10351 LINUX : LayoutTests/http/tests/security/frameNavigation/xss-DENIED-plugin-navigation.html = TIMEOUT
BUG10351 MAC LINUX : LayoutTests/plugins/embed-attributes-setting.html = CRASH FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/embed-inside-object.html = TIMEOUT
BUG10351 MAC LINUX : LayoutTests/plugins/get-empty-url.html = CRASH FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/get-url-that-the-resource-load-delegate-will-disallow.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/getintidentifier-special-values.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/geturl-replace-query.html = TIMEOUT
BUG10351 MAC LINUX : LayoutTests/plugins/inner-html-display-none.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/invoke.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/mouse-events.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/netscape-destroy-plugin-script-objects.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/netscape-dom-access.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/netscape-get-property-return-value.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/netscape-identifier-conversion.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/netscape-invoke-default.html = FAIL
BUG10351 LINUX : LayoutTests/plugins/open-and-close-window-with-plugin.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/plugin-javascript-access.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/plugin-remove-subframe.html = FAIL
BUG10351 MAC LINUX : LayoutTests/plugins/return-error-from-new-stream-doesnt-invoke-destroy-stream.html = TIMEOUT
BUG_GWILSON LINUX MAC : chrome/plugins/get-file-url.html = CRASH TIMEOUT
// Skip because we throw an exception before we get to dumpAsText.
BUG_GWILSON SKIP LINUX MAC : chrome/plugins/get-url-with-blank-target.html = FAIL
BUG_GWILSON LINUX MAC : chrome/plugins/multiple-plugins.html = FAIL
BUG_GWILSON LINUX MAC : chrome/plugins/nested-plugin-objects.html = FAIL
BUG_GWILSON LINUX MAC : chrome/plugins/refcount-leaks.html = FAIL
BUG_GWILSON LINUX MAC : chrome/plugins/return-npobject.html = FAIL
BUG_GWILSON LINUX MAC : chrome/plugins/script-object-invoke.html = FAIL
BUG_GWILSON MAC : pending/plugins/iframe-shims.html = FAIL CRASH
// NEW FOR MERGE 36102:37604
// We don't draw the spelling markers at all in test shell, and it's a low
// priority, so I'm DEFERing.
BUG10352 DEFER WIN LINUX : LayoutTests/editing/spelling/inline_spelling_markers.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10352 DEFER : LayoutTests/fast/js/arguments.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10352 DEFER : LayoutTests/fast/js/primitive-method-this.html = FAIL
// See bug http://code.google.com/p/chromium/issues/detail?id=7868,
// not urgent for current release.
BUG10352 DEFER : LayoutTests/http/tests/plugins/local-geturl-from-remote.html = FAIL
// These two depend on which webkit features are enabled. For instance, it checks
// if the Audio constructor is available which is only the case if AUDIO is enabled.
BUG10352 DEFER : LayoutTests/fast/dom/constructors-cached-navigate.html = FAIL
BUG10352 DEFER : LayoutTests/fast/dom/constructors-cached.html = FAIL
// MERGE REGRESSIONS 36102:37604
BUG10353 LINUX : LayoutTests/fast/events/mouse-click-events.html = FAIL
// These tests are wrong because of:
// https://bugs.webkit.org/show_bug.cgi?id=24161. This is not
// important for current release.
BUG10353 DEFER WIN LINUX : LayoutTests/fast/forms/listbox-deselect-scroll.html = FAIL
BUG10353 DEFER WIN LINUX : LayoutTests/fast/forms/listbox-selection-2.html = FAIL
BUG10353 DEFER WIN LINUX : LayoutTests/fast/forms/select-item-background-clip.html = FAIL
// The pixel diff is ok, but the render tree is different because of
// our forked modifications to RenderTextControlMultiLine.cpp, specifically
// the calls to set the overflow in createInnerTextStyle.
BUG10353 DEFER : LayoutTests/fast/forms/textarea-rows-cols.html = FAIL
// Linux pixeltest failure: We, with Windows, are failing to repaint correctly
BUG10353 WIN LINUX : LayoutTests/fast/repaint/overflow-outline-repaint.html = FAIL
BUG10353 WIN : LayoutTests/fast/repaint/overflow-scroll-delete.html = FAIL
// Likely just needs to be baselined.
BUG10353 MAC LINUX : LayoutTests/fast/forms/form-element-geometry.html = FAIL
BUG10353 MAC LINUX : LayoutTests/fast/replaced/width100percent-textarea.html = FAIL
BUG10353 LINUX : LayoutTests/fast/text/drawBidiText.html = FAIL
BUG10353 LINUX : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html = TIMEOUT PASS
BUG_GWILSON : chrome/fast/dom/xss-DENIED-javascript-variations.html = FAIL
// This test sometimes fails indefinitely, other times it takes 1-2 seconds.
BUG10353 WIN LINUX : LayoutTests/http/tests/misc/dns-prefetch-control.html = TIMEOUT PASS
// This is failing on the mac debug only, not sure why, but it's pretty repeatable on the bots, so we
// go to the complexity to split out that one case to track any other changes for the other platforms.
BUG10353 DEBUG MAC : LayoutTests/http/tests/misc/dns-prefetch-control.html = TIMEOUT FAIL PASS
// NEW FOR MERGE 37604:38097
// This is a Safari specific test used to document the set of global
// constructors they expose and the exact way they are printed. Not
// important - we might even want to ignore it.
// New tests. We should fix these, but they doesn't need to block the current
// release
BUG10354 DEFER WIN LINUX : LayoutTests/fast/layers/opacity-transforms.html = FAIL
BUG10354 DEFER : LayoutTests/plugins/netscape-construct.html = FAIL
// MERGE 37604:38097 REGRESSIONS
// New test. We should fix it, but it doesn't need to block the current release
BUG10355 DEFER : LayoutTests/http/tests/security/originHeader/origin-header-for-empty.html = TIMEOUT FAIL PASS
BUG10356 MAC : LayoutTests/http/tests/security/originHeader/origin-header-for-https.html = TIMEOUT FAIL
// MERGE 38389:38450
// WebKit regression: https://bugs.webkit.org/show_bug.cgi?id=20342
// Fails upstream, deferring for now.
BUG10357 DEFER : LayoutTests/fast/dom/cssTarget-crash.html = TIMEOUT
// MERGE 38500:39550: New tests
// Missing expected results
BUG10358 SKIP MAC LINUX : LayoutTests/animations/animation-drt-api.html = PASS
// MERGE 38625:38653: Expectations changed upstream
BUG10359 MAC : LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer.html = FAIL
// MERGE 38625:38653: New tests
BUG10360 MAC : LayoutTests/fast/css/getComputedStyle/computed-style.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10360 DEFER WIN LINUX : LayoutTests/fast/repaint/change-transform.html = FAIL
// MERGE 38653:38729: New tests
// New test. We should fix it, but it doesn't need to block the current release
BUG10361 DEFER WIN LINUX : LayoutTests/fast/repaint/outline-child-repaint.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10361 DEFER : LayoutTests/http/tests/misc/single-character-pi-stylesheet.xhtml = FAIL
// MERGE 38729:38760: Regressions
BUG10362 LINUX : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL
// Windows is missing the green box.
BUG8729 DEFER WIN : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
// This is a repaint test. When it passes, the pixel results will show a white
// background for only the last couple of lines, instead of the whole
// paragraph. New test in merge 42324:42364.
BUG9962 WIN LINUX : LayoutTests/fast/repaint/text-append-dirty-lines.html = FAIL
// -----------------------------------------------------------------
// MAC PORT TESTS
// -----------------------------------------------------------------
//
// *** TESTS TO WORK ON FIRST ***
// These tests fail because of work that needs to be done in Mac TestShell to
// bring it up to par with Win TestShell. These tests pass on Win and should
// pass on Mac once we fix the bugs.
//
// We've bucketed tests into groupings for why they're failing. Please try
// to add new failures in the appropriate bucket.
// text fields wrong width
BUG10363 MAC : LayoutTests/editing/deleting/5168598.html = FAIL
BUG10363 MAC : LayoutTests/editing/inserting/5607069-2.html = FAIL
BUG10363 MAC : LayoutTests/editing/inserting/5607069-3.html = FAIL
BUG10363 MAC : LayoutTests/editing/inserting/typing-tab-designmode-forms.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-double-click.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug2479-2.html = FAIL
BUG10363 MAC : LayoutTests/editing/inserting/before-after-input-element.html = FAIL
BUG10363 MAC : LayoutTests/editing/pasteboard/4806874.html = FAIL
BUG10363 MAC : LayoutTests/editing/pasteboard/drop-text-without-selection.html = FAIL
BUG10363 MAC : LayoutTests/editing/pasteboard/input-field-1.html = FAIL
BUG10363 MAC : LayoutTests/editing/pasteboard/nested-blocks-with-text-field.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/3690703-2.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/3690703.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/3690719.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/4895428-3.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/4975120.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/5136696.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/5213963.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/drag-select-1.html = FAIL
BUG10363 MAC : LayoutTests/editing/selection/drag-text-delay.html = FAIL
BUG10363 MAC : LayoutTests/fast/css/line-height.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-disabled-color.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/password-placeholder-text-security.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/password-placeholder.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug2479-5.html = FAIL
BUG10363 MAC : LayoutTests/fast/events/autoscroll.html = FAIL
BUG10363 MAC : LayoutTests/fast/events/label-focus.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/encoding-test.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/fieldset-align.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-align.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-bkcolor.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-default-bkcolor.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-disabled.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-focus.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-preventDefault.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-readonly.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-selection.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-visibility.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-appearance-width.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-double-click-selection-gap-bug.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-paste-undo.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-readonly-dimmed.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-readonly-empty.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-spaces.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-table.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-click-inside.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-click-outside.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-drag-down.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-option-delete.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-self-emptying-click.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-text-word-wrap.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-type-change2.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-value.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-width.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/tabbing-input-iframe.html = FAIL
BUG10363 MAC SLOW : LayoutTests/fast/forms/textfield-drag-into-disabled.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/textfield-overflow.html = FAIL
BUG10363 MAC : LayoutTests/fast/lists/dynamic-marker-crash.html = FAIL
BUG10363 MAC : LayoutTests/fast/repaint/renderer-destruction-by-invalidateSelection-crash.html = FAIL
BUG10363 MAC : LayoutTests/fast/repaint/subtree-root-skipped.html = FAIL
BUG10363 MAC : LayoutTests/fast/replaced/replaced-breaking-mixture.html = FAIL
BUG10363 MAC : LayoutTests/fast/replaced/width100percent-textfield.html = FAIL
BUG10363 MAC : LayoutTests/fast/table/colspanMinWidth.html = FAIL
BUG10363 MAC : LayoutTests/fast/table/spanOverlapRepaint.html = FAIL
BUG10363 MAC : LayoutTests/fast/text/textIteratorNilRenderer.html = FAIL
BUG10363 MAC : LayoutTests/svg/hixie/mixed/003.xml = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug1188.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug12384.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug18359.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug194024.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug24200.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug2479-3.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug2479-4.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug28928.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug30559.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug30692.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug4382.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug4527.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug46368-1.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug46368-2.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug51037.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug55545.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug59354.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug7342.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug96334.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug99948.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/dom/tableDom.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla/other/move_row.html = FAIL
BUG10363 MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug92647-1.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/basic-buttons.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/basic-inputs.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/basic-selects.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/textarea-metrics.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-readonly-autoscroll.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/input-type-text-min-width.html = FAIL
BUG10363 MAC : LayoutTests/fast/forms/placeholder-set-attribute.html = FAIL
BUG10363 MAC : LayoutTests/fast/replaced/replaced-breaking.html = FAIL
BUG10363 MAC : LayoutTests/fast/table/text-field-baseline.html = FAIL
// we're waiting on upstreaming a change to how textarea padding works. rather
// than rebasing, we'll wait for the upstream (which ojan said should happen
// early in Jan 09).
BUG10364 MAC : LayoutTests/fast/forms/negativeLineHeight.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textAreaLineHeight.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-width.html = FAIL
BUG10364 MAC : LayoutTests/fast/text/international/rtl-white-space-pre-wrap.html = FAIL
BUG10364 MAC : LayoutTests/editing/inserting/4960120-1.html = FAIL
BUG10364 MAC : LayoutTests/editing/pasteboard/nested-blocks-with-text-area.html = FAIL
BUG10364 MAC : LayoutTests/editing/pasteboard/pasting-tabs.html = FAIL
BUG10364 MAC : LayoutTests/fast/css/resize-corner-tracking.html = FAIL
BUG10364 MAC : LayoutTests/fast/dom/HTMLTextAreaElement/reset-textarea.html = FAIL
BUG10364 MAC : LayoutTests/fast/dynamic/008.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-align.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-scroll-height.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-scrollbar.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-scrolled-type.html = FAIL
BUG10364 MAC : LayoutTests/fast/forms/textarea-setinnerhtml.html = FAIL
BUG10364 MAC : LayoutTests/fast/parser/entity-comment-in-textarea.html = FAIL
BUG10364 MAC : LayoutTests/fast/table/003.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/anchor-basic.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/anchor-frames.html = TIMEOUT FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/anchor-goback.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/anchor-subframeload.html = FAIL TIMEOUT
BUG10364 MAC : LayoutTests/http/tests/navigation/javascriptlink-basic.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/javascriptlink-goback.html = FAIL
BUG10364 MAC LINUX : LayoutTests/http/tests/navigation/javascriptlink-subframeload.html = TIMEOUT FAIL PASS
BUG10364 MAC : LayoutTests/http/tests/navigation/metaredirect-frames.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/metaredirect-goback.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/redirect302-frames.html = TIMEOUT FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/relativeanchor-goback.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/reload-subframe-object.html = TIMEOUT FAIL
BUG10364 SLOW MAC : LayoutTests/http/tests/navigation/slowmetaredirect-basic.html = FAIL
BUG10364 SLOW MAC : LayoutTests/http/tests/navigation/slowtimerredirect-basic.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-basic.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-frames-loadsame.html = TIMEOUT FAIL
BUG10364 MAC LINUX : LayoutTests/http/tests/navigation/success200-frames.html = FAIL PASS
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-goback.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-loadsame.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-reload.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/success200-subframeload.html = FAIL PASS
BUG10364 MAC : LayoutTests/http/tests/navigation/timerredirect-basic.html = CRASH FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/timerredirect-frames.html = TIMEOUT FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/timerredirect-goback.html = FAIL
BUG10364 MAC LINUX : LayoutTests/http/tests/navigation/timerredirect-subframeload.html = TIMEOUT FAIL PASS
BUG10364 MAC : LayoutTests/http/tests/navigation/post-goback2.html = TIMEOUT FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/postredirect-goback2.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/redirect302-goback.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/redirect302-subframeload.html = TIMEOUT FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/relativeanchor-basic.html = FAIL
BUG10364 MAC : LayoutTests/http/tests/navigation/relativeanchor-frames.html = TIMEOUT FAIL
// text input garbage
BUG10365 MAC : LayoutTests/fast/forms/focus-selection-textarea.html = FAIL
// bad key event handling
BUG10366 MAC : LayoutTests/fast/events/option-tab.html = FAIL
// event failures
BUG10367 MAC : LayoutTests/fast/events/attempt-scroll-with-no-scrollbars.html = CRASH FAIL
// history (currently flaky on Linx & Mac platforms)
BUG10368 MAC LINUX : LayoutTests/http/tests/navigation/lockedhistory-iframe.html = FAIL PASS
// selection
BUG10369 MAC : LayoutTests/fast/forms/listbox-onchange.html = FAIL
BUG10369 MAC : LayoutTests/fast/forms/listbox-selection.html = FAIL
BUG10369 MAC : LayoutTests/editing/selection/5109817.html = FAIL
BUG10369 LINUX : LayoutTests/editing/selection/5354455-2.html = FAIL
// incorrect layout
BUG10370 MAC : LayoutTests/fast/css/font-weight-1.html = FAIL
// not loading local files
BUG10371 SLOW MAC : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL
BUG10371 MAC : LayoutTests/fast/loader/local-JavaScript-from-local.html = FAIL
BUG10371 MAC : LayoutTests/fast/loader/local-image-from-local.html = FAIL
// whitespace differences (??)
BUG10372 MAC : LayoutTests/fast/dom/tabindex-clamp.html = FAIL
// Error from CGImageSourceUpdateData but everything else is correct.
BUG10373 MAC : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL
// Crashing...
// window.open crashes (some of these are flaky, in that they don't always
// crash, and are noted as such)
BUG10374 MAC : LayoutTests/plugins/open-and-close-window-with-plugin.html = CRASH TIMEOUT FAIL
BUG10374 MAC : LayoutTests/fast/dom/Window/setting-properties-on-closed-window.html = CRASH TIMEOUT PASS
BUG10374 MAC : LayoutTests/fast/events/open-window-from-another-frame.html = CRASH TIMEOUT PASS
BUG10374 MAC : LayoutTests/fast/history/history_reload.html = CRASH TIMEOUT PASS
SLOW BUG10374 MAC : LayoutTests/svg/carto.net/scrollbar.svg = CRASH PASS
// no html tags, bad html (unmatched tags)
BUG10375 MAC : LayoutTests/fast/canvas/unclosed-canvas-1.html = CRASH PASS
// Script -- onload hooks
BUG10375 MAC : LayoutTests/fast/dom/Document/early-document-access.html = CRASH TIMEOUT PASS
// Not really sure why these are failing at the moment
BUG10376 MAC : LayoutTests/fast/dom/isindex-002.html = FAIL
BUG10376 MAC : LayoutTests/fast/events/init-events.html = FAIL
// This tests has a comment about order isn't really defined and could change,
// maybe we just need to update to this order?
BUG10377 MAC : LayoutTests/fast/events/drag-in-frames.html = FAIL
// These two have a different object type in the dom dump. Plugin-related.
// Ignored on Win/Linux because they rely on QT to provide a TIFF decoder.
BUG10378 MAC : LayoutTests/fast/images/embed-image.html = FAIL
BUG10378 MAC : LayoutTests/fast/images/object-image.html = FAIL
// Some times it fails because the animation starts before the first dom dump
// so the text doesn't match.
BUG10379 MAC : LayoutTests/svg/hixie/perf/007.xml = FAIL PASS
// To be figured out, probably timing due to the dual status
BUG10380 MAC : LayoutTests/animations/combo-transform-translate+scale.html = FAIL PASS
BUG10380 MAC : LayoutTests/animations/change-one-anim.html = FAIL PASS
// All of these svg tests seem to be hit or miss on the mac. the issue is they
// seem not always take the dom snapshot at a consistent state, so some times
// animations have started and sometimes they haven't. It looks like win and
// linux have rebaselined to what is most common cases for the build bots, but
// we're not seeing that sorta stability on mac. So for now we tag them as
// pass & fail, but we really need to fix these tests upstream to have
// a consistent behavior (and probably update win/linux expected values).
BUG10381 MAC LINUX : LayoutTests/svg/W3C-SVG-1.1/animate-elem-03-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-04-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-05-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-06-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-07-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-08-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-10-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-11-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-12-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-15-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-16-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-19-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-22-b.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-28-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-32-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-33-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-34-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-36-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-37-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-40-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-46-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-81-t.svg = FAIL PASS
BUG10381 MAC : LayoutTests/svg/W3C-SVG-1.1/animate-elem-85-t.svg = FAIL PASS
// This next one seems to be timing related (passes some times)
BUG10381 DEBUG MAC : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL PASS
BUG10381 DEBUG MAC : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
// These may be similar timing issue as above.
BUG10382 MAC : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
BUG10382 MAC : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
BUG10382 MAC : LayoutTests/transitions/shorthand-transitions.html = FAIL PASS
BUG10382 MAC : LayoutTests/animations/change-keyframes-name.html = FAIL PASS
// Most of the http tests seem to be flaky on the mac.
// Don't mark these as FAIL since we want to know if tests start failing.
// TODO(ojan): Remove all the mac http tests that are now redundant with the
// following two lines.
BUG10383 MAC : LayoutTests/http = CRASH TIMEOUT PASS
BUG_GWILSON MAC : chrome/http = PASS CRASH TIMEOUT
// 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.)
BUG10384 MAC : LayoutTests/animations/animation-end-event-destroy-renderer.html = TIMEOUT PASS
BUG10384 MAC : LayoutTests/fast/images/animated-background-image-crash.html = TIMEOUT PASS
BUG10384 MAC : LayoutTests/http/tests/security/javascriptURL/xss-ALLOWED-from-javascript-url-window-open.html = CRASH TIMEOUT FAIL PASS
BUG10384 MAC : LayoutTests/fast/css/background-shorthand-invalid-url.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/dom/Window/window-early-properties.html = CRASH TIMEOUT PASS
BUG_GWILSON MAC : chrome/http/tests/misc/set-window-opener-to-null.html = PASS TIMEOUT FAIL
BUG10384 MAC : LayoutTests/fast/dom/Window/new-window-opener.html = CRASH TIMEOUT FAIL
BUG10384 MAC : LayoutTests/fast/events/frame-tab-focus.html = CRASH FAIL
BUG10384 MAC : LayoutTests/fast/forms/focus2.html = CRASH FAIL
BUG10384 MAC : LayoutTests/fast/borders/svg-as-border-image-2.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/canvas/pattern-with-transform.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/fast/canvas/pointInPath.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/dom/Window/element-constructors-on-window.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/fast/loader/charset-parse.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/fast/borders/border-image-omit-right-slice.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/borders/border-image-01.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/canvas/linearGradient-infinite-values.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/css/acid2-pixel.html = CRASH PASS
BUG10384 MAC : LayoutTests/fast/canvas/gradient-with-clip.html = CRASH PASS
BUG10384 MAC LINUX : LayoutTests/fast/css/acid2.html = CRASH PASS
BUG10384 RELEASE MAC : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = TIMEOUT FAIL PASS
BUG10384 DEBUG MAC : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL PASS
// These next few passes like 1 in 20 times, but it could be from corruption
// from previous tests that is causing the problems.
BUG10384 MAC : LayoutTests/http/tests/misc/xhtml.php = CRASH TIMEOUT FAIL PASS
BUG10384 MAC : LayoutTests/fast/dom/Window/console-functions.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/http/tests/security/originHeader/origin-header-for-get.html = CRASH TIMEOUT FAIL PASS
BUG10384 MAC : LayoutTests/http/tests/security/aboutBlank/security-context-with-base-tag.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/http/tests/security/host-compare-case-insensitive.html = CRASH FAIL PASS
BUG10384 MAC : LayoutTests/fast/dom/Window/window-open-self-from-other-frame.html = CRASH FAIL PASS
// -----------------------------------------------------------------
// END MAC PORT TESTS
// -----------------------------------------------------------------
// WebKit Merge 38850:38900 new tests
// New test. We should fix it, but it doesn't need to block the current release
BUG10385 DEFER : LayoutTests/fast/dom/dom-constructors.html = FAIL
// WebKit Merge 39050:39100 failures:
// New test. We should fix it, but it doesn't need to block the current release
BUG10386 DEFER WIN LINUX : LayoutTests/fast/repaint/transform-repaint-descendants.html = FAIL
// WebKit Merge 39100:39141 new tests:
// New test. We should fix it, but it doesn't need to block the current release
BUG10387 DEFER SKIP : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-image-not-loaded-svg.svg = FAIL
// Windows pixeltest failure: alpha=0.5 red does not come out blended.
// Linux pixeltest failure: alpha=0.5 red (1,0,0) atop yellow (1,1,0) is
// coming out with with a slightly-less-than-100% red channel. This test fails
// because we enforce non-transparent color in Font::drawGlyphs.
BUG700464 LINUX : LayoutTests/fast/css/hsla-color.html = FAIL
// Linux pixeltest failure: flaky? Appears without red locally.
BUG10388 LINUX : LayoutTests/fast/layers/layer-visibility-sublayer.html = FAIL PASS
// Repaint tests, so the expected output should look like the
// Mac where everything is dark gray.
// We should fix these, but they're new tests. Don't need to block next release
BUG10389 DEFER WIN LINUX : LayoutTests/fast/repaint/table-cell-collapsed-border.html = FAIL
BUG10389 DEFER WIN LINUX : LayoutTests/fast/repaint/transform-absolute-child.html = FAIL
BUG10389 DEFER WIN LINUX : LayoutTests/fast/canvas/canvas-as-image-incremental-repaint.html = FAIL
BUG10389 DEFER WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint.html = FAIL
BUG10389 DEFER WIN LINUX : LayoutTests/fast/repaint/create-layer-repaint.html = FAIL
BUG10389 DEFER WIN LINUX : LayoutTests/fast/repaint/reflection-redraw.html = FAIL
// Linux pixeltest failure: Failing to rotate the form control
BUG10390 MAC LINUX : LayoutTests/fast/transforms/transformed-focused-text-input.html = FAIL
// TODO(tc): flaky.
BUG10391 LINUX : LayoutTests/fast/events/5056619.html = FAIL PASS
// Failed with r6844 (dglazkov)
BUG10392 MAC LINUX : LayoutTests/http/tests/navigation/error404-goback.html = TIMEOUT FAIL
// Passes when run by itself. Fails on the buildbot.
// For Windows, see bug.
BUG8291 LINUX WIN : LayoutTests/fast/css/beforeSelectorOnCodeElement.html = CRASH PASS
// This test appears to pass on Linux, despite it referencing feed:// URLs which
// we don't support. Needs more investigation.
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10393 DEFER : LayoutTests/http/tests/security/feed-urls-from-remote.html = FAIL PASS
// Skipped as this tests window.sessionStorage, which we don't
// support. Enable once we turn on DOM_STORAGE.
BUG4360 DEFER SKIP : LayoutTests/http/tests/navigation/post-goback-repost-policy.html = TIMEOUT
// Probably just needs to be rebaselined. We generate the png before the
// image in the iframe loads so its dimensions are 0x0.
// TODO(tc): Failing on buildbots
BUG10394 DEFER WIN LINUX : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL
// Missing expected results. Probably going to fail anyway, since
// chromium does not support webarchive format.
// Doesn't need to block the next release. So defer.
BUG10395 DEFER SKIP : LayoutTests/svg/webarchive/svg-cursor-subresources.svg = FAIL
BUG10395 DEFER SKIP : LayoutTests/webarchive/test-css-url-resources-in-stylesheets.html = FAIL
BUG10395 DEFER SKIP : LayoutTests/webarchive/test-css-url-resources-inline-styles.html = FAIL
// Merge 39309:39335 Regressions (RenderButton::setupInnerStyle regression).
BUG5737 LINUX : LayoutTests/fast/box-sizing/percentage-height.html = FAIL
BUG5737 LINUX : LayoutTests/fast/forms/001.html = FAIL
BUG5737 LINUX : LayoutTests/fast/forms/input-first-letter.html = FAIL
// These test the behavior of the (x) in type=search inputs. We haven't
// implemented this yet (should we on win/linux?).
BUG5701 DEFER : LayoutTests/fast/forms/search-cancel-button-style-sharing.html = FAIL
BUG5701 DEFER : LayoutTests/fast/forms/search-rtl.html = FAIL
BUG5701 DEFER : LayoutTests/fast/forms/search-transformed.html = FAIL
// Merge 39369:39410: new test. Ran correctly and was baselined on Win32.
BUG10396 MAC : LayoutTests/fast/reflections/reflection-overflow-hidden.html = FAIL PASS
// Linux's rotated text output looks terrible.
BUG10397 LINUX : LayoutTests/fast/transforms/transformed-document-element.html = FAIL
// Merge 39606:39660 - new tests
// New test. We should fix it, but it doesn't need to block the current release
BUG10398 DEFER SKIP : LayoutTests/fast/events/pointer-events-2.html = FAIL
BUG10398 DEFER SKIP : LayoutTests/fast/events/pointer-events.html = FAIL
// Merge 39744:39829 - new tests
// New test. We should fix it, but it doesn't need to block the current release
BUG10399 DEFER WIN LINUX : LayoutTests/fast/canvas/canvas-incremental-repaint-2.html = FAIL
BUG10399 MAC : LayoutTests/fast/encoding/char-encoding-mac.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10399 DEFER WIN LINUX : LayoutTests/fast/repaint/transform-disable-layoutstate.html = FAIL
// Looks like this just needs a rebaseline.
BUG10400 LINUX : LayoutTests/svg/custom/stroke-fallback.svg = FAIL
// Merge 39830:39880 - new tests
// New test. We should fix it, but it doesn't need to block the current release
BUG10401 DEFER : LayoutTests/plugins/npruntime.html = TIMEOUT FAIL
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10402 DEFER WIN LINUX : LayoutTests/fast/events/init-events.html = FAIL
// Merge 39894:39913 - new test.
// New test. We should fix it, but it doesn't need to block the current release
BUG6735 DEFER : LayoutTests/plugins/netscape-throw-exception.html = FAIL
// Merge 39744:39913? - regressions
BUG10403 LINUX : LayoutTests/http/tests/misc/uncacheable-script-repeated.html = TIMEOUT PASS
BUG10403 LINUX : LayoutTests/http/tests/local/stylesheet-and-script-load-order-http.html = TIMEOUT PASS
BUG10403 LINUX : LayoutTests/svg/custom/animate-path-morphing.svg = FAIL PASS
BUG10403 LINUX : LayoutTests/svg/custom/circular-marker-reference-1.svg = FAIL PASS
BUG10403 LINUX : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
// This never worked on Linux, but were in the past incorrectly rebaselined.
// Text pattern fills/strokes not working.
BUG10404 LINUX : LayoutTests/svg/custom/js-late-pattern-and-object-creation.svg = FAIL
// might need to be rebaselined in win, 'DRAFT' rendering incorrect before
BUG10405 WIN : LayoutTests/svg/custom/struct-use-09-b.svg = FAIL
// Passes locally but Text diff fails on the buildbots
BUG10406 LINUX : LayoutTests/svg/custom/path-getTotalLength.svg = FAIL PASS
// Merge 40059:40086 -- regressions
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10407 DEFER : LayoutTests/transitions/hang-with-bad-transition-list.html = TIMEOUT FAIL PASS
// Popup-menu doesn't draw in layout tests
BUG10408 MAC : LayoutTests/fast/forms/menulist-no-overflow.html = FAIL
// Pass locally but fail on the bots.
BUG10409 MAC : LayoutTests/fast/forms/002.html = FAIL
BUG10409 MAC LINUX : LayoutTests/svg/custom/clip-path-units-changes.svg = FAIL
// Pass locally on some developers' machines but fails on bot.
BUG9275 WIN MAC LINUX : LayoutTests/fast/encoding/char-decoding.html = FAIL
// Flakey tests
BUG10410 LINUX : LayoutTests/transitions/shorthand-transitions.html = FAIL PASS
// intermittent failures on the buildbot
BUG10411 : LayoutTests/svg/custom/gradient-stop-style-change.svg = FAIL PASS
// The 7th column should not be top aligned.
// New test. We should fix it, but it doesn't need to block the current release
BUG10412 DEFER WIN LINUX : LayoutTests/fast/table/vertical-align-baseline.html = FAIL
// Merge 40165:40297 -- regressions
// New test. We should fix it, but it doesn't need to block the current release
BUG10413 DEFER WIN LINUX : LayoutTests/fast/repaint/dynamic-table-vertical-alignment-change.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10413 DEFER WIN LINUX : LayoutTests/fast/repaint/inline-color-change.html = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10413 DEFER : LayoutTests/http/tests/misc/SVGFont-delayed-load.html = FAIL
// Expectations for this test changed upstream. We should fix this test, but
// it doesn't need to block the current release
BUG10413 DEFER : LayoutTests/http/tests/uri/resolve-encoding-relative.html = FAIL
// Merge 40314:40364 -- new tests
// See comment above LayoutTests/editing/spelling/inline_spelling_markers.html
// for why this is disabled.
BUG10414 DEFER WIN LINUX : LayoutTests/editing/spelling/spelling-linebreak.html = FAIL
// Merge 40364:40409 -- new test
// New test. We should fix it, but it doesn't need to block the current release
BUG10415 DEFER WIN LINUX : LayoutTests/svg/custom/pattern-with-transformation.svg = FAIL
// Merge 40364:40409 -- fails after http://trac.webkit.org/changeset/40379
// ASSERTs in Debug after this change: http://trac.webkit.org/changeset/40372
// Likely will be fixed with subsequent merge.
BUG10416 SKIP : LayoutTests/fast/dynamic/insert-before-table-part-in-continuation.html = CRASH
// New tests added in http://trac.webkit.org/changeset/40424
// Renders the width of "600" off by 3. Looks OK but could still be a bug
// that we shouldn't rebaseline.
BUG10417 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-fonts-02-t.svg = FAIL
BUG10417 LINUX : LayoutTests/svg/text/text-fonts-02-t.svg = FAIL
// New test. We should fix it, but it doesn't need to block the current release
BUG10418 DEFER : LayoutTests/transitions/zero-duration-with-non-zero-delay-end.html = FAIL PASS
BUG10418 SLOW MAC : LayoutTests/fast/events/click-count.html = FAIL PASS
BUG10418 MAC : LayoutTests/fast/dom/Window/timeout-callback-scope.html = CRASH PASS
BUG10418 : LayoutTests/animations/change-keyframes.html = FAIL PASS
// TODO(dsh): These started to fail after r9202.
BUG10419 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-path-01-b.svg = FAIL
BUG10419 LINUX : LayoutTests/svg/text/text-path-01-b.svg = FAIL
// 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.
BUG7482 DEFER : LayoutTests/http/tests/misc/timer-vs-loading.html = FAIL PASS TIMEOUT
// Regressions from WebKit merge 40722:40785
//
// These ones look to just need fresh pixel baselines (likely caused by
// transformation matrices now using doubles instead of floats):
BUG10420 LINUX : LayoutTests/fast/transforms/matrix-02.html = FAIL
BUG10420 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-text-07-t.svg = CRASH FAIL PASS
// Misc failures:
// New test. We should fix it, but it doesn't need to block the current release
BUG10420 DEFER WIN LINUX : LayoutTests/fast/forms/option-mouseevents.html = FAIL
BUG10420 LINUX : LayoutTests/svg/W3C-SVG-1.1/types-basicDOM-01-b.svg = FAIL
BUG10420 LINUX : LayoutTests/svg/custom/use-transform.svg = FAIL
BUG10420 LINUX : LayoutTests/fast/clip/007.html = CRASH PASS
BUG10420 LINUX : LayoutTests/fast/clip/010.html = CRASH PASS
BUG10420 LINUX : LayoutTests/fast/clip/012.html = CRASH PASS
// Regressions from WebKit merge to 40864
// Likely just needs a rebaseline.
BUG10421 LINUX : LayoutTests/fast/block/positioning/001.html = FAIL PASS
// New test. We should fix it, but it doesn't need to block the current release
BUG10421 DEFER : LayoutTests/fast/dom/getClientRects.html = FAIL
// Sharted showing up the mac build bots as timeout or pass on 02/16/09 in
// debug, starting 03/10/09 it sometimes passes in release.
BUG10422 MAC : LayoutTests/fast/events/scrollbar-double-click.html = TIMEOUT PASS
// Regressions from WebKit merge 40847-40875
BUG10423 LINUX : LayoutTests/fast/box-shadow/basic-shadows.html = FAIL
BUG10423 : LayoutTests/fast/forms/textarea-scrolled-endline-caret.html = FAIL PASS
BUG10423 LINUX : LayoutTests/fast/clip/017.html = CRASH PASS
// Unknown reason.
BUG10424 LINUX : LayoutTests/fast/clip/009.html = CRASH PASS
BUG10424 LINUX : LayoutTests/fast/clip/013.html = CRASH PASS
BUG10424 LINUX : LayoutTests/fast/clip/015.html = CRASH PASS
BUG10424 LINUX : LayoutTests/fast/canvas/unclosed-canvas-4.html = CRASH PASS
BUG10424 LINUX : LayoutTests/http/tests/navigation/redirect302-frames.html = FAIL PASS
// Regression from r9839.
BUG10425 LINUX : LayoutTests/tables/mozilla_expected_failures/marvin/backgr_position-table-column.html = FAIL
// Regressions from WebKit merge 40875:41017
BUG10426 LINUX : LayoutTests/fast/css-generated-content/beforeAfter-interdocument.html = FAIL
// just need to be rebaselined
BUG10426 LINUX : LayoutTests/fast/lists/drag-into-marker.html = FAIL
BUG10427 LINUX : LayoutTests/fast/clip/008.html = CRASH PASS
BUG10427 LINUX : LayoutTests/fast/clip/014.html = CRASH PASS
BUG10427 LINUX : LayoutTests/fast/compact/003.html = CRASH PASS
// Flaky since the merge 41017:41057.
BUG10428 WIN LINUX : LayoutTests/fast/canvas/fillrect_gradient.html = FAIL PASS
// It's not clear that the test isn't wrong here. It believes that middle
// aligning 15px Ahem should end up in a certain spot. But we have the
// x-height correct and we're still one px off.
BUG10429 LINUX : LayoutTests/css2.1/t100801-c544-valgn-01-d-ag.html = FAIL
// New failures from Merge 41078:41149
BUG10430 LINUX : LayoutTests/fast/text/atsui-spacing-features.html = FAIL
BUG10430 LINUX : LayoutTests/svg/W3C-SVG-1.1/text-intro-05-t.svg = FAIL
BUG10430 LINUX : LayoutTests/svg/text/text-fonts-01-t.svg = FAIL
BUG10430 LINUX : LayoutTests/svg/text/text-intro-05-t.svg = FAIL
// Always fails for mac, new failure with merge for eseidel
BUG5248 MAC : LayoutTests/http/tests/security/cross-frame-access-protocol-explicit-domain.html = FAIL
BUG5248 MAC : LayoutTests/http/tests/security/cross-frame-access-protocol.html = FAIL
// New tests from merge 41181:41217
BUG10431 DEFER : LayoutTests/fast/dom/getBoundingClientRect-getClientRects-relative-to-viewport.html = FAIL
// Regressions from merge 41181:41217
// Upstream regression. https://bugs.webkit.org/show_bug.cgi?id=24248
// Defer until fixed upstream.
BUG10432 DEFER WIN LINUX : LayoutTests/fast/overflow/004.html = FAIL
// These need to be rebaselined.
BUG10432 LINUX : LayoutTests/fast/overflow/hidden-scrollbar-resize.html = FAIL
BUG10432 LINUX : LayoutTests/fast/overflow/hit-test-overflow-controls.html = FAIL
// Regressions from merge 41217:41268
// New tests
BUG10433 DEFER : LayoutTests/fast/dom/Window/webkitConvertPoint.html = FAIL
BUG10433 DEFER WIN LINUX : LayoutTests/fast/gradients/background-clipped.html = FAIL
// Regressions from merge 41217:41268
// Other failures
BUG10434 LINUX : LayoutTests/css1/text_properties/vertical_align.html = FAIL
BUG10434 LINUX : LayoutTests/fast/repaint/transform-absolute-in-positioned-container.html = FAIL
// SVG Mask-related tests. Most likely result of http://trac.webkit.org/changeset/41266.
BUG10434 LINUX : LayoutTests/svg/W3C-SVG-1.1/masking-intro-01-f.svg = FAIL
BUG10434 LINUX : LayoutTests/svg/custom/grayscale-gradient-mask.svg = FAIL
// Regression from merge 41268:41286
BUG10435 LINUX : LayoutTests/fast/canvas/canvas-text-alignment.html = FAIL
BUG10435 LINUX : LayoutTests/scrollbars/listbox-scrollbar-combinations.html = FAIL
BUG10435 LINUX : LayoutTests/scrollbars/overflow-scrollbar-combinations.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug86708.html = FAIL
BUG10435 LINUX : LayoutTests/fast/borders/border-image-rotate-transform.html = FAIL
BUG10435 LINUX : LayoutTests/fast/css/resize-corner-tracking-transformed.html = FAIL
BUG10435 LINUX : LayoutTests/fast/forms/input-appearance-height.html = FAIL
BUG10435 LINUX : LayoutTests/fast/replaced/001.html = FAIL
BUG10435 LINUX : LayoutTests/fast/replaced/002.html = FAIL
BUG10435 LINUX : LayoutTests/fast/replaced/003.html = FAIL
BUG10435 LINUX : LayoutTests/svg/W3C-SVG-1.1/filters-blend-01-b.svg = FAIL
BUG10435 LINUX : LayoutTests/svg/W3C-SVG-1.1/render-groups-01-b.svg = FAIL
BUG10435 LINUX : LayoutTests/svg/W3C-SVG-1.1/render-groups-03-t.svg = FAIL
BUG10435 LINUX : LayoutTests/svg/carto.net/scrollbar.svg = TIMEOUT FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug1296.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug137388-2.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug1430.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug4093.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug4427.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug4523.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/bugs/bug625.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla/core/bloomberg.html = FAIL
BUG10435 LINUX : LayoutTests/tables/mozilla_expected_failures/bugs/bug1647.html = FAIL
BUG10435 MAC : LayoutTests/editing/pasteboard/copy-standalone-image.html = FAIL
// See above comment about this test on linux/win.
BUG10435 MAC : LayoutTests/editing/selection/designmode-no-caret.html = FAIL
BUG10435 DEBUG WIN MAC : LayoutTests/fast/dom/jsDevicePixelRatio.html = CRASH PASS
BUG10435 MAC : LayoutTests/animations/animation-controller-drt-api.html = TIMEOUT PASS
BUG10435 DEBUG WIN : LayoutTests/editing/selection/move-by-line-001.html = FAIL
BUG10435 DEBUG MAC : LayoutTests/editing/selection/move-by-line-001.html = FAIL PASS
// New test added in the 41286:41362 merge. Not clear whether we pass.
BUG8404 DEFER LINUX WIN : LayoutTests/fast/layers/inline-dirty-z-order-lists.html = FAIL
// New with the 41420:41447 merge, but rebaselining is not the right answer.
// See https://bugs.webkit.org/show_bug.cgi?id=24467 for details.
BUG10436 DEFER WIN LINUX : LayoutTests/fast/block/float/nested-clearance.html = FAIL
// New tests added in the 41420:41447 merge that fail (just needs a new baseline):
BUG10437 DEFER LINUX : LayoutTests/fast/css-generated-content/hit-test-generated-content.html = FAIL
// From webkit merge 41447:41498
BUG10438 MAC LINUX : LayoutTests/plugins/netscape-plugin-setwindow-size-2.html = FAIL
BUG10438 MAC LINUX : LayoutTests/plugins/netscape-plugin-setwindow-size.html = FAIL
BUG10438 MAC LINUX : LayoutTests/plugins/destroy-stream-twice.html = TIMEOUT
BUG10438 WIN LINUX : LayoutTests/fast/dom/location-new-window-no-crash.html = FAIL
BUG10438 MAC : LayoutTests/fast/dom/location-new-window-no-crash.html = CRASH FAIL
// Crashes sometimes. Race? Memory corruption?
// Might be related to https://bugs.webkit.org/show_bug.cgi?id=22834
BUG10439 LINUX : LayoutTests/fast/canvas/set-colors.html = CRASH PASS
// Needs an FTP implementation to work completely.
BUG10440 MAC LINUX : LayoutTests/security/block-test.html = FAIL
// 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
BUG10441 LINUX : LayoutTests/fast/clip/outline-overflowClip.html = CRASH FAIL PASS
BUG10441 DEFER : LayoutTests/transitions/transition-end-event-transform.html = FAIL PASS
// Timing out starting 03/10/09
BUG10442 MAC : LayoutTests/fast/dom/navigator-detached-no-crash.html = TIMEOUT PASS
// Added 3/10/09.
BUG10443 DEFER WIN : LayoutTests/transitions/transition-end-event-multiple-01.html = FAIL PASS
BUG10443 DEFER WIN : LayoutTests/transitions/transition-end-event-create.html = FAIL PASS
BUG10443 DEFER WIN : LayoutTests/transitions/transition-end-event-window.html = FAIL PASS
BUG10443 DEFER WIN : LayoutTests/transitions/transition-end-event-attributes.html = FAIL PASS
BUG9071 WIN LINUX : LayoutTests/editing/selection/drag-to-contenteditable-iframe.html = FAIL PASS
// http://code.google.com/p/chromium/issues/detail?id=8733
BUG10444 DEFER WIN LINUX : LayoutTests/fast/repaint/transform-replaced-shadows.html = FAIL
// Added 3/11/09
BUG10445 LINUX : LayoutTests/fast/compact/001.html = CRASH PASS
// Regressions from merge 41559:41588
// This one probably just needs a new baseline:
BUG10446 LINUX : LayoutTests/fast/inline/long-wrapped-line.html = FAIL
BUG10446 LINUX : LayoutTests/editing/execCommand/selectAll.html = FAIL
BUG10446 LINUX : LayoutTests/fast/text/trailing-white-space.html = FAIL
BUG10446 LINUX : LayoutTests/fast/text/trailing-white-space-2.html = FAIL
BUG10446 LINUX : LayoutTests/editing/selection/extend-by-word-002.html = FAIL
BUG10446 LINUX : LayoutTests/editing/selection/select-all-002.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/basic-textareas-quirks.html = FAIL
BUG_GWILSON MAC : chrome/fast/forms/basic-textareas.html = FAIL
// Needs rebaseline.
BUG10447 MAC LINUX : LayoutTests/fast/forms/linebox-overflow-in-textarea-padding.html = FAIL
// Started failing 3/12/09. Unclear which CL caused it though.
BUG10448 MAC : LayoutTests/fast/overflow/image-selection-highlight.html = FAIL
// Started failing after merge 41559:41588
BUG10449 MAC : LayoutTests/fast/dom/HTMLElement/innerHTML-selection-crash.html = CRASH PASS
// Newly added tests with merge 41588:41613.
// They pass on windows given a new baseline and likely only need to be given
// platform specific baselines for Linux and Mac.
BUG10450 LINUX : LayoutTests/fast/css/percent-top-value-with-relative-position.html = FAIL
// Looks like they started failing with r11542
BUG10451 MAC : LayoutTests/fast/forms/mailto/advanced-get.html = FAIL
BUG10451 MAC : LayoutTests/fast/forms/mailto/advanced-put.html = FAIL
// Added 3/12/09
BUG10452 MAC : LayoutTests/fast/events/popup-blocking-click-in-iframe.html = CRASH PASS
BUG10452 MAC : LayoutTests/fast/html/body-offset-properties.html = CRASH PASS
BUG10452 DEBUG WIN : LayoutTests/fast/dom/HTMLElement/innerHTML-selection-crash.html = CRASH PASS
// Newly added test from 41613:41660
BUG9155 DEFER MAC LINUX WIN : LayoutTests/fast/canvas/canvas-gradient-addStop-error.html = FAIL
// Newly added test from 41613:41660 -- relies on ScriptCallStack::state() -- dglazkov should fix.
BUG9156 DEFER MAC LINUX WIN : LayoutTests/fast/js/console-non-string-values.html = FAIL
// New failures from 41613:41660 -- They likely just need to be rebaselined
// for Mac and Linux, since that is what was done for Windows.
BUG9157 DEFER LINUX : LayoutTests/fast/layers/normal-flow-hit-test.html = FAIL
// New failures from 41660:41709
// Newly added tests.
BUG9159 DEFER LINUX WIN : LayoutTests/editing/pasteboard/5089327.html = FAIL
BUG9160 DEFER MAC : LayoutTests/fast/dom/Window/window-lookup-precedence.html = FAIL
BUG9161 DEFER MAC LINUX WIN : LayoutTests/fast/forms/basic-textareas.html = FAIL
BUG9163 DEFER LINUX WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-whitelist-request-headers.html = FAIL
BUG9163 DEFER MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-whitelist-request-headers.html = FAIL TIMEOUT
BUG9163 DEFER MAC LINUX WIN : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-missing-file-exception.html = FAIL
// Unknown what change caused these to fail.
// Merge 41709:41733
// Expectations changed upstream.
BUG10453 WIN LINUX : LayoutTests/http/tests/misc/url-in-utf16be.html = CRASH TIMEOUT PASS
// Tests that fail in debug mode on linux
BUG10454 DEBUG LINUX : LayoutTests/svg/custom/mask-excessive-malloc.svg = CRASH
// Need rebaseline
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/002-xhtml.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/002.html = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/003-declarative.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/003-xhtml.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/003.html = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/004-declarative.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/004-xhtml.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/004.html = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/007-declarative.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/007-xhtml.xhtml = FAIL
BUG10455 LINUX : LayoutTests/fast/body-propagation/overflow/007.html = FAIL
BUG10455 LINUX : LayoutTests/fast/forms/input-readonly-autoscroll.html = FAIL
BUG10455 LINUX : LayoutTests/fast/overflow/003.xml = FAIL
BUG10455 LINUX : LayoutTests/fast/overflow/007.html = FAIL
BUG10455 LINUX : LayoutTests/fast/repaint/selection-gap-overflow-scroll.html = FAIL
BUG_GWILSON LINUX : chrome/fast/forms/basic-textareas-quirks.html = FAIL
BUG_GWILSON LINUX : chrome/fast/forms/basic-textareas.html = FAIL
BUG10456 LINUX : LayoutTests/fast/canvas/zero-size-fill-rect.html = CRASH PASS
// This test hits a stack-overflow exception earlier in debug mode than in
// release mode on Windows.
//
// Hits the stack overflow earlier than before the new compiler in both
// release and debug mode on Linux and Mac.
//
// http://code.google.com/p/v8/issues/detail?id=277
BUG10457 MAC LINUX : LayoutTests/fast/js/large-expressions.html = FAIL
BUG10457 DEBUG WIN : LayoutTests/fast/js/large-expressions.html = FAIL
// Merge 41768:41807
// Perhaps just needs new baseline?
// These tests were rebaselined with failure long ago. We shouldn't do this, and
// instead work upstream to improve tests so that they don't fail.
BUG10458 DEFER WIN LINUX : LayoutTests/fast/forms/textarea-appearance-wrap.html = FAIL
BUG10458 DEFER WIN LINUX : LayoutTests/fast/forms/textarea-hard-linewrap.html = FAIL
// Linux-only failures
BUG10458 LINUX : LayoutTests/editing/inserting/6633727.html = FAIL
BUG10458 LINUX : LayoutTests/fast/block/float/overlapping-floats-with-overflow-hidden.html = FAIL
BUG10458 MAC LINUX : LayoutTests/fast/dom/java-applet-calls.html = FAIL
// Just need rebaseline
BUG10458 LINUX : LayoutTests/fast/forms/negativeLineHeight.html = FAIL
BUG10458 LINUX : LayoutTests/fast/forms/textarea-width.html = FAIL
BUG10458 LINUX : LayoutTests/fast/parser/comment-in-textarea.html = FAIL
// These don't look like merge regressions, but started occurring after the 41768:41807 merge.
BUG10459 LINUX : LayoutTests/fast/text/international/rtl-white-space-pre-wrap.html = FAIL
BUG10461 WIN LINUX : LayoutTests/fast/repaint/renderer-destruction-by-invalidateSelection-crash.html = FAIL PASS
BUG10461 WIN LINUX : LayoutTests/editing/selection/move-by-line-002.html = FAIL PASS
BUG10461 LINUX : LayoutTests/http/tests/navigation/javascriptlink-basic.html = FAIL PASS
BUG10461 MAC : LayoutTests/fast/css/rgb-float.html = FAIL PASS
BUG10461 MAC : LayoutTests/fast/forms/003.html = FAIL PASS
BUG10461 MAC : LayoutTests/fast/forms/menulist-no-renderer-onmousedown.html = FAIL PASS
BUG10461 MAC : LayoutTests/fast/overflow/infiniteRecursion.html = FAIL PASS
BUG10461 MAC : LayoutTests/fast/events/selectstart-during-autoscroll.html = TIMEOUT PASS
BUG10461 MAC : LayoutTests/fast/images/animated-svg-as-image.html = TIMEOUT PASS
// Missing expected results
BUG10461 SKIP : LayoutTests/platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html = PASS
// Merge 41860:41906 New tests
BUG10462 DEFER WIN LINUX : LayoutTests/fast/replaced/percent-height-in-anonymous-block-in-table.html = FAIL
BUG10462 DEFER WIN LINUX : LayoutTests/http/tests/misc/generated-content-inside-table.html = FAIL
// New failures from merge
BUG10463 DEFER WIN LINUX : LayoutTests/editing/selection/hit-test-anonymous.html = FAIL
BUG10463 DEFER LINUX : LayoutTests/fast/clip/016.html = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/fast/css/clip-zooming.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/input-appearance-height.html = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/fast/forms/listbox-hit-test-zoomed.html = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/fast/forms/search-zoomed.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/slider-mouse-events.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/slider-onchange-event.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/slider-padding.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/slider-thumb-shared-style.html = FAIL
BUG10463 DEFER WIN : LayoutTests/fast/forms/slider-transformed.html = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/fast/forms/slider-zoomed.html = FAIL
BUG10463 DEFER WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-36-t.svg = FAIL
BUG10463 DEFER WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-39-t.svg = FAIL
SLOW BUG10463 DEFER WIN : LayoutTests/svg/carto.net/scrollbar.svg = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/svg/carto.net/selectionlist.svg = CRASH FAIL
BUG10463 DEFER WIN : LayoutTests/svg/custom/focus-ring.svg = FAIL
BUG10463 DEFER WIN : LayoutTests/svg/custom/image-parent-translation.xhtml = FAIL
BUG10463 DEFER WIN LINUX : LayoutTests/svg/custom/js-update-image.svg = FAIL
BUG10463 DEFER WIN : LayoutTests/svg/custom/text-image-opacity.svg = FAIL
BUG10463 DEFER MAC : LayoutTests/fast/forms/search-zoomed.html = FAIL
// Adding more failures after the last merge:
BUG10464 WIN : LayoutTests/http/tests/misc/uncacheable-script-repeated.html = CRASH PASS
BUG10464 WIN : LayoutTests/http/tests/xmlhttprequest/null-auth.php = CRASH TIMEOUT PASS
BUG10464 WIN : LayoutTests/http/tests/xmlhttprequest/small-chunks-response-text.html = CRASH FAIL PASS
BUG10464 WIN LINUX : LayoutTests/transitions/interrupt-zero-duration.html = FAIL PASS
// Merge WebKit: 41944:41999
// All these seem to be the same issue. None of them is crashing when run separately.
// But if a previous test time-outs, the following 1-2 tests crash the test_shell.
BUG9371 DEFER WIN : LayoutTests/http/tests/misc/cached-scripts.html = CRASH
BUG9371 DEFER WIN : LayoutTests/http/tests/misc/canvas-pattern-from-incremental-image.html = CRASH
BUG9371 DEFER WIN : LayoutTests/http/tests/security/originHeader/origin-header-for-post.html = CRASH
BUG9371 DEFER WIN LINUX MAC : LayoutTests/http/tests/security/postMessage/data-url-sends-null-origin.html = CRASH
BUG9371 DEFER WIN LINUX MAC : LayoutTests/http/tests/xmlhttprequest/status-after-abort.html = CRASH
// New tests, need Chromium baseline.
BUG10465 DEFER WIN LINUX : LayoutTests/compositing/direct-image-compositing.html = FAIL
BUG10465 DEFER WIN LINUX : LayoutTests/fast/borders/border-image-border-radius.html = FAIL
BUG10465 DEFER WIN LINUX : LayoutTests/fast/clip/overflow-border-radius-clip.html = FAIL
// Need rebaseline, see WebKit 41993.
BUG10466 DEFER WIN LINUX : LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer.html = FAIL
BUG10466 DEFER WIN LINUX : LayoutTests/fast/css/getComputedStyle/computed-style.html = FAIL
BUG10466 DEFER WIN LINUX : LayoutTests/svg/css/getComputedStyle-basic.xhtml = FAIL
// Needs rebaseline. See WebKit 41972.
BUG10467 DEFER WIN LINUX : LayoutTests/fast/forms/slider-thumb-stylability.html = FAIL
// Needs rebaseline. See WebKit 41948
BUG10468 DEFER MAC WIN LINUX : LayoutTests/fast/replaced/border-radius-clip.html = FAIL
// New test, needs baseline. See WebKit 41978 (brettw)
BUG10469 DEFER WIN LINUX : LayoutTests/fast/text/complex-text-opacity.html = FAIL
// Needs rebaseline. See WebKit 41980
BUG10470 DEFER WIN LINUX : LayoutTests/fast/transforms/transforms-with-zoom.html = FAIL
// Merge WebKit: 41944:41999, Linux failures.
BUG10471 DEFER LINUX : LayoutTests/fast/events/tabindex-focus-blur-all.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/focus2.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/slider-mouse-events.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/slider-onchange-event.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/slider-padding.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/slider-thumb-shared-style.html = FAIL
BUG10471 DEFER LINUX : LayoutTests/fast/forms/slider-transformed.html = FAIL
// Mac flaky failures.
BUG10472 DEFER MAC : LayoutTests/svg/css/glyph-orientation-rounding-test.xhtml = FAIL PASS
// <input type="search">; various failures, some tests may simply need new
// baselines, others have more problems.
BUG10473 MAC LINUX : LayoutTests/fast/forms/placeholder-pseudo-style.html = FAIL
BUG9158 DEFER LINUX MAC : LayoutTests/fast/forms/placeholder-set-value.html = FAIL
BUG10473 MAC LINUX : LayoutTests/fast/forms/search-display-none-cancel-button.html = FAIL
BUG10473 MAC LINUX : LayoutTests/fast/forms/search-placeholder-value-changed.html = FAIL
BUG10473 MAC LINUX : LayoutTests/fast/forms/searchfield-heights.html = FAIL
BUG10473 MAC LINUX : LayoutTests/fast/repaint/search-field-cancel.html = FAIL
BUG10473 MAC LINUX : LayoutTests/fast/replaced/width100percent-searchfield.html = FAIL
// Merge WebKit: 41999:42026, new tests.
BUG10474 DEFER WIN LINUX : LayoutTests/compositing/overflow/ancestor-overflow.html = FAIL
BUG10474 DEFER WIN LINUX : LayoutTests/compositing/overflow/parent-overflow.html = FAIL
// Merge WebKit: 42026:42115 regressions
// Changed in http://trac.webkit.org/changeset/42082
// This is deferred because it involves a scenario (submitting a form to
// about:blank) that is unlikely to occur on real web pages. That only
// explains why this test sometimes times-out.
BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe-timeout.html = TIMEOUT CRASH
BUG9704 : LayoutTests/http/tests/navigation/onload-navigation-iframe.html = TIMEOUT CRASH
// Merge WebKit: 42026:42115 new tests
BUG10475 DEFER WIN LINUX : LayoutTests/fast/block/positioning/negative-rel-position.html = FAIL
BUG10475 SLOW DEFER : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html = FAIL
BUG10475 DEFER WIN LINUX : LayoutTests/fast/forms/range-thumb-height-percentage.html = FAIL
DEFER SKIP BUG9613 : LayoutTests/fast/dom/clientWidthAfterDocumentIsRemoved.html = PASS
BUG10476 WIN : LayoutTests/editing/selection/5136696.html = FAIL PASS
BUG10476 : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-post.html = FAIL PASS
// Merge WebKit 42133:42199 regressions
BUG10477 : LayoutTests/fast/events/context-no-deselect.html = FAIL
BUG10477 WIN LINUX : LayoutTests/fast/repaint/reflection-repaint-test.html = FAIL
BUG10477 WIN LINUX : LayoutTests/fast/repaint/transform-layout-repaint.html = FAIL
BUG10477 : LayoutTests/fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html = FAIL
BUG10477 WIN LINUX : LayoutTests/http/tests/navigation/success200-frames-loadsame.html = FAIL
BUG10477 : LayoutTests/http/tests/navigation/onload-navigation-iframe-2.html = TIMEOUT
// Flaky since rev 13111.
BUG10478 MAC : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAIL PASS
// These tests were affected by rolling out WebKit i8n patches.
DEFER BUG9768 LINUX WIN : LayoutTests/fast/block/positioning/047.html = FAIL
DEFER BUG9768 WIN : LayoutTests/fast/css/rtl-ordering.html = FAIL
DEFER BUG9768 WIN : LayoutTests/fast/forms/select-initial-position.html = FAIL
DEFER BUG9768 WIN : LayoutTests/fast/forms/select-visual-hebrew.html = FAIL
DEFER BUG9768 MAC WIN : LayoutTests/fast/forms/visual-hebrew-text-field.html = FAIL
DEFER BUG9768 LINUX WIN : LayoutTests/fast/text/cg-fallback-bolding.html = FAIL
DEFER BUG9768 LINUX WIN : LayoutTests/fast/text/international/001.html = FAIL
DEFER BUG9768 LINUX WIN : LayoutTests/fast/text/international/002.html = FAIL
DEFER BUG9768 LINUX WIN : LayoutTests/fast/text/international/003.html = FAIL
DEFER BUG9768 LINUX WIN : LayoutTests/fast/text/international/wrap-CJK-001.html = FAIL
// Merge WebKit 42200:42244 regressions
BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-iframe.html = FAIL
BUG9786 : LayoutTests/fast/dom/Window/dom-access-from-closure-window.html = FAIL
BUG9786 : LayoutTests/http/tests/security/cross-frame-access-history-prototype.html = FAIL
BUG9786 : LayoutTests/http/tests/security/cross-frame-access-location-prototype.html = FAIL
BUG9786 : LayoutTests/http/tests/security/cross-frame-access-document-direct.html = TIMEOUT
BUG9787 WIN : LayoutTests/svg/W3C-SVG-1.1/animate-elem-41-t.svg = FAIL
BUG9787 : LayoutTests/svg/W3C-SVG-1.1/coords-trans-01-b.svg = FAIL
BUG9787 WIN LINUX : LayoutTests/svg/W3C-SVG-1.1/painting-render-01-b.svg = FAIL
BUG10479 LINUX : LayoutTests/fast/text/international/thai-offsetForPosition-inside-character.html = FAIL
BUG10479 RELEASE MAC : LayoutTests/fast/dom/Window/window-object-cross-frame-calls.html = FAIL
BUG10479 MAC : LayoutTests/svg/hixie/perf/001.xml = FAIL
BUG10479 MAC : LayoutTests/svg/hixie/perf/002.xml = FAIL
// Broken by r13217.
BUG10480 LINUX : LayoutTests/editing/selection/move-by-line-001.html = FAIL PASS
BUG9798 : LayoutTests/editing/execCommand/15381.html = FAIL PASS
BUG9798 : LayoutTests/fast/encoding/char-encoding.html = FAIL PASS
BUG9798 : LayoutTests/http/tests/misc/css-reject-any-type-in-strict-mode.html = TIMEOUT PASS
BUG9798 : LayoutTests/http/tests/misc/image-blocked-src-change.html = FAIL PASS
BUG9798 : LayoutTests/http/tests/misc/redirect-with-quotes.php = TIMEOUT PASS
BUG9798 : LayoutTests/http/tests/xmlhttprequest/basic-auth.html = TIMEOUT PASS
BUG9798 DEBUG : LayoutTests/editing/execCommand/paste-2.html = FAIL PASS
BUG9798 DEBUG : LayoutTests/editing/selection/4776665.html = FAIL PASS
BUG9798 DEBUG : LayoutTests/svg/custom/path-bad-data.svg = CRASH FAIL
BUG9798 DEBUG : chrome/fast/dom/extensions/interval.html = FAIL PASS
BUG9798 LINUX : LayoutTests/animations/animation-iteration-event-destroy-renderer.html = TIMEOUT PASS
BUG9798 LINUX : LayoutTests/animations/change-keyframes-name.html = FAIL PASS
BUG9798 LINUX : LayoutTests/animations/change-one-anim.html = FAIL PASS
BUG9798 LINUX : LayoutTests/animations/combo-transform-translate+scale.html = FAIL PASS
BUG9798 LINUX : LayoutTests/fast/backgrounds/001.html = FAIL PASS
BUG9798 LINUX : LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html = FAIL PASS
BUG9798 LINUX : LayoutTests/fast/dom/delete-contents.html = FAIL PASS
BUG9798 LINUX : LayoutTests/fast/dom/onerror-img.html = CRASH PASS
BUG9798 LINUX : LayoutTests/fonts/cursive.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/misc/BOM-override-script.html = TIMEOUT PASS
BUG9798 LINUX : LayoutTests/http/tests/navigation/error404-frames.html = TIMEOUT PASS
BUG9798 LINUX : LayoutTests/http/tests/security/javascriptURL/xss-ALLOWED-to-javascript-url-sub-frame-2-level.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/security/originHeader/origin-header-for-post.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/security/postMessage/origin-unaffected-by-document-domain.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/security/protocol-compare-case-insensitive.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/security/xss-DENIED-assign-location-hostname.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/security/xss-eval.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/xmlhttprequest/access-control-basic-non-simple-allow-async.html = FAIL PASS
BUG9798 LINUX : LayoutTests/http/tests/xmlhttprequest/document-domain-set.html = TIMEOUT PASS
BUG9798 LINUX : LayoutTests/http/tests/xmlhttprequest/failed-auth.html = FAIL PASS
BUG9798 LINUX : LayoutTests/scrollbars/basic-scrollbar.html = FAIL PASS
BUG9798 LINUX : LayoutTests/svg/batik/filters/filterRegions.svg = FAIL PASS
BUG9798 LINUX : LayoutTests/svg/css/glyph-orientation-rounding-test.xhtml = FAIL PASS
BUG9798 LINUX : LayoutTests/svg/custom/invisible-text-after-scrolling.xhtml = FAIL PASS
BUG9798 LINUX : LayoutTests/svg/custom/use-detach.svg = FAIL PASS
BUG9798 LINUX : LayoutTests/svg/text/text-text-07-t.svg = FAIL PASS
BUG9798 LINUX : LayoutTests/tables/mozilla/bugs/45621.html = FAIL PASS
BUG9798 LINUX : LayoutTests/tables/mozilla/bugs/bug137388-1.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/interrupted-all-transition.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/shorthand-border-transitions.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/transition-end-event-all-properties.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/transition-end-event-left.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/transition-end-event-multiple-04.html = FAIL PASS
BUG9798 LINUX : LayoutTests/transitions/transition-timing-function.html = FAIL PASS
BUG9798 LINUX : chrome/http/tests/misc/set-window-opener-to-null.html = FAIL PASS
BUG9798 LINUX : pending/fast/repaint/bugzilla-6473.html = FAIL PASS
BUG9798 LINUX DEBUG : LayoutTests/transitions/repeated-firing-background-color.html = FAIL PASS
BUG9798 LINUX MAC : LayoutTests/editing/pasteboard/drag-drop-dead-frame.html = FAIL PASS
BUG9798 LINUX RELEASE : LayoutTests/svg/carto.net/colourpicker.svg = FAIL PASS
BUG9798 LINUX WIN : LayoutTests/http/tests/navigation/metaredirect-subframeload.html = TIMEOUT PASS
BUG9798 MAC : LayoutTests/dom/html/level2/html/HTMLSelectElement15.html = FAIL PASS
BUG9798 MAC : LayoutTests/fast/dom/onerror-img.html = FAIL PASS
BUG9798 MAC : LayoutTests/fast/images/load-img-with-empty-src.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/navigation/metaredirect-subframeload.html = TIMEOUT FAIL
BUG9798 MAC : LayoutTests/http/tests/security/cross-frame-access-name-getter.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/security/cross-frame-access-selection.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-window-open.html = FAIL CRASH PASS
BUG9798 MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-sub-frame-2-level.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/security/frameNavigation/xss-DENIED-targeted-link-navigation.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/security/javascriptURL/xss-DENIED-from-javascript-url-in-foreign-domain-subframe.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/xmlhttprequest/access-control-basic-whitelist-response-headers.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin-sync.html = FAIL PASS
BUG9798 MAC : LayoutTests/http/tests/xmlhttprequest/redirect-cross-origin.html = FAIL PASS
BUG9798 MAC : LayoutTests/svg/custom/use-instanceRoot-as-event-target.xhtml = TIMEOUT FAIL
BUG9798 MAC : LayoutTests/svg/hixie/processing-model/003.xml = TIMEOUT PASS
BUG9798 MAC : LayoutTests/tables/mozilla/other/test3.html = TIMEOUT PASS
BUG9798 MAC : LayoutTests/transitions/transition-timing-function.html = FAIL PASS
BUG9798 MAC DEBUG : LayoutTests/fast/body-propagation/overflow/004-xhtml.xhtml = FAIL PASS
BUG9798 WIN : LayoutTests/fast/dom/Window/window-lookup-precedence.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/fast/events/tabindex-focus-blur-all.html = FAIL PASS
BUG9798 WIN : LayoutTests/fast/lists/inlineBoxWrapperNullCheck.html = FAIL PASS
BUG9798 WIN : LayoutTests/fast/workers/worker-terminate.html = FAIL PASS
BUG9798 WIN : LayoutTests/fast/xmlhttprequest/xmlhttprequest-gc.html = CRASH PASS
BUG9798 WIN : LayoutTests/http/tests/mime/standard-mode-loads-stylesheet-with-charset-and-css-extension.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/mime/standard-mode-loads-stylesheet-with-charset.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/css-accept-any-type.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/empty-file-formdata.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/redirect.php = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/refresh-headers.php = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-get-in-utf16le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-get-in-utf32be.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-get-in-utf32le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-get-in-utf7.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-post-in-utf16be.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-post-in-utf16le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-post-in-utf32be.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-post-in-utf32le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/submit-post-in-utf7.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/url-in-utf16le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/url-in-utf32be.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/url-in-utf32le.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/url-in-utf7.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/misc/xhtml.php = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/navigation/back-send-referrer.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-subframe.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/ssl/verify-ssl-enabled.php = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/uri/css-href.php = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/uri/escaped-entity.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/uri/utf8-path.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-invalidation-by-header.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/authorization-header.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/failed-auth.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-contenttype-empty.html = TIMEOUT PASS
BUG9798 WIN : LayoutTests/svg/hixie/error/009.xml = CRASH PASS
BUG9798 WIN : LayoutTests/transitions/change-values-during-transition.html = FAIL PASS
BUG9798 WIN DEBUG : LayoutTests/fast/xsl/xslt-fragment-in-empty-doc.html = CRASH PASS
BUG9798 WIN DEBUG : LayoutTests/svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading.svg = CRASH PASS
BUG9798 WIN RELEASE : LayoutTests/editing/selection/move-by-line-001.html = FAIL PASS
BUG9798 WIN RELEASE : LayoutTests/http/tests/xmlhttprequest/state-after-network-error.html = TIMEOUT PASS
BUG9797 LINUX DEBUG : LayoutTests/svg/W3C-SVG-1.1/filters-gauss-01-b.svg = CRASH PASS
BUG9797 LINUX DEBUG : LayoutTests/svg/carto.net/colourpicker.svg = CRASH FAIL
BUG9797 LINUX DEBUG : LayoutTests/svg/carto.net/tabgroup.svg = CRASH PASS
BUG9797 MAC DEBUG : LayoutTests/fast/body-propagation/overflow/004.html = FAIL PASS
BUG9797 MAC DEBUG : LayoutTests/tables/mozilla/bugs/bug137388-2.html = FAIL PASS
BUG9797 WIN DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
BUG9797 WIN DEBUG : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL PASS
BUG9797 WIN DEBUG : LayoutTests/fast/encoding/namespace-tolerance.html = CRASH PASS
BUG9797 WIN DEBUG : LayoutTests/fast/loader/file-URL-with-port-number.html = FAIL PASS
BUG9797 WIN DEBUG : LayoutTests/http/tests/navigation/lockedhistory-iframe.html = FAIL PASS
BUG9797 WIN DEBUG : LayoutTests/http/tests/security/cross-frame-access-first-time.html = CRASH PASS
BUG9797 BUG9798 WIN DEBUG : LayoutTests/http/tests/xmlhttprequest/state-after-network-error.html = CRASH TIMEOUT PASS
BUG9797 WIN DEBUG : LayoutTests/http/tests/xmlhttprequest/supported-xml-content-types.html = CRASH PASS
BUG9797 WIN DEBUG : LayoutTests/svg/W3C-SVG-1.1/extend-namespace-01-f.svg = CRASH PASS
BUG9797 WIN DEBUG : LayoutTests/svg/css/css-box-min-width.html = CRASH PASS
BUG9797 WIN DEBUG : LayoutTests/traversal/node-iterator-009.html = CRASH PASS
// Failed in WebKit merge 42287:42324
BUG9916 WIN LINUX : LayoutTests/css2.1/t0803-c5502-mrgn-r-02-c.html = FAIL
BUG9916 WIN LINUX : LayoutTests/css2.1/t0803-c5505-mrgn-02-c.html = FAIL
BUG9916 WIN LINUX : LayoutTests/fast/block/float/013.html = FAIL
BUG9916 : LayoutTests/http/tests/xmlhttprequest/set-dangerous-headers.html = FAIL
BUG9916 WIN LINUX : LayoutTests/http/tests/xmlhttprequest/web-apps/012.html = FAIL
// New tests or failures from WebKit merge 42324:42364. Re-baselined on
// Windows. Probably just need the same on other platforms.
BUG9924 LINUX : LayoutTests/fast/flexbox/016.html = FAIL
BUG9924 LINUX RELEASE : LayoutTests/fast/flexbox/flex-hang.html = FAIL
BUG9962 LINUX : LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug.html = FAIL
BUG9962 MAC : LayoutTests/fast/js/function-apply-aliased.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-allow.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-deny.html = FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-allow.html = TIMEOUT FAIL
BUG9962 MAC : LayoutTests/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-deny.html = FAIL
// Regressions from WebKit merge 43264:42403, possibly due to r42375.
BUG9992 WIN LINUX : LayoutTests/fast/repaint/box-shadow-h.html = FAIL
BUG9992 WIN LINUX : LayoutTests/fast/repaint/box-shadow-v.html = FAIL
BUG9992 WIN LINUX : LayoutTests/fast/text/shadow-no-blur.html = FAIL
// Regressions from WebKit merge 43264:42403, unknown cause(s)
BUG10055 LINUX DEBUG : LayoutTests/editing/execCommand/paste-1.html = FAIL PASS
BUG10055 MAC : LayoutTests/fast/events/updateLayoutForHitTest.html = FAIL
BUG10055 LINUX DEBUG : LayoutTests/svg/text/text-tselect-02-f.svg = FAIL
// These were already rebaselined for chromium-win, as they changed/added in
// webkit merge 42403:42440.
BUG10045 LINUX : LayoutTests/editing/inserting/5418891.html = FAIL
BUG10045 LINUX : LayoutTests/editing/inserting/5510537.html = FAIL
// New test added by http://trac.webkit.org/changeset/42501.
// Has already been rebaselined for chromium-win.
BUG10529 LINUX : LayoutTests/editing/inserting/6703873.html = FAIL
// This test was changed upstream in http://trac.webkit.org/changeset/42447
// to include window.showModalDialog, which we give as undefined.
BUG10530 : LayoutTests/fast/dom/Window/window-function-frame-getter-precedence.html = FAIL
// New tests from webkit merge 42547:42580
DEFER BUG10621 : LayoutTests/fast/js/array-reduce.html = FAIL
DEFER BUG10621 : LayoutTests/fast/js/array-reduceRight.html = FAIL
DEFER BUG10622 : LayoutTests/fast/js/array-enumerators-functions.html = FAIL
// Need rebaselining for Mac and Linux, from WebKit merge 42580:42609
BUG10662 LINUX MAC : LayoutTests/fast/forms/caret-rtl.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/forms/form-added-to-table.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/forms/form-in-malformed-markup.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/forms/formmove3.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/forms/preserveFormDuringResidualStyle.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/table/fixed-table-non-cell-in-row.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/table/inline-form-assert.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/table/insert-cell-before-form.html = FAIL
BUG10662 LINUX MAC : LayoutTests/fast/table/insert-row-before-form.html = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/W3C-SVG-1.1/coords-viewattr-03-b.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/W3C-SVG-1.1/filters-color-01-b.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/W3C-SVG-1.1/filters-comptran-01-b.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/W3C-SVG-1.1/struct-group-02-b.svg = FAIL
BUG10662 MAC : LayoutTests/svg/W3C-SVG-1.1/types-basicDOM-01-b.svg = FAIL
BUG10662 MAC : LayoutTests/svg/carto.net/textbox.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/custom/feComponentTransfer-Discrete.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/custom/feComponentTransfer-Gamma.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/custom/feComponentTransfer-Linear.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/custom/feComponentTransfer-Table.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/svg/custom/image-clipped-hit.svg = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug1318.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug2516.html = FAIL
BUG10662 LINUX : LayoutTests/tables/mozilla/bugs/bug30559.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug32447.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug34538.html = FAIL
BUG10662 LINUX : LayoutTests/tables/mozilla/bugs/bug4527.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug78162.html = FAIL
BUG10662 LINUX : LayoutTests/tables/mozilla/bugs/bug96334.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla/bugs/bug96343.html = FAIL
BUG10662 LINUX MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug1725.html = FAIL
// New tests from WebKit Merge 42609:42671
BUG4363 : LayoutTests/fast/layers/video-layer.html = FAIL
BUG10760 : LayoutTests/fast/forms/input-text-scroll-left-on-blur.html = FAIL
BUG10760 : LayoutTests/fast/inline/25277-2.html = FAIL
BUG10760 : LayoutTests/fast/inline/25277.html = FAIL
|