blob: b6c4195127bf36c34967a5422a5882714d2a5294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
|
# This test can't just be rebaselined because it has absolute file paths in the output.
crbug.com/257132 http/tests/inspector/network/network-xhr-replay.html [ Failure ]
crbug.com/258949 fast/filesystem/workers/file-writer-truncate-extend.html [ Failure Pass ]
crbug.com/307782 [ Win ] http/tests/cache/stopped-revalidation.html [ Pass Timeout ]
crbug.com/316146 [ XP ] http/tests/cache/cached-main-resource.html [ Pass Timeout ]
# Transient - XHR mixed content type revert will be restored.
crbug.com/305303 http/tests/security/mixedContent/insecure-sync-post-xhr-allowed.html [ Failure Pass ]
crbug.com/305303 http/tests/security/mixedContent/insecure-sync-post-xhr-blocked.html [ Failure Pass ]
crbug.com/305303 http/tests/security/mixedContent/insecure-xhr-in-main-frame.html [ Failure Pass ]
crbug.com/289002 http/tests/security/frame-loading-via-document-write.html [ Pass Failure ]
# -----------------------------------------------------------------
# Inspector tests
# -----------------------------------------------------------------
# There is no enough plugins support in DRT
crbug.com/233124 http/tests/inspector/network/network-embed.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-content-replacement-embed.html [ Skip ]
# Transferred size are not supported in DRT.
crbug.com/233124 http/tests/inspector/network/network-size.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-size-chunked.html [ Skip ]
crbug.com/233124 http/tests/inspector/network/network-size-sync.html [ Skip ]
crbug.com/336925 inspector/elements/styles/styles-add-blank-property.html [ Pass Failure ]
crbug.com/344238 inspector/timeline/timeline-auto-record.html [ Pass Failure ]
crbug.com/344238 virtual/deferred/inspector/timeline/timeline-auto-record.html [ Pass Failure ]
crbug.com/346119 virtual/deferred/inspector/timeline/timeline-start-time.html [ Pass Failure ]
crbug.com/346119 inspector/timeline/timeline-start-time.html [ Pass Failure ]
# -----------------------------------------------------------------
# Plugin tests
# -----------------------------------------------------------------
crbug.com/260351 [ Linux ] plugins/mouse-click-plugin-clears-selection.html [ ImageOnlyFailure Pass ]
crbug.com/321606 plugins/layout-in-beforeload-listener-affects-plugin-loading.html [ Failure Pass ]
# Text::inDocument() returns false but should not.
crbug.com/264138 dom/xhtml/level3/core/nodecomparedocumentposition38.xhtml [ Failure ]
crbug.com/298211 animations/dynamic-stylesheet-loading.html [ Pass Failure Timeout ]
crbug.com/321460 animations/animation-direction-normal.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/328996 [ Mac Debug ] http/tests/media/video-seek-to-middle.html [ Pass Failure ]
# This test is slow due to Mesa slowness.
crbug.com/244481 virtual/gpu/canvas/philip/tests/2d.shadow.blur.low.html [ Skip ]
# WebGL not yet supported by the software compositor.
crbug.com/151713 virtual/softwarecompositing/draws-content/webgl-simple-background.html [ ImageOnlyFailure ]
crbug.com/9798 [ Win ] http/tests/misc/redirect-with-quotes.php [ Pass Timeout ]
crbug.com/9797 crbug.com/9798 [ Win ] http/tests/xmlhttprequest/state-after-network-error.html [ Pass Timeout ]
crbug.com/9798 [ Win Release ] http/tests/xmlhttprequest/small-chunks-response-text.html [ Pass Timeout ] # Also slow
crbug.com/339118 perf/compositor-touch-hit-rects.html [ Failure Pass ]
crbug.com/339118 fast/events/touch/compositor-touch-hit-rects-scroll.html [ Failure Pass ]
# Vertical text needs to be implemented in platforms other than OS X.
crbug.com/65877 [ Linux Win ] fast/writing-mode/japanese-ruby-vertical-lr.html [ Failure Pass ]
crbug.com/65877 [ Linux Win ] fast/writing-mode/japanese-ruby-vertical-rl.html [ Failure Pass ]
crbug.com/65877 [ Linux Win ] fast/writing-mode/japanese-ruby-horizontal-bt.html [ Failure Pass ]
# The result here is flaky. So a rebaseline won't make these [ Pass Timeout ].
crbug.com/66751 [ Linux Mac ] http/tests/local/link-stylesheet-load-order-preload.html [ Failure ]
crbug.com/66751 [ Linux Mac ] http/tests/local/link-stylesheet-load-order.html [ Failure ]
crbug.com/66751 [ Win ] http/tests/local/link-stylesheet-load-order-preload.html [ Failure Timeout ]
crbug.com/66751 [ Win ] http/tests/local/link-stylesheet-load-order.html [ Failure Timeout ]
crbug.com/331566 fast/preloader/document-write-noscript.html [ Failure Pass ]
crbug.com/331572 http/tests/inspector/elements/styles/selector-line-deprecated.html [ Failure Pass ]
crbug.com/86340 fast/filesystem/workers/file-writer-write-overlapped.html [ Failure Pass ]
crbug.com/240374 compositing/overlap-blending/reflection-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 virtual/softwarecompositing/overlap-blending/reflection-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 compositing/overlap-blending/children-opacity-huge.html [ ImageOnlyFailure ]
crbug.com/240374 compositing/overlap-blending/children-opacity-no-overlap.html [ ImageOnlyFailure ]
crbug.com/248155 [ Win Debug ] fast/hidpi/gradient-with-scaled-ancestor.html [ ImageOnlyFailure ]
crbug.com/248155 [ Win Debug ] virtual/gpu/fast/hidpi/gradient-with-scaled-ancestor.html [ ImageOnlyFailure ]
crbug.com/316604 [ Win ] virtual/gpu/fast/hidpi/focus-rings.html [ Pass ImageOnlyFailure ]
crbug.com/245611 [ Linux ] fast/hidpi/video-controls-in-hidpi.html [ ImageOnlyFailure Pass ]
crbug.com/306222 fast/hidpi/image-srcset-relative-svg-canvas.html [ Skip ]
crbug.com/306222 virtual/gpu/fast/hidpi/image-srcset-relative-svg-canvas.html [ Skip ]
crbug.com/306222 fast/hidpi/image-srcset-relative-svg-canvas-2x.html [ Skip ]
crbug.com/306222 virtual/gpu/fast/hidpi/image-srcset-relative-svg-canvas-2x.html [ Skip ]
crbug.com/304953 fast/css/font-face-download-error.html [ Pass Timeout ]
# This batch were marked as NeedsRebaseline for crbug.com/133097 but are flaky:
crbug.com/310679 [ Mac ] compositing/fixed-body-background-positioned.html [ Failure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-e.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-n.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-ne.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-nw.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-s.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-se.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-size-change.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-sw.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] compositing/rubberbanding/transform-overhang-w.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] fast/events/scale-and-scroll-iframe-body.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] fast/events/scale-and-scroll-iframe-window.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] fast/frames/frame-set-rotation-hit.html [ ImageOnlyFailure Pass ]
crbug.com/310679 [ Mac ] fast/frames/frame-set-scaling-hit.html [ ImageOnlyFailure Pass ]
crbug.com/318434 virtual/gpu/compositedscrolling/scrollbars/custom-scrollbar-with-incomplete-style.html [ ImageOnlyFailure ]
crbug.com/346134 [ Linux ] virtual/gpu/compositedscrolling/overflow/invisible-descendants-should-not-affect-opt-in.html [ Pass Failure ]
# Tests failing since applyPageScaleFactorInCompositor enabled
crbug.com/225184 fast/repaint/relayout-fixed-position-after-scale.html [ ImageOnlyFailure ]
# Pixel tests for RTL iframe scrollbar is erroneous. Cannot observe on actual browser.
crbug.com/338794 [ Mac ] compositing/rtl/rtl-iframe-absolute-overflow.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] compositing/rtl/rtl-iframe-fixed-overflow.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow-scrolled.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow.html [ NeedsManualRebaseline ]
crbug.com/338794 [ Mac ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ NeedsManualRebaseline ]
crbug.com/192172 [ Win Linux Android Debug ] compositing/rtl/rtl-iframe-absolute-overflow.html [ Failure Pass ]
crbug.com/192172 [ Win Linux Android Debug ] virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow.html [ Failure Pass ]
crbug.com/192172 [ Win Linux Android Debug ] compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ Failure Pass ]
crbug.com/192172 [ Win Linux Android Debug ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow-scrolled.html [ Failure Pass ]
crbug.com/192172 [ Win Linux Android Debug ] compositing/rtl/rtl-iframe-fixed-overflow.html [ Failure Pass ]
crbug.com/192172 [ Win Linux Android Debug ] virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow.html [ Failure Pass ]
crbug.com/239811 crbug.com/229113 http/tests/history/redirect-js-location-assign-0-seconds.html [ Failure Pass ]
crbug.com/231721 [ Win ] svg/custom/invisible-text-after-scrolling.xhtml [ Pass Timeout ]
crbug.com/234069 [ Mac Release ] fast/events/touch/gesture/long-press-drag-drop-touch-editing-combined.html [ Failure Pass ]
crbug.com/251183 w3c/web-platform-tests/html-templates/additions-to-parsing-xhtml-documents/node-document.html [ Failure ]
crbug.com/251183 w3c/web-platform-tests/html-templates/additions-to-parsing-xhtml-documents/template-child-nodes.html [ Failure ]
crbug.com/330086 w3c/web-platform-tests/html-templates/definitions/template-contents-owner-document-type.html [ Pass Failure ]
crbug.com/330086 w3c/web-platform-tests/html-templates/definitions/template-contents.html [ Pass Failure ]
crbug.com/330086 w3c/web-platform-tests/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document.html [ Pass Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/csshostrule-interface/csshostrule-attributes/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/csshostrule-interface/csshostrule-attributes/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/non-element-nodes-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-008.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-009.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-006.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-007.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-008.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/event-dispatch/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/event-dispatch/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/event-retargeting/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/event-retargeting/test-004.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/events-that-are-always-stopped/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/retargeting-focus-events/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/events/retargeting-relatedtarget/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/html-elements-and-their-shadow-trees/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/html-elements-and-their-shadow-trees/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/html-elements-and-their-shadow-trees/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/html-elements-in-shadow-trees/html-forms/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/custom-pseudo-elements/not_apply_css_style_to_child_selector.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/custom-pseudo-elements/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/distributed-pseudo-element/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/distributed-pseudo-element/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/satisfying-matching-criteria/test-007.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/at-host-at-rule/matching-specificity-of-css-rules-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/at-host-at-rule/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/css-variables/test-001.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/test-006.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/test-007.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/test-010.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/styles/test-011.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/user-interaction/focus-navigation/test-002.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/user-interaction/focus-navigation/test-003.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/user-interaction/focus-navigation/test-004.html [ Failure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-001.html [ ImageOnlyFailure ]
crbug.com/330083 w3c/web-platform-tests/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-002.html [ ImageOnlyFailure ]
crbug.com/337573 w3c/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009.html [ Failure ]
# Untriaged Aura-specific failure.
crbug.com/229207 [ Win ] fast/forms/select/popup-closes-on-blur.html [ Failure ]
# Flaky on Linux ASAN and debug bots.
crbug.com/321607 [ Linux ] fast/forms/submit-to-blank-multiple-times.html [ Failure Pass ]
crbug.com/321607 [ Win Debug ] fast/forms/submit-to-blank-multiple-times.html [ Failure Pass ]
# ThemePainter-related diffs, could rebaseline them or implement the clipping/transform code.
crbug.com/229207 [ Win ] fast/transforms/transformed-focused-text-input.html [ ImageOnlyFailure ]
crbug.com/229207 [ Win ] fast/forms/datalist/input-appearance-range-with-transform.html [ ImageOnlyFailure ]
crbug.com/229207 [ Win ] fast/forms/range/input-appearance-range.html [ ImageOnlyFailure ]
# Can't distinguish between hot and hover on scrollbar thumbs.
crbug.com/229207 [ Win ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ ImageOnlyFailure ]
# Untriaged pixel diffs, unclear if aura-related?
crbug.com/229207 [ Win ] virtual/deferred/fast/images/2-dht.html [ ImageOnlyFailure ]
crbug.com/229207 [ Win ] virtual/gpu/compositedscrolling/overflow/theme-affects-visual-overflow.html [ ImageOnlyFailure ]
crbug.com/229207 [ Win ] virtual/softwarecompositing/overflow/theme-affects-visual-overflow.html [ ImageOnlyFailure ]
# Linux Aura doesn't support NPAPI plugins (yet?)
crbug.com/318978 [ Linux ] compositing/plugins/invalidate_rect.html [ Skip ]
crbug.com/318978 [ Linux ] fast/dom/Window/Plug-ins.html [ Skip ]
crbug.com/318978 [ Linux ] fast/frames/sandboxed-iframe-about-blank.html [ Skip ]
crbug.com/318978 [ Linux ] fast/frames/sandboxed-iframe-navigation-allowed.html [ Skip ]
crbug.com/318978 [ Linux ] fast/frames/sandboxed-iframe-plugins.html [ Skip ]
crbug.com/318978 [ Linux ] fast/replaced/invalid-object-with-fallback.html [ Skip ]
crbug.com/318978 [ Linux ] fast/replaced/object-with-embed-url-param.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/plugins/cross-frame-object-access.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/plugins/ [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/1.1/plugintypes-invalid.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/1.1/plugintypes-notype-url.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/1.1/plugintypes-url-01.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/1.1/plugintypes-url-02.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/object-in-svg-foreignobject.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/object-src-none-allowed.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/contentSecurityPolicy/object-src-url-blocked.html [ Skip ]
crbug.com/318978 [ Linux ] http/tests/security/frameNavigation/xss-DENIED-plugin-navigation.html [ Skip ]
crbug.com/318978 [ Linux ] permissionclient/plugin-permission.html [ Skip ]
crbug.com/318978 [ Linux ] plugins/ [ Skip ]
crbug.com/318978 [ Linux ] virtual/softwarecompositing/plugins/invalidate_rect.html [ Skip ]
# Flaky tests under Linux Aura
crbug.com/318980 [ Linux ] virtual/deferred/fast/images/imagemap-focus-ring.html [ ImageOnlyFailure Pass ]
crbug.com/318980 [ Linux ] virtual/deferred/fast/images/imagemap-focus-ring-zoom-style.html [ ImageOnlyFailure Pass ]
crbug.com/318980 [ Linux ] virtual/deferred/fast/images/imagemap-focus-ring-zoom.html [ ImageOnlyFailure Pass ]
# Tests that have new baselines but are probably still failing on Linux Aura.
crbug.com/318980 [ Linux ] editing/selection/7152-1.html [ Pass ]
crbug.com/318980 [ Linux ] editing/selection/linux_selection_color.html [ Pass ]
crbug.com/318980 [ Linux ] fast/forms/input-disabled-color.html [ Pass ]
crbug.com/318980 [ Linux ] fast/ruby/select-ruby.html [ Pass ]
crbug.com/318980 [ Linux ] fast/sub-pixel/selection/selection-gaps-at-fractional-offsets.html [ Pass ]
crbug.com/318980 [ Linux ] svg/W3C-SVG-1.1/text-tselect-02-f.svg [ Pass ]
# Untriaged Linux-specific Aura failures
# Probably just needs new baseline, but image_diff is failing - investigate that.
crbug.com/318980 [ Linux x86 ] fast/text/international/hindi-spacing.html [ ImageOnlyFailure ]
# Untriaged Mavericks failures
crbug.com/314947 [ Mavericks ] fast/scrolling/scrollbar-tickmarks-hittest.html [ Timeout ]
crbug.com/314947 [ Mavericks ] fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-mouse-events.html [ Failure ]
crbug.com/314947 [ Mavericks ] fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-preserve-value-after-history-back.html [ Failure ]
crbug.com/314947 [ Mavericks ] fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-value-set-empty.html [ Failure ]
crbug.com/314947 [ Mavericks ] http/tests/images/drag-image-to-desktop.html [ Failure ]
crbug.com/314947 [ Mavericks ] printing/return-from-printing-mode.html [ ImageOnlyFailure ]
# Mavericks bots seem to fail lots of tests on occasion.
crbug.com/331582 [ Mavericks ] fast/inline/justify-emphasis-inline-box.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/parser/fonts.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/repaint/text-emphasis-h.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/repaint/text-emphasis-v.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-inside/shape-inside-offset-block-children.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-inside/shape-inside-overflow.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-inside/shape-inside-rectangle-padding.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-outside-floats/shape-outside-boxes-001.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-outside-floats/shape-outside-boxes-002.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-outside-floats/shape-outside-boxes-003.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/shapes/shape-outside-floats/shape-outside-floats-outermost.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-before-child-style-update.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-cell-before-after-content-around-table-block.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-cell-before-after-content-around-table-row.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-cell-before-after-content-around-table.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-before-after-content-around-block.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-before-after-content-around-table-cell.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-before-after-content-around-table.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-before-child-style-update.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-style-not-updated-with-after-content.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-style-not-updated-with-before-content.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-row-style-not-updated.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/table/table-style-not-updated.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/002.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/003.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/004.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/005.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/006.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/007.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/008.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/009.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/010.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/011.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/012.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/013.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/014.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/015.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/016.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/017.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/text/whitespace/018.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] fast/transforms/shadows.html [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] ietestcenter/css3/multicolumn/column-block-formatting-context-001.htm [ Pass ImageOnlyFailure ]
crbug.com/331583 [ Mavericks ] ietestcenter/css3/multicolumn/column-containing-block-003.htm [ Pass ImageOnlyFailure ]
# Also svg/hixie/text/001.xml and fullscreen/parent-flow-inline-with-block-child.html but they have other lines in this file.
# Gets a "Maximum call stack size exceeded" exception in debug that doesn't happen in release.
crbug.com/14885 [ Mac Debug ] fast/js/JSON-stringify.html [ Failure ]
crbug.com/306929 [ Mac Release ] fast/js/JSON-stringify.html [ Failure ]
crbug.com/306929 [ Win7 Debug ] fast/js/JSON-stringify.html [ Failure ]
crbug.com/225184 scrollingcoordinator/non-fast-scrollable-region-scaled-iframe.html [ ImageOnlyFailure Pass ]
crbug.com/341682 editing/selection/4960116.html [ ImageOnlyFailure Pass ]
crbug.com/231357 [ Win Linux Debug ] compositing/video-page-visibility.html [ ImageOnlyFailure ]
crbug.com/231357 [ Mac ] compositing/video-page-visibility.html [ ImageOnlyFailure ]
# Crash due to lost_context_callback_proxy_. When this is fixed, this test shoud be re-marked as ImageOnlyFailure with due to crbug.com/231357.
crbug.com/344237 [ Win Linux Debug ] virtual/softwarecompositing/video-page-visibility.html [ ImageOnlyFailure Crash ]
# Will pass once http://crrev.com/26442004 lands
crbug.com/285976 http/tests/serviceworker/registration.html [ NeedsManualRebaseline ]
crbug.com/237270 [ Win ] http/tests/history/replacestate-post-to-get-2.html [ Pass Timeout ]
crbug.com/237270 [ Win ] http/tests/history/replacestate-post-to-get.html [ Pass Timeout ]
crbug.com/316147 [ Win ] http/tests/history/back-to-post.html [ Failure Pass ]
crbug.com/237270 http/tests/images/jpeg-partial-load.html [ Pass Timeout ]
crbug.com/237270 http/tests/images/png-partial-load.html [ Pass Timeout ]
crbug.com/237270 http/tests/images/png-partial-load-no-alpha.html [ Pass Timeout ]
crbug.com/317806 [ Mac XP ] fast/sub-pixel/selection/selection-gaps-at-fractional-offsets.html [ Pass ImageOnlyFailure ]
crbug.com/341435 [ Win ] http/tests/images/image-with-origin-header.html [ Failure ]
crbug.com/248938 virtual/threaded/animations/3d/transform-origin-vs-functions.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/animation-border-overflow.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-direction-normal.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-iteration-event-destroy-renderer.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/animation-offscreen-to-onscreen.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/animation-welcome-safari.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/cascade-important.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/change-keyframes.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/animations/change-keyframes-name.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/animations/change-one-anim.html [ Pass Failure ]
crbug.com/248938 [ Win ] virtual/threaded/animations/change-transform-style-during-animation.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/combo-transform-rotate+scale.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/combo-transform-translate+scale.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/delay-start-event.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/display-none-terminates-animation.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/dynamic-stylesheet-loading.html [ Pass Failure Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/generic-from-to.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/keyframe-multiple-timing-functions-transform.html [ Pass Timeout ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/keyframe-timing-functions.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/keyframe-timing-functions-transform.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/keyframes.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/keyframes-comma-separated.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/keyframes-invalid-keys.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/keyframes-out-of-order.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/longhand-timing-function.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/matrix-anim.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/missing-values-first-keyframe.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win Debug ] virtual/threaded/animations/missing-from-to-transforms.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/animations/missing-keyframe-properties.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/negative-delay.html [ Pass Failure Timeout ]
crbug.com/248938 [ Debug ] virtual/threaded/animations/opacity-transform-animation.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/play-state-initially-paused.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/state-at-end-event.html [ Pass Timeout ]
crbug.com/248938 [ Linux ] virtual/threaded/animations/timing-functions.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/timing-model.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/transition-and-animation-2.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/animations/transition-and-animation-3.html [ Pass Failure Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/unsigned-underflow.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/animations/width-using-ems.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/transitions/cancel-and-start-new.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/cancel-transition.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/change-duration-during-transition.html [ Pass Failure ]
crbug.com/248938 [ Debug ] virtual/threaded/transitions/cubic-bezier-overflow-transform.html [ Pass Failure Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/default-timing-function.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/transitions/extra-transition.html [ Pass Failure ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/hang-with-bad-transition-list.html [ Pass Timeout ]
crbug.com/248938 virtual/threaded/transitions/interrupt-transform-transition.html [ Pass Failure ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/move-after-transition.html [ Pass Timeout ]
crbug.com/248938 [ Win Debug ] virtual/threaded/transitions/negative-delay.html [ Pass Failure Timeout ]
crbug.com/248938 virtual/threaded/transitions/start-transform-transition.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-all-properties.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-attributes.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-container.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-left.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-multiple-01.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-multiple-02.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-multiple-03.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-multiple-04.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-nested.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-rendering.html [ Pass Timeout ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-set-none.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/transitions/transition-end-event-transform.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-unprefixed-01.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-unprefixed-02.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-unprefixed-03.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-unprefixed-04.html [ Pass Failure ]
crbug.com/248938 [ Linux Win ] virtual/threaded/transitions/transition-end-event-window.html [ Pass Failure ]
crbug.com/248938 virtual/threaded/animations/timing-properties-do-not-update-running-animation.html [ Pass Failure ]
crbug.com/320477 [ Debug ] inspector/sources/debugger/debugger-pause-in-internal.html [ Pass Crash ]
crbug.com/347484 [ Debug ] inspector/profiler/canvas2d/canvas-replay-log-grid.html [ Timeout ]
# Not yet supported on Win/Mac. See bug for details.
crbug.com/290411 [ Win Mac ] fast/text/sub-pixel/text-scaling-ltr.html [ Skip ]
crbug.com/290411 [ Win Mac ] fast/text/sub-pixel/text-scaling-pixel.html [ Skip ]
crbug.com/290411 [ Win Mac ] fast/text/sub-pixel/text-scaling-rtl.html [ Skip ]
crbug.com/290411 [ Win Mac ] fast/text/sub-pixel/text-scaling-vertical.html [ Skip ]
crbug.com/290411 [ Win Mac ] fast/text/sub-pixel/text-scaling-webfont.html [ Skip ]
crbug.com/290411 [ Linux ] fast/text/sub-pixel/text-scaling-pixel.html [ Pass Failure ]
crbug.com/334269 [ Mac ] fast/text/font-variant-ligatures.html [ ImageOnlyFailure ]
# Switching to content shell failures
crbug.com/231866 [ Lion ] fast/backgrounds/animated-gif-as-background.html [ Pass ImageOnlyFailure ]
crbug.com/235110 [ Mac ] virtual/softwarecompositing [ Skip ]
crbug.com/243596 [ Win ] inspector-protocol/input/dispatchMouseEvent.html [ Failure ]
crbug.com/243599 [ Debug ] http/tests/plugins/interrupted-get-url.html [ Crash Pass ]
crbug.com/243782 fullscreen/full-screen-remove-ancestor.html [ Pass Timeout ]
crbug.com/246077 fullscreen/full-screen-render-inline.html [ ImageOnlyFailure ]
crbug.com/318210 svg/text/text-style-recalc-crash.html [ Pass Timeout ]
# Seems to be hit by the try jobs only.
crbug.com/243599 [ Linux Win ] http/tests/xmlhttprequest/access-control-repeated-failed-preflight-crash.html [ Crash Pass Timeout ]
crbug.com/245644 virtual/gpu/fast/canvas/2d.text.draw.fill.maxWidth.gradient.html [ Failure Pass ]
crbug.com/310866 fast/workers/storage/use-same-database-in-page-and-workers.html [ Pass Timeout ]
crbug.com/245630 virtual/gpu/compositedscrolling/overflow/overflow-positioning.html [ ImageOnlyFailure Pass ]
crbug.com/248063 plugins/plugin-clip-subframe.html [ Pass Failure ]
crbug.com/254332 [ SnowLeopard Debug ] fast/forms/checkbox/checkbox-focus-by-mouse-then-keydown.html [ ImageOnlyFailure Pass ]
crbug.com/254332 [ XP ] fast/forms/submit/submit-focus-by-mouse.html [ ImageOnlyFailure Pass ]
crbug.com/256506 [ Win7 Debug ] crypto/worker-random-values-limits.html [ Pass Crash ]
crbug.com/244266 virtual/threaded/animations/animation-controller-drt-api.html [ Failure Pass ]
crbug.com/265650 compositing/repaint/transform-style-change.html [ Pass ImageOnlyFailure ]
crbug.com/265650 virtual/softwarecompositing/repaint/transform-style-change.html [ Pass ImageOnlyFailure ]
crbug.com/266754 fast/ruby/ruby-svg-crash.html [ ImageOnlyFailure Pass ]
crbug.com/267206 [ Lion MountainLion Retina ] fast/scrolling/scrollbar-tickmarks-hittest.html [ Timeout ]
crbug.com/267302 [ Win ] http/tests/htmlimports/import-script-block-crossorigin-dynamic.html [ Pass Failure ]
crbug.com/268111 [ Win Release ] http/tests/inspector/appcache/appcache-swap.html [ Pass Timeout ]
crbug.com/268111 [ Win ] http/tests/appcache/online-whitelist.html [ Failure Pass Timeout ]
crbug.com/268588 [ Release ] http/tests/w3c/webperf/submission/Google/HighResolutionTime/worker-shared-basic.html [ Failure Pass ]
crbug.com/316148 [ Win ] http/tests/w3c/webperf/approved/UserTiming/idlharness.html [ Pass Crash ]
crbug.com/268692 [ SnowLeopard ] svg/custom/foreign-object-skew.svg [ ImageOnlyFailure Pass ]
crbug.com/268832 [ SnowLeopard Debug ] fast/multicol/newmulticol/direct-child-column-span-all.html [ Crash Pass ]
crbug.com/271243 [ Win ] http/tests/misc/acid3.html [ Failure ]
crbug.com/278497 [ SnowLeopard Debug ] http/tests/security/contentSecurityPolicy/1.1/plugintypes-invalid.html [ Failure Pass ]
crbug.com/280342 [ Linux Win ] http/tests/media/progress-events-generated-correctly.html [ Failure Pass ]
crbug.com/280698 inspector/elements/styles/multiple-imports-edit-crash.html [ Failure Pass ]
crbug.com/282081 [ Debug ] http/tests/security/contentSecurityPolicy/report-only-from-header.php [ Crash Pass ]
crbug.com/282081 [ Win Release ] http/tests/security/contentSecurityPolicy/report-only-from-header.php [ Pass Timeout ]
crbug.com/282082 inspector/sources/debugger/live-edit.html [ Pass Failure Timeout ]
crbug.com/282086 [ XP Release ] virtual/gpu/fast/canvas/webgl/gl-uniform-arrays.html [ Pass Timeout ]
crbug.com/330049 media/track/track-cue-container-rendering-position.html [ Failure Pass ]
crbug.com/282089 [ Win7 Debug ] plugins/override-node-method.html [ Crash Pass ]
crbug.com/282091 fast/forms/time-multiple-fields/time-multiple-fields-speech-crash.html [ Pass Timeout ]
crbug.com/282092 [ Mac ] svg/dom/SVGLength-px-with-context.html [ Failure Pass ]
crbug.com/282093 [ Mac ] svg/hixie/text/001.xml [ Crash Failure Pass ImageOnlyFailure ]
crbug.com/282094 fast/repaint/video-mute-repaint.html [ Pass Timeout ]
crbug.com/282095 storage/websql/read-transactions-running-concurrently.html [ Failure Pass ]
crbug.com/318431 [ Linux ] fast/dom/shadow/transition-on-shadow-host-with-distributed-node.html [ Pass Timeout ]
crbug.com/340206 [ Win ] http/tests/security/cross-origin-css.html [ Pass Timeout ]
crbug.com/284734 svg/custom/getsvgdocument.html [ Pass ImageOnlyFailure ]
crbug.com/326881 [ Mac Debug ] svg/carto.net/window.svg [ Pass ImageOnlyFailure ]
crbug.com/283723 [ Win ] http/tests/local/fileapi/file-last-modified-after-delete.html [ Failure Pass Timeout ]
crbug.com/282634 [ SnowLeopard Debug ] svg/as-object/embedded-svg-size-changes-no-layout-triggers.html [ Pass ImageOnlyFailure ]
crbug.com/282634 [ SnowLeopard Debug ] svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-1.html [ Pass ImageOnlyFailure ]
crbug.com/282634 [ SnowLeopard Debug ] svg/as-object/nested-embedded-svg-size-changes-no-layout-triggers-2.html [ Pass ImageOnlyFailure ]
# 309184 and 303419 track Android-specific failures
crbug.com/309184 crbug.com/303419 crbug.com/284782 http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]
# 323284 tracks Android-specific flaky failure
crbug.com/323284 crbug.com/324120 http/tests/media/media-source/webkitmediasource-removesourcebuffer-texttrack.html [ Pass Crash Failure ]
crbug.com/323301 [ Android ] http/tests/media/media-source/mediasource-play-then-seek-back.html [ Pass Crash ]
crbug.com/302729 [ Android ] http/tests/media/media-source/mediasource-seek-during-pending-seek.html [ Failure ]
crbug.com/302729 [ Android ] http/tests/media/media-source/mediasource-seek-beyond-duration.html [ Failure ]
crbug.com/286287 [ Linux Mac Android ] http/tests/inspector/network/network-initiator.html [ Failure Pass ]
crbug.com/306228 [ Win ] http/tests/inspector/network/network-initiator.html [ Pass Failure Timeout ]
# Pixel captures are currently totally broken on Android Nexus4's at the moment.
crbug.com/293932 [ Android ] css1/formatting_model/horizontal_formatting.html [ Failure ]
crbug.com/293932 [ Android ] fast/inspector-support/matchedrules.html [ ImageOnlyFailure ]
crbug.com/293932 [ Android ] svg/W3C-SVG-1.1-SE/coords-dom-02-f.svg [ ImageOnlyFailure ]
crbug.com/293932 [ Android ] svg/canvas/canvas-pattern-svg.html [ ImageOnlyFailure ]
crbug.com/293932 [ Android ] css3/images/optimize-contrast-image.html [ ImageOnlyFailure Timeout Pass ]
crbug.com/293932 [ Android ] svg/as-background-image/svg-width-100p-as-background.html [ ImageOnlyFailure Pass ]
# Needs triaging.
crbug.com/307781 [ Android ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]
crbug.com/307781 [ Android ] compositing/repaint/invalidations-on-composited-layers.html [ Failure ]
crbug.com/307781 [ Android ] svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults.xhtml [ Failure ]
# Flaky timeouts on android
crbug.com/307777 [ Android ] accessibility/aria-labelledby-on-input.html [ Timeout Pass ]
crbug.com/307777 [ Android ] compositing/backing/no-backing-foreground-layer.html [ Timeout Pass ]
crbug.com/307777 [ Android ] compositing/contents-opaque/layer-transform.html [ Timeout Pass ]
crbug.com/307777 [ Android ] compositing/empty-render-surface-crasher.html [ Timeout Pass ]
crbug.com/307777 [ Android ] css3/masking/clip-path-reference-of-fake-clipPath.html [ Timeout Pass ]
crbug.com/307777 [ Android ] editing/style/query-typing-style.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/borders/negative-border-width.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/doctypes/005-case-preserving.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/harness/check-layout-error-no-attributes.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/harness/fastmallocstatistics-object.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/harness/internals-profilers-heap.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/harness/override-preferences-2.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/history/forward-during-load.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/history/history-back-forward-within-subframe-hash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/history/history-back-within-subframe-url.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/history/window-open.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/html/imports/import-same-url.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/html/imports/no-browsing-context.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/images/percent-height-image.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/images/png-suite/test.html [ ImageOnlyFailure Timeout ]
crbug.com/307777 [ Android ] fast/images/style-access-during-imageChanged-crash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/images/text-content-crash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/inline-block/anonymous-block-crash.html [ ImageOnlyFailure Timeout Pass ]
crbug.com/307777 [ Android ] fast/inline/fixed-pos-moves-with-abspos-parent.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/inline/inline-body-with-scrollbar-crash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/innerHTML/005.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/innerHTML/innerHTML-case.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/innerHTML/innerHTML-nbsp.xhtml [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/invalid/invalidSVGFont.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/invalid/nestedh3s-rapidweaver.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/invalid/test-case-tr-th-td-should-not-close-dl-list.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/js/add-to-primitive.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/js/kde/const.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/js/kde/string-1-n.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/multicol/huge-column-gap-crash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] fast/xsl/import-non-document-node.xhtml [ Timeout Pass ]
crbug.com/307777 [ Android ] http/tests/download/inherited-encoding-form-submission-result.html [ Timeout Pass ]
crbug.com/307777 [ Android ] http/tests/security/no-javascript-refresh.php [ Timeout Pass ]
crbug.com/307777 [ Android ] storage/quota/storagequota-query-usage.html [ Failure Timeout Pass ]
crbug.com/307777 [ Android ] svg/foreignObject/absolute-position-foreign-object-child-crash.html [ Timeout Pass ]
crbug.com/307777 [ Android ] svg/in-html/svg-assert-failure-percentage.html [ Timeout Pass ]
crbug.com/307777 [ Android ] tables/hittesting/filltable-levels.html [ Timeout Pass ]
crbug.com/307777 [ Android ] virtual/softwarecompositing/overflow/get-transform-from-non-box-container.html [ Timeout Pass ]
crbug.com/307777 [ Android ] webaudio/stereo2mono-down-mixing.html [ Timeout Pass ]
crbug.com/307777 [ Android ] webexposed/custom-elements.html [ Timeout Pass ]
crbug.com/326153 fast/html/imports/import-style-link.html [ Pass Failure ]
crbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ ImageOnlyFailure ]
crbug.com/305345 fast/events/mouseover-mouseout.html [ Failure Pass ]
# Android virtual suite shares the same expectation.
crbug.com/100798 [ Debug ] virtual/android/fullscreen/full-screen-iframe-allowed.html [ Failure Pass ]
crbug.com/100798 [ Debug ] virtual/android/fullscreen/full-screen-iframe-allowed-prefixed.html [ Failure Pass ]
crbug.com/243782 virtual/android/fullscreen/full-screen-remove-ancestor.html [ Pass Timeout ]
crbug.com/298045 [ Mac ] virtual/implsidepainting [ Skip ]
crbug.com/267888 [ Android ] crypto [ Skip ]
crbug.com/327698 [ Win ] virtual/gpu/fast/canvas/canvas-lost-gpu-context.html [ Pass Timeout ]
crbug.com/298039 [ Mac ] compositing/overflow/clear-scroll-parent.html [ Failure ]
crbug.com/298039 [ Mac ] virtual/gpu/compositedscrolling/overflow/clear-scroll-parent.html [ Failure ]
crbug.com/298188 [ Win ] virtual/implsidepainting/inspector/timeline [ Skip ]
crbug.com/298188 virtual/implsidepainting/inspector/timeline/timeline-paint.html [ Failure Pass Slow ]
# Test results depends on image caching behavior in Blink/Skia. This is being
# worked on actively. Rebaseline after impl-side painting becomes stable.
crbug.com/24182 crbug.com/318490 virtual/implsidepainting/inspector/timeline/timeline-decode-resize.html [ Failure Pass Slow ]
crbug.com/298188 [ Linux Debug ] virtual/implsidepainting/inspector/timeline/timeline-dom-content-loaded-event.html [ Pass Crash ]
# This test is flaky on all platforms, and has image failures most of the time on
# WebKit Win7 (dbg)
crbug.com/302529 svg/custom/js-late-clipPath-and-object-creation.svg [ ImageOnlyFailure Pass ]
crbug.com/255714 [ Linux ] editing/execCommand/switch-list-type-with-orphaned-li.html [ Failure Pass ]
crbug.com/231910 fast/dom/vertical-scrollbar-in-rtl.html [ Failure Pass ]
# Drop background color optimization for composited layers
crbug.com/114658 compositing/backing/no-backing-for-clip.html [ NeedsRebaseline ]
crbug.com/114658 compositing/backing/no-backing-for-clip-overlap.html [ NeedsRebaseline ]
crbug.com/114658 compositing/backing/no-backing-for-perspective.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/bounds-ignores-hidden-composited-descendant.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/bounds-ignores-hidden-dynamic-negzindex.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/composited-in-columns.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/layer-due-to-layer-children-deep-switch.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/limit-layer-bounds-overflow-root.html [ NeedsRebaseline ]
crbug.com/114658 compositing/geometry/preserve-3d-switching.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/invisible-nested-iframe-show.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/scrolling-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/layer-creation/no-compositing-for-preserve-3d.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/accelerated-overflow-scroll-should-not-affect-perspective.html [ NeedsRebaseline ]
crbug.com/114658 [ Linux Win Android ] compositing/overflow/clear-scroll-parent.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/composited-scrolling-creates-a-stacking-container.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/composited-scrolling-paint-phases.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/do-not-opt-non-stacking-context-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/opt-in-all-layers-after-unclipped-descendant.html [ NeedsRebaseline ]
crbug.com/114658 compositing/overflow/opt-unclipped-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 [ Linux Win Mac ] compositing/repaint/invalidations-on-composited-layers.html [ NeedsRebaseline ]
crbug.com/114658 compositing/3d-corners.html [ NeedsRebaseline ]
crbug.com/114658 compositing/perpendicular-layer-sorting.html [ NeedsRebaseline ]
crbug.com/114658 compositing/scaling/tiled-layer-recursion.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/backing/no-backing-for-clip-overlap.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/backing/no-backing-for-clip.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/backing/no-backing-for-perspective.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/bounds-ignores-hidden-composited-descendant.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/bounds-ignores-hidden-dynamic-negzindex.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/composited-in-columns.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/layer-due-to-layer-children-deep-switch.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/limit-layer-bounds-overflow-root.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/preserve-3d-switching.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/iframes/invisible-nested-iframe-show.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/iframes/scrolling-iframe.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/layer-creation/no-compositing-for-preserve-3d.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/accelerated-overflow-scroll-should-not-affect-perspective.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/clear-scroll-parent.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/composited-scrolling-creates-a-stacking-container.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/composited-scrolling-paint-phases.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/do-not-opt-non-stacking-context-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/opt-in-all-layers-after-unclipped-descendant.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/overflow/opt-unclipped-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/repaint/invalidations-on-composited-layers.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/rtl/rtl-fixed-overflow-scrolled.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/rtl/rtl-iframe-absolute.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/rtl/rtl-iframe-fixed.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/rtl/rtl-iframe-relative.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/3d-corners.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/backface-visibility-transformed.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/fixed-in-composited.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/layer-due-to-layer-children-deep.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/geometry/video-fixed-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/perpendicular-layer-sorting.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/reflections/animation-inside-reflection.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/scaling/tiled-layer-recursion.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/transitions/scale-transition-no-start.html [ NeedsRebaseline ]
crbug.com/114658 transforms/3d/general/perspective-units.html [ NeedsRebaseline ]
crbug.com/114658 transforms/3d/general/transform-origin-z-change.html [ NeedsRebaseline ]
crbug.com/114658 transforms/3d/point-mapping/3d-point-mapping-3.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/accelerated-overflow-scroll-should-not-affect-perspective.html [ NeedsRebaseline ]
crbug.com/114658 [ Linux Win Android ] virtual/gpu/compositedscrolling/overflow/clear-scroll-parent.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/composited-scrolling-creates-a-stacking-container.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/composited-scrolling-paint-phases.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/content-gains-scrollbars.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/do-not-opt-non-stacking-context-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/opt-in-all-layers-after-unclipped-descendant.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/opt-unclipped-descendants-into-composited-scrolling.html [ NeedsRebaseline ]
crbug.com/114658 virtual/gpu/compositedscrolling/overflow/overflow-scrollbar-layers.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/become-overlapped-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/composited-parent-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/connect-compositing-iframe2.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/connect-compositing-iframe3.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/connect-compositing-iframe-delayed.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/connect-compositing-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/enter-compositing-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/iframe-resize.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/iframe-size-from-zero.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/overlapped-iframe.html [ NeedsRebaseline ]
crbug.com/114658 compositing/iframes/resizer.html [ NeedsRebaseline ]
crbug.com/114658 virtual/softwarecompositing/layout-width-change.html [ NeedsRebaseline ]
# Mac has overlay scrollbars depending on external settings.
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-320-2x.html [ Failure ]
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-320.html [ Failure ]
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-980-2x.html [ Failure ]
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-980.html [ Failure ]
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-restore.html [ Failure ]
crbug.com/304841 [ SnowLeopard ] inspector/device-emulation/device-emulation-small.html [ Failure ]
# Complex text failures on XP (likely caused by r158845).
crbug.com/305290 [ XP ] fast/text/international/plane2.html [ Failure ]
#crbug.com/316145 [ XP ] fast/text/justify-ideograph-complex.html [ Failure Pass ]
crbug.com/306280 http/tests/pointer-lock/iframe-sandboxed-allow-pointer-lock.html [ Crash Pass ]
crbug.com/306595 svg/W3C-SVG-1.1-SE/struct-dom-11-f.svg [ Pass Timeout ]
crbug.com/306595 svg/W3C-SVG-1.1-SE/types-dom-03-b.svg [ Pass Timeout ]
crbug.com/306595 svg/W3C-SVG-1.1-SE/svgdom-over-01-f.svg [ Pass Timeout ]
crbug.com/308952 [ XP ] inspector/editor/text-editor-reveal-line.html [ Failure ]
crbug.com/310992 virtual/threaded/animations/play-state.html [ Pass Failure ]
crbug.com/310992 animations/play-state.html [ Pass Failure ]
crbug.com/327447 [ Linux Win Debug ] animations/combo-transform-translate+scale.html [ Pass Failure ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-stepup-stepdown-from-renderer.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-click-in-iframe.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-spinbutton-change-and-input-events.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-value-set-empty.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-validity-badinput.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-state-change-on-focus-or-blur.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-wheel-event.html [ Failure Pass ]
crbug.com/337736 [ Linux Win ] fast/forms/time-multiple-fields/time-multiple-fields-tabindex.html [ Failure Pass ]
crbug.com/337774 [ Debug ] svg/animations/use-while-animating-crash.html [ Crash Pass ]
crbug.com/309369 perf/accessibility-title-ui-element.html [ Pass Timeout ]
crbug.com/310292 [ Mac ] http/tests/security/video-poster-cross-origin-crash.html [ Failure Pass ]
crbug.com/310323 [ Debug ] http/tests/plugins/third-party-cookie-accept-policy.html [ Crash Pass ]
crbug.com/310323 [ Debug ] http/tests/security/contentSecurityPolicy/report-multiple-violations-02.html [ Crash Pass ]
crbug.com/311164 fast/js/mozilla/strict/15.4.4.6.html [ Failure Pass ]
crbug.com/311301 fast/history/history_reload.html [ Failure Pass ]
crbug.com/311429 [ Mac ] fast/images/png-suite/test.html [ ImageOnlyFailure Pass ]
crbug.com/311429 [ Mac ] virtual/deferred/fast/images/png-suite/test.html [ ImageOnlyFailure Pass ]
crbug.com/316151 [ Win ] virtual/deferred/fast/images/2-comp.html [ Pass Timeout ]
crbug.com/311467 [ Win ] http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-simple.html [ Failure Timeout Pass ]
crbug.com/317742 [ Win7 ] fast/css-grid-layout/grid-item-z-index-stacking-context.html [ Timeout Pass ]
crbug.com/311469 [ Mac ] svg/custom/getSubStringLength.html [ Failure Pass ]
crbug.com/311487 [ Debug ] svg/custom/acid3-test-77.html [ Pass Timeout ]
crbug.com/311524 [ Win ] http/tests/inspector/appcache/appcache-iframe-manifests.html [ Pass Timeout ]
crbug.com/311532 [ Win ] fast/dom/Geolocation/timestamp.html [ Pass Failure ]
crbug.com/311805 [ Mac ] http/tests/w3c/webperf/submission/Google/resource-timing/html/test_resource_reparenting.html [ Failure Pass ]
crbug.com/311812 [ Mac XP ] http/tests/security/redirect-BLOCKED-to-localURL.html [ Failure Pass ]
crbug.com/311469 [ Mac ] svg/zoom/page/zoom-zoom-coords.xhtml [ Failure Pass ]
crbug.com/312606 [ Mac ] fast/text/international/text-combine-image-test.html [ Failure Pass ]
crbug.com/312613 fast/canvas/canvas-blending-pattern-over-gradient.html [ Pass Timeout ]
crbug.com/312910 webaudio/audiobuffersource-loop-points.html [ Crash Timeout Pass ]
crbug.com/313217 fast/dom/node-iterator-document-moved-crash.html [ Crash Pass ]
crbug.com/313219 traversal/tree-walker-005.html [ Crash Pass ]
crbug.com/313219 traversal/node-iterator-004.html [ Crash Pass ]
crbug.com/313338 inspector/sources/debugger/debugger-proto-property.html [ Slow ]
crbug.com/312925 inspector-protocol/heap-profiler/heap-snapshot-with-detached-dom-tree.html [ Failure Pass ]
crbug.com/344239 inspector-protocol/heap-profiler/heap-objects-tracking.html [ Crash Pass Timeout ]
crbug.com/313783 [ Debug ] fast/css/getComputedStyle/getComputedStyle-resolved-values.html [ Crash Pass ]
crbug.com/313846 [ Mac Win ] http/tests/images/webp-partial-load.html [ ImageOnlyFailure Timeout Pass ]
crbug.com/316150 inspector/timeline/timeline-network-received-data.html [ Failure Pass ]
crbug.com/315514 [ Linux ] fast/workers/storage/test-authorizer-sync.html [ Failure ]
crbug.com/315514 [ Linux ] fast/workers/storage/test-authorizer.html [ Failure ]
crbug.com/315514 [ Linux ] storage/websql/sql-error-codes.html [ Failure ]
crbug.com/315514 [ Linux ] storage/websql/test-authorizer.html [ Failure ]
crbug.com/315913 [ Win7 Debug ] editing/spelling/inline-spelling-markers-hidpi.html [ ImageOnlyFailure ]
# Macs do not support keyboard events to show a context menu.
crbug.com/345913 [ Mac ] editing/spelling/spelling-on-context-menu-key.html [ Failure ]
crbug.com/316349 [ Mac Debug ] inspector-protocol/page/enable-disable.html [ Failure Pass ]
crbug.com/316460 [ Mac ] svg/as-object/nested-embedded-svg-size-changes.html [ Failure Pass ]
crbug.com/316730 canvas/synchronous-create-pattern.html [ ImageOnlyFailure Pass ]
crbug.com/318632 webaudio/audiobuffersource-multi-channels.html [ NeedsManualRebaseline ]
crbug.com/318632 webaudio/test-basic.html [ NeedsManualRebaseline ]
crbug.com/320099 webaudio/oscillator-sawtooth.html [ NeedsManualRebaseline ]
crbug.com/320099 webaudio/oscillator-triangle.html [ NeedsManualRebaseline ]
crbug.com/320334 media/media-can-play-ogg.html [ Failure ]
crbug.com/326139 media/video-frame-accurate-seek.html [ Pass ImageOnlyFailure ]
crbug.com/326139 [ SnowLeopard ] media/video-frame-size-change.html [ Pass ImageOnlyFailure ]
crbug.com/245556 compositing/transitions/transform-on-large-layer.html [ ImageOnlyFailure ]
crbug.com/245556 virtual/softwarecompositing/transitions/transform-on-large-layer.html [ ImageOnlyFailure ]
crbug.com/321787 [ Win ] virtual/gpu/fast/canvas/webgl/premultiplyalpha-test.html [ Pass Failure ]
crbug.com/321793 [ Win ] fast/frames/sandboxed-iframe-navigation-windowopen.html [ Pass Timeout ]
crbug.com/321857 [ Win7 Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Pass Failure ]
crbug.com/323858 [ XP ] fast/workers/storage/interrupt-database.html [ Pass Timeout ]
crbug.com/343892 [ Linux Mac ] fast/workers/shared-worker-name.html [ Pass Crash ]
# Template tests that need a merge from upstream to match spec (and subsequent Blink) changes
crbug.com/325442 w3c/web-platform-tests/html-templates/definitions/template-contents-owner-test-001.html [ Failure ]
crbug.com/325442 w3c/web-platform-tests/html-templates/template-element/node-document-changes.html [ Failure ]
crbug.com/325442 w3c/web-platform-tests/html-templates/template-element/template-content-node-document.html [ Failure ]
crbug.com/253763 fast/text-autosizing/first-line-scale-factor.html [ ImageOnlyFailure ]
crbug.com/253763 fast/text-autosizing/pseudo-scale-factor.html [ ImageOnlyFailure ]
crbug.com/253763 virtual/fasttextautosizing/fast/text-autosizing/first-line-scale-factor.html [ ImageOnlyFailure ]
# FIXME(crbug.com/302005): Remove these as expectations are updated or the fasttextautosizer improves.
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/cluster-inline-grid-flex-box.html [ ImageOnlyFailure ]
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/cluster-list-item.html [ ImageOnlyFailure ]
crbug.com/302005 virtual/fasttextautosizing/fast/text-autosizing/nested-child.html [ ImageOnlyFailure ]
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/narrow-descendants-combined.html [ ImageOnlyFailure ]
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/oscillation-javascript-fontsize-change.html [ ImageOnlyFailure ]
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/narrow-iframe.html [ ImageOnlyFailure ]
crbug.com/322782 virtual/fasttextautosizing/fast/text-autosizing/clusters-insufficient-text.html [ ImageOnlyFailure ]
crbug.com/343201 virtual/fasttextautosizing/fast/text-autosizing/hackernews-comments.html [ Pass Failure ]
crbug.com/302005 virtual/fasttextautosizing/fast/text-autosizing/forum-comments-autosizing.html [ ImageOnlyFailure ]
crbug.com/302005 virtual/fasttextautosizing/fast/text-autosizing/second-pass-no-wrap-container-autosizing.html [ ImageOnlyFailure ]
# FIXME(crbug.com/332944): Remove this when hash-based autosizer performs sufficiently well on hackernews.
crbug.com/332944 fast/text-autosizing/hackernews-comments.html [ Failure ]
crbug.com/302005 fast/text-autosizing/list-item-above-dbcat.html [ Missing ]
crbug.com/302005 fast/text-autosizing/similar-clusters.html [ Missing ]
# Started failing after r162755.
crbug.com/324177 [ Linux Win ] virtual/softwarecompositing/webgl/webgl-with-accelerated-background-color.html [ ImageOnlyFailure ]
crbug.com/335710 virtual/gpu/canvas/philip/tests/2d.text.draw.fontface.notinpage.html [ Pass Failure ]
crbug.com/335710 canvas/philip/tests/2d.text.draw.fontface.notinpage.html [ Pass Failure ]
# Started failing after r162705.
crbug.com/324369 compositing/video/video-reflection.html [ Failure ]
crbug.com/324369 virtual/softwarecompositing/video/video-reflection.html [ Failure ]
crbug.com/328234 fast/css/mask-missing-image-crash.html [ Pass Failure ]
crbug.com/331576 [ Mac ] fullscreen/parent-flow-inline-with-block-child.html [ Pass ImageOnlyFailure Crash ]
crbug.com/326524 virtual/threaded/compositing/visibility/visibility-simple-video-layer.html [ Pass ImageOnlyFailure Timeout ]
crbug.com/328749 virtual/threaded/transitions/position-background-transition.html [ ImageOnlyFailure ]
# ASSERT fails in debug since editing attempts to put a Position on a pseudo element.
crbug.com/342574 [ Debug ] fast/css-generated-content/crash-selection-editing-removes-pseudo.html [ Crash ]
crbug.com/331186 [ Debug ] css3/flexbox/position-absolute-child.html [ Slow ]
crbug.com/346151 css3/filters/effect-reference-hidpi-hw.html [ Pass ImageOnlyFailure ]
crbug.com/333242 svg/dynamic-updates/SVGUseElement-dom-href1-attr.html [ Pass ImageOnlyFailure ]
crbug.com/333242 svg/dynamic-updates/SVGUseElement-svgdom-href1-prop.html [ Pass ImageOnlyFailure ]
crbug.com/337732 fast/css/fontfaceset-download-error.html [ Pass Timeout ]
crbug.com/337735 [ Linux ] compositing/overflow/iframe-scroll-children.html [ Pass Crash ]
crbug.com/337735 [ Linux ] virtual/gpu/compositedscrolling/overflow/iframe-scroll-children.html [ Pass Crash ]
crbug.com/337735 [ Linux ] virtual/softwarecompositing/overflow/iframe-scroll-children.html [ Pass Crash ]
crbug.com/333882 [ Win ] inspector/editor/text-editor-selection-to-search.html [ Pass Failure ]
crbug.com/333882 [ Win ] inspector/elements/edit-trimmed-attribute-value.html [ Pass Failure ]
crbug.com/333882 [ Win7 ] inspector/elements/styles/styles-change-node-while-editing.html [ Pass Failure ]
crbug.com/333882 [ Win ] inspector/elements/styles/undo-add-rule-crash.html [ Pass Timeout ]
crbug.com/333880 [ Win7 Debug ] media/W3C/video/events/event_order_loadstart_progress.html [ Pass Failure ]
crbug.com/345649 fast/repaint/delete-into-nested-block.html [ Pass Failure ]
crbug.com/345648 fast/repaint/selection-gap-overflow-scroll.html [ Pass Failure ]
crbug.com/345646 fast/repaint/selection-after-remove.html [ Pass Failure ]
crbug.com/345767 fast/repaint/selection-gap-overflow-scroll-2.html [ Pass Failure ]
crbug.com/334152 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001.html [ Failure ]
crbug.com/344774 svg/dynamic-updates/SVG-dynamic-css-transform.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGClipPath-influences-hitTesting.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCursorElement-dom-x-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCursorElement-dom-y-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCursorElement-svgdom-x-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCursorElement-svgdom-y-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-dom-mode-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-svgdom-mode-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGUseElement-dom-href2-attr.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGUseElement-svgdom-href2-prop.html [ ImageOnlyFailure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-dom-cx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-dom-cy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-dom-r-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-svgdom-r-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-dom-cx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-dom-cy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-dom-rx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-dom-ry-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-dom-in2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEBlendElement-svgdom-in2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETileElement-dom-in-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFETileElement-svgdom-in-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGGElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGImageElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-dom-x1-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-dom-x2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-dom-y1-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-dom-y2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-svgdom-x1-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-svgdom-x2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-svgdom-y1-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLineElement-svgdom-y2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-orient-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-refX-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-dom-refY-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGMaskElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPathElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPatternElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-dom-height-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-dom-width-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-svgdom-height-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-svgdom-width-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGRectElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-dx-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-dy-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-lengthAdjust-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-rotate-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-textLength-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-transform-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-x-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-dom-y-attr.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-dx-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-dy-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-transform-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-x-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGTextElement-svgdom-y-prop.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGUseElement-dom-requiredFeatures.html [ Failure NeedsRebaseline ]
crbug.com/344774 svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures.html [ Failure NeedsRebaseline ]
Bug(vollick) [ Linux Win Android ] compositing/fixed-body-background-positioned.html [ NeedsRebaseline ]
Bug(vollick) virtual/softwarecompositing/fixed-body-background-positioned.html [ NeedsRebaseline ]
crbug.com/341331 http/tests/xmlhttprequest/event-listener-gc.html [ Pass Failure ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-001.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-002.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-003.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-004.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/styles/test-001.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/styles/test-002.html [ Skip ]
crbug.com/323130 w3c/web-platform-tests/shadow-dom/styles/test-004.html [ Skip ]
crbug.com/246077 [ Linux ] virtual/android/fullscreen/parent-flow-inline-with-block-child.html [ Failure ]
crbug.com/346132 fast/url/segments-from-data-url.html [ Failure NeedsRebaseline ]
crbug.com/338475 crbug.com/307777 [ Android ] css1/cascade/important.html [ Failure Timeout ]
crbug.com/338475 crbug.com/307777 [ Android ] css1/classification/list_style.html [ Failure Timeout ]
crbug.com/338475 [ Android ] css1/classification/list_style_position.html [ Failure ]
crbug.com/338475 [ Android ] css1/classification/list_style_image.html [ Failure ]
crbug.com/338475 crbug.com/307777 [ Android ] css1/color_and_background/background_color.html [ Failure Timeout ]
crbug.com/338475 crbug.com/307777 [ Android ] css1/color_and_background/color.html [ Failure Timeout ]
crbug.com/338475 [ Android ] css1/font_properties/font_variant.html [ Failure ]
crbug.com/338475 [ Android ] css1/font_properties/font_style.html [ Failure ]
crbug.com/338475 [ Android ] css1/formatting_model/canvas.html [ Failure ]
crbug.com/338475 [ Android ] css1/text_properties/text_align.html [ Failure ]
crbug.com/338475 [ Android ] editing/caret/caret-color.html [ Failure ]
crbug.com/338475 [ Android ] fast/compact/002.html [ Failure ]
crbug.com/338475 crbug.com/307777 [ Android ] fast/hidpi/clip-text-in-hidpi.html [ Failure Timeout ]
crbug.com/338475 [ Android ] fast/inline-block/overflow-clip.html [ Failure ]
crbug.com/338475 crbug.com/307777 [ Android ] fast/invalid/009.html [ Failure Timeout ]
crbug.com/338475 [ Android ] svg/batik/text/textAnchor3.svg [ Failure ]
crbug.com/340150 [ Mac Debug ] plugins/plugin-document-back-forward.html [ Pass Failure ]
crbug.com/339174 fast/writing-mode/Kusa-Makura-background-canvas.html [ Pass Failure ]
crbug.com/339252 inspector/timeline/timeline-window-filter.html [ Pass Timeout ]
crbug.com/339259 fast/flexbox/box-orient-button.html [ Pass Failure ]
crbug.com/339238 inspector/layers/layer-tree-model.html [ Pass Failure ]
crbug.com/339394 [ Win Debug ] virtual/threaded/animations/animation-matrix-negative-scale-unmatrix.html [ Pass Failure ]
crbug.com/339592 media/track/opera/interfaces/TextTrackList/onaddtrack.html [ Pass Crash ]
crbug.com/339597 http/tests/navigation/back-to-redirect-with-frame.php [ Pass Timeout ]
crbug.com/157539 fast/css/text-align-positioned-inside-table-cell.html [ NeedsRebaseline ]
crbug.com/335212 fast/forms/suggested-value.html [ NeedsRebaseline ]
crbug.com/342077 [ Linux Android ] fast/text/chromium-linux-fontconfig-renderstyle.html [ NeedsRebaseline ]
# Disable failing tests for the new WebSocket implementation
crbug.com/339373 http/tests/security/contentSecurityPolicy/connect-src-websocket-allowed.html [ Skip ]
crbug.com/339373 http/tests/websocket/FIXME-handshake-fail-by-null-subprotocol-selection-whitelist.html [ Skip ]
crbug.com/339373 http/tests/websocket/close-before-handshake-response.html [ Skip ]
crbug.com/339373 http/tests/websocket/close-code-and-reason.html [ Skip ]
crbug.com/339373 http/tests/websocket/close-event.html [ Skip ]
crbug.com/339373 http/tests/websocket/compressed-control-frame.html [ Skip ]
crbug.com/339373 http/tests/websocket/cross-origin.html [ Skip ]
crbug.com/339373 http/tests/websocket/deflate-frame-comp-bit-onoff.html [ Skip ]
crbug.com/339373 http/tests/websocket/deflate-frame-invalid-parameter.html [ Skip ]
crbug.com/339373 http/tests/websocket/deflate-frame-parameter.html [ Skip ]
crbug.com/339373 http/tests/websocket/deflate-frame-set-bfinal.html [ Skip ]
crbug.com/339373 http/tests/websocket/extensions.html [ Skip ]
crbug.com/339373 http/tests/websocket/fragmented-frames.html [ Skip ]
crbug.com/339373 http/tests/websocket/frame-lengths.html [ Skip ]
crbug.com/339373 http/tests/websocket/handshake-error.html [ Skip ]
crbug.com/339373 http/tests/websocket/handshake-fail-by-no-cr.html [ Skip ]
crbug.com/339373 http/tests/websocket/interleaved-fragments.html [ Skip ]
crbug.com/339373 http/tests/websocket/invalid-continuation.html [ Skip ]
crbug.com/339373 http/tests/websocket/multiple-connections.html [ Skip ]
crbug.com/339373 http/tests/websocket/multiple-subprotocols.html [ Skip ]
crbug.com/339373 http/tests/websocket/no-crash-on-cookie-flood.html [ Skip ]
crbug.com/339373 http/tests/websocket/no-subprotocol.html [ Skip ]
crbug.com/339373 http/tests/websocket/nocache.html [ Skip ]
crbug.com/339373 http/tests/websocket/permessage-deflate-comp-bit-onoff.html [ Skip ]
crbug.com/339373 http/tests/websocket/permessage-deflate-invalid-parameter.html [ Skip ]
crbug.com/339373 http/tests/websocket/pong.html [ Skip ]
crbug.com/339373 http/tests/websocket/reserved-bits.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-arraybuffer.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-arraybufferview.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-blob-onmessage-origin.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-blob.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-empty.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-file-blob.html [ Skip ]
crbug.com/339373 http/tests/websocket/send-object-tostring-check.html [ Skip ]
crbug.com/339373 http/tests/websocket/server-close.html [ Skip ]
crbug.com/339373 http/tests/websocket/set-protocol.html [ Skip ]
crbug.com/339373 http/tests/websocket/unmasked-frames.html [ Skip ]
crbug.com/339373 http/tests/websocket/useragent-in-openinghandshake.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/close-code-and-reason.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/multiple-subprotocols.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/no-onmessage-in-sync-op.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/no-subprotocol.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/send-arraybuffer.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/send-arraybufferview.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/send-blob.html [ Skip ]
crbug.com/339373 http/tests/websocket/workers/worker-simple.html [ Skip ]
crbug.com/339373 http/tests/websocket/zero-length-text.html [ Skip ]
crbug.com/327581 http/tests/inspector/websocket/websocket-handshake.html [ Skip ]
crbug.com/339778 [ Debug ] fast/dom/timer-throttling-hidden-page.html [ Failure Pass ]
crbug.com/261177 css3/compositing/background-blend-mode-crossfade-image-gradient.html [ NeedsRebaseline ]
crbug.com/261177 css3/images/cross-fade-invalidation.html [ NeedsRebaseline ]
crbug.com/261177 css3/images/cross-fade-overflow-position.html [ NeedsRebaseline ]
# Temporary until the oilpan test bots understand the special oilpan test expectations
crbug.com/345630 fast/dom/StyleSheet/gc-parent-rule.html [ Failure Pass ]
crbug.com/345655 fast/dom/StyleSheet/detached-parent-rule-without-wrapper.html [ Failure Pass ]
# Heap buffer overflow failures on Linux ASAN
crbug.com/347365 [ Linux ] dom/xhtml/level3/core/canonicalform08.xhtml [ Crash Pass ]
crbug.com/347365 [ Linux ] dom/xhtml/level3/core/canonicalform09.xhtml [ Crash Pass ]
# Flaky since being added
crbug.com/340277 http/tests/navigation/back-to-get-after-post.php [ Failure Pass ]
# Needs rebaseline after r168130 (got tangled in some other auto-rebaselines)
crbug.com/345609 [ Mac ] editing/pasteboard/4944770-2.html [ NeedsRebaseline ]
crbug.com/345609 [ Mac ] editing/selection/select-box.html [ NeedsRebaseline ]
|