forked from youtube/cobalt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestExpectations
6882 lines (5859 loc) · 585 KB
/
TestExpectations
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
# tags: [ Fuchsia Linux Mac Mac10.13 Mac10.14 Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Mac13 Mac13-arm64 Win Win10.20h2 Win11 ]
# tags: [ Release Debug ]
# results: [ Timeout Crash Pass Failure Skip ]
# This is the main failure suppression file for Blink LayoutTests.
# Further documentation:
# https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_test_expectations.md
# Single [ Skip ] expectation is not allowed in this file. Normally we should
# not skip a test because it's failing or flaky. We should add failure or flaky
# expectations instead, so that they will still run on bots, and we can collect
# data about their flakiness and update their expectations accordingly.
#
# For tests that we really want to skip:
# - We can skip tests that we don't want to run in NeverFixTests. Please see
# the file for other Skip cases.
# - For tests that are only meaningful if run under some virtual suite(s),
# please use 'exclusive_tests' in VirtualTestSuites.
# - 'Skip' together with other expectations is allowed in this file for now:
# - [ Skip Timeout ] to skip Timeout tests that are also marked Slow in
# SlowTests.
# - (rare and not encouraged) [ Skip OtherExpectation(s) ] to temporarily
# skip tests that are harmful to the test runner or other tests, or to
# skip tests for historical reasons.
# Intentional failures to test the layout test system.
harness-tests/crash.html [ Crash ]
harness-tests/timeout.html [ Timeout ]
fast/harness/sample-fail-mismatch-reftest.html [ Failure ]
# Expected to fail.
external/wpt/infrastructure/reftest/legacy/reftest_and_fail_0-ref.html [ Failure ]
external/wpt/infrastructure/reftest/legacy/reftest_cycle_fail_0-ref.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-0.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-1.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-4.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-5.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-6.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_and_mismatch-7.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_match_fail.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_mismatch_fail.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_multiple_mismatch-0.html [ Failure ]
external/wpt/infrastructure/reftest/reftest_multiple_mismatch-1.html [ Failure ]
accessibility/slot-poison.html [ Failure ]
# Expected to time out.
external/wpt/infrastructure/expected-fail/timeout.html [ Timeout ]
external/wpt/infrastructure/reftest/reftest_ref_timeout.html [ Timeout ]
external/wpt/infrastructure/reftest/reftest_timeout.html [ Timeout ]
# We don't support extracting fuzzy information from .ini files, which these
# WPT infrastructure tests rely on.
crbug.com/997202 external/wpt/infrastructure/reftest/legacy/reftest_fuzzy_chain_ini.html [ Failure ]
crbug.com/997202 external/wpt/infrastructure/reftest/legacy/fuzzy-ref-2.html [ Failure ]
crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_full.html [ Failure ]
crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_ref_only.html [ Failure ]
crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_short.html [ Failure ]
# NewBaseUrlInheritanceBehavior:
# The following tests are expected to fail when the new base url inheritance
# behavior is not enabled. They are tested under the test suite
# virtual/new-base-url-inheritance-behavior.
crbug.com/1356658 external/wpt/html/infrastructure/urls/base-url/document-base-url-changes-about-srcdoc-2.https.html [ Failure ]
crbug.com/1356658 virtual/new-base-url-inheritance-behavior/external/wpt/html/infrastructure/urls/base-url/document-base-url-changes-about-srcdoc-2.https.html [ Pass ]
# WPT HTTP/2 is not fully supported by run_web_tests.
crbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=h2 [ Failure ]
crbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=https [ Failure ]
# The following tests pass or fail depending on the underlying protocol (HTTP/1.1 vs HTTP/2).
# The results of failures could be also different depending on the underlying protocol.
crbug.com/1048761 external/wpt/websockets/constructor/002.html?wss [ Failure Pass ]
crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-connecting.html?wss [ Failure Pass ]
crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-nested.html?wss [ Failure Pass ]
crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/readyState/003.html?wss [ Failure Pass ]
crbug.com/1048761 external/wpt/websockets/unload-a-document/002.html?wss [ Failure Pass ]
# Tests are flaky after a WPT import
crbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Failure Pass ]
crbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2 [ Failure Pass ]
# Flaking on WebKit Linux MSAN
crbug.com/1207373 [ Linux ] external/wpt/uievents/order-of-events/mouse-events/mousemove-across.html [ Failure Pass ]
crbug.com/1339285 [ Linux ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]
crbug.com/1339285 [ Win ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]
crbug.com/1339285 [ Mac ] fast/loader/iframe-window-open-stealing-focus.html [ Pass Timeout ]
crbug.com/1393073 [ Linux ] virtual/fenced-frame-mparch/external/wpt/fenced-frame/anchor-focus.https.html [ Failure Pass ]
# WPT Test harness doesn't deal with finding an about:blank ref test
crbug.com/1066130 external/wpt/infrastructure/assumptions/blank.html [ Failure ]
crbug.com/807686 crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]
# The following tests need to remove the assumption that user activation is
# available in child/sibling frames. This assumption doesn't hold with User
# Activation v2 (UAv2).
# These two are left over from crbug.com/881040, I rebaselined them twice and
# they continue to fail.
crbug.com/881040 media/controls/lazy-loaded-style.html [ Failure Pass ]
# With --enable-display-compositor-pixel-dump enabled by default, these three
# tests fail. See crbug.com/887140 for more info.
crbug.com/887140 virtual/hdr/color-jpeg-with-color-profile.html [ Failure ]
crbug.com/887140 virtual/hdr/color-profile-video.html [ Failure ]
crbug.com/887140 virtual/hdr/video-canvas-alpha.html [ Failure ]
# Tested by paint/background/root-element-background-transparency.html for now.
external/wpt/css/compositing/root-element-background-transparency.html [ Failure ]
# ====== Synchronous, budgeted HTML parser tests from here ========================
# See crbug.com/1254921 for details.
# These tests either started failing outright, or became flaky, when the new HTML
# parser was enabled. All of these are bugs/issues with the test itself.
# Extra line info appears in the output in some cases.
crbug.com/1254932 http/tests/preload/meta-csp.html [ Failure ]
# Extra box in the output:
crbug.com/1254933 [ Linux ] css3/filters/filterRegions.html [ Failure Pass ]
crbug.com/1254933 [ Win ] css3/filters/filterRegions.html [ Failure Pass ]
crbug.com/1405377 [ Mac ] css3/filters/filterRegions.html [ Failure Pass ]
# Script preloaded: No
crbug.com/1254940 http/tests/security/contentSecurityPolicy/nonces/scriptnonce-redirect.html [ Failure ]
# Two paint failures:
crbug.com/1254943 paint/invalidation/overflow/resize-child-within-overflow.html [ Failure ]
crbug.com/1254943 fast/events/hit-test-counts.html [ Failure ]
# Image isn't present:
crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure Pass ]
crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure Pass ]
crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure Pass ]
crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure Pass ]
# Fails flakily or times out
# Unknown media state flakiness (likely due to layout occuring earlier than expected):
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-candidate-insert-before.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-audio-constructor.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-not-in-document.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause-networkState.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-from-document-networkState.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-src.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src-not-in-document.html [ Failure Pass ]
crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src.html [ Failure Pass ]
# Very slow (~2 minutes) when DCHECKs are enabled, due to huge number of loop iterations.
# The -3 variant additionally exposes a bug, but even once that's fixed the test is too slow.
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-1.html [ Skip Timeout ]
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-2.html [ Skip Timeout ]
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-3.html [ Failure Skip Timeout ]
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-1.html [ Skip Timeout ]
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-2.html [ Skip Timeout ]
crbug.com/1357443 external/wpt/dom/nodes/NodeList-static-length-getter-tampered-indexOf-3.html [ Skip Timeout ]
# ====== Synchronous, budgeted HTML parser tests to here ========================
# ====== Timed HTML parser budget tests from here ========================
# See crbug.com/1342718 for details.
# These tests either started failing outright, or became flaky, when the HTML
# parser switched to using a time based budget instead of a token based budget.
# All of these are bugs/issues with the test itself.
crbug.com/1341693 [ Linux ] external/wpt/dom/nodes/MutationObserver-document.html [ Crash Failure Pass Timeout ]
crbug.com/1339293 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load.html [ Failure Pass ]
crbug.com/1339293 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause.html [ Failure Pass ]
crbug.com/1339293 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-play.html [ Failure Pass ]
crbug.com/1339293 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html [ Failure Pass ]
# TODO(crbug.com/1367142): Re-enable this test
crbug.com/1339293 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html [ Crash Failure Pass Timeout ]
crbug.com/1339293 external/wpt/content-security-policy/media-src/media-src-7_1_2.sub.html [ Crash Failure Pass Timeout ]
# ====== Timed HTML parser budget tests to here ========================
crbug.com/1197502 [ Win ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass ]
# ====== Site Isolation failures from here ======
# See also third_party/blink/web_tests/virtual/not-site-per-process/README.md
# Tests temporarily disabled with Site Isolation - uninvestigated bugs:
# TODO(lukasza, alexmos): Burn down this list.
crbug.com/949003 http/tests/printing/cross-site-frame-scrolled.html [ Failure Pass ]
crbug.com/949003 http/tests/printing/cross-site-frame.html [ Failure Pass ]
# ====== Site Isolation failures until here ======
# ====== Oilpan-only failures from here ======
# Most of these actually cause the tests to report success, rather than
# failure. Expected outputs will be adjusted for the better once Oilpan
# has been well and truly enabled always.
# ====== Oilpan-only failures until here ======
# ====== Paint team owned tests from here ======
# The paint team tracks and triages its test failures, and keeping them colocated
# makes tracking much easier.
# Covered directories are:
# compositing except compositing/animations
# hittesting
# images, css3/images,
# paint
# svg
# canvas, fast/canvas
# transforms
# display-lock
# view-transition
# Some additional bugs that are caused by painting problems are also within this section.
# The tests happened to pass with two bugs canceled each other. Now they fail
# with the first bug fixed. Will be fixed when the second bug is fixed (crrev.com/c/3752748).
# --- Skia roll test suppressions
# --- END Skia roll test suppresions
# Sheriff on 2020-09-03
crbug.com/1124352 media/picture-in-picture/controls/picture-in-picture-button.html [ Crash Pass ]
crbug.com/1124352 external/wpt/picture-in-picture/exit-picture-in-picture.html [ Crash Pass ]
# These fail due to subtle anti-aliasing differences cause by the fact that
# <canvas> renders via IOSurface and OffscreenCanvas does not.
crbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-gradients-in-worker.html [ Failure ]
crbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-paths-in-worker.html [ Failure ]
# This test is originally added with external/wpt/speculation-rules/prerender/* skipped and broken.
crbug.com/1356449 external/wpt/speculation-rules/prerender/credentialed-prerender-opt-in.html [ Crash Failure Pass Timeout ]
# These tests are tentatively disabled.
crbug.com/1302831 external/wpt/speculation-rules/prerender/service-workers.https.html [ Failure Skip Timeout ]
crbug.com/1302831 http/tests/inspector-protocol/prerender/prerender-ua-override.js [ Crash Failure Pass Timeout ]
crbug.com/1302831 wpt_internal/prerender/restriction-web-auth.https.html [ Crash Failure Pass Timeout ]
crbug.com/1302831 [ Win10.20h2 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]
crbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/redirect-url.https.html [ Failure ]
# Test might be flaky on Mac12-arm64 as the test server causes network errors probably becauuse of lack of resources on the bot.
crbug.com/1382361 [ Mac ] external/wpt/speculation-rules/prerender/csp-script-src-self.html [ Failure Pass ]
crbug.com/1400927 [ Linux Release ] external/wpt/speculation-rules/prerender/csp-script-src-self.html [ Failure Pass ]
crbug.com/1403316 [ Linux Release ] virtual/prerender/external/wpt/speculation-rules/prerender/csp-script-src-self.html [ Crash Failure ]
# These tests are flaky with BFCache, which is enabled by default.
crbug.com/1311546 http/tests/test-runner/back-forward.html [ Failure Pass ]
crbug.com/1225630 fast/multicol/infinite-height-causing-fractional-row-height-crash.html [ Skip Timeout ]
crbug.com/1225630 fast/multicol/infinitely-tall-content-in-outer-crash.html [ Skip Timeout ]
crbug.com/807395 fast/multicol/mixed-opacity-test.html [ Failure ]
crbug.com/1225630 fast/multicol/nested-very-tall-inside-short-crash.html [ Skip Timeout ]
crbug.com/1351556 virtual/view-transition/view-transition/capture-callback-exception.html [ Failure ]
crbug.com/1351556 virtual/view-transition-wide-gamut/view-transition/capture-callback-exception.html [ Failure ]
########## Ref tests can't be rebaselined ##########
crbug.com/619103 paint/invalidation/background/background-resize-width.html [ Failure Pass ]
crbug.com/784956 fast/history/frameset-repeated-name.html [ Failure Pass ]
# Image not painting as expected, primarily shows as CQ hidden flakes.
crbug.com/1271092 paint/invalidation/scroll/fixed-img-src-change-after-scroll.html [ Failure Pass ]
########## Genuinely flaky ##########
crbug.com/624233 virtual/gpu-rasterization/images/color-profile-background-clip-text.html [ Failure Pass ]
crbug.com/757605 virtual/gpu-rasterization/images/jpeg-yuv-progressive-image.html [ Failure Pass ]
########## Bugs to fix ##########
# This is a missing event and increasing the timeout or using run-after-layout-and-paint doesn't
# seem to fix it.
crbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ Failure ]
crbug.com/845267 [ Mac ] http/tests/inspector-protocol/page/page-lifecycleEvents.js [ Failure Pass ]
crbug.com/1046784 http/tests/inspector-protocol/page/page-events-associated-isolation.js [ Failure Pass ]
# Service Worker registration.update() Network Requests require more instrumentation
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-content-type.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-redirect.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-response-code.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-content-type.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-redirect.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-response-code.js [ Failure ]
crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]
# Looks like a failure to get a paint on time. Test could be changed to use runAfterLayoutAndPaint
# instead of a timeout, which may fix things.
crbug.com/713049 images/color-profile-reflection.html [ Failure Pass ]
crbug.com/713049 [ Mac ] virtual/gpu-rasterization/images/color-profile-reflection.html [ Failure Pass Timeout ]
# This test was attributed to site isolation but times out with or without it. Broken test?
crbug.com/1050826 external/wpt/mixed-content/gen/top.http-rp/opt-in/object-tag.https.html [ Skip Timeout ]
crbug.com/1237275 fast/canvas/layers-lonebeginlayer.html [ Failure Pass ]
crbug.com/1237275 fast/canvas/layers-unmatched-beginlayer.html [ Failure Pass ]
# Assorted WPT canvas tests failing
crbug.com/1093709 external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.resize.html [ Failure Pass ]
crbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.shadow.html [ Failure ]
crbug.com/1170337 [ Mac10.13 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.zero.worker.html [ Skip Timeout ]
crbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html [ Failure ]
crbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html [ Failure ]
# Off by one pixel error on ref test
crbug.com/1259367 [ Mac ] printing/offscreencanvas-webgl-printing.html [ Failure ]
# These are testing deprecated features: https://github.com/web-platform-tests/wpt/issues/35662
external/wpt/editing/run/inserttext.html?2001-last [ Failure ]
external/wpt/editing/run/forecolor.html?1-1000 [ Failure ]
# WPT editing test failures
crbug.com/1226216 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]
crbug.com/1226218 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]
crbug.com/1226218 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]
crbug.com/1226216 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]
crbug.com/1226216 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]
crbug.com/1226218 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]
crbug.com/1226216 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]
crbug.com/1226218 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]
crbug.com/893480 external/wpt/editing/other/select-all-and-delete-in-html-element-having-contenteditable.html [ Failure Timeout ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=backspace&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-line-and-right-paragraph.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=backspace&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=forwarddelete&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=normal&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=normal&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=normal&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=normal&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=nowrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=nowrap&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre&right-white-space=pre-line [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-line&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-line&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-line&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-line&right-white-space=pre-wrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=normal [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=nowrap [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=pre [ Failure ]
crbug.com/1370704 external/wpt/editing/other/join-different-white-space-style-left-paragraph-and-right-line.html?method=select-boundary&left-white-space=pre-wrap&right-white-space=pre-line [ Failure ]
crbug.com/1377822 external/wpt/editing/crashtests/inserthorizontalrule-in-textarea-in-editor-and-undo-on-error-events.html [ Timeout ]
# This test depends on synchronous focus() which does not exist (anymore?).
crbug.com/1074482 external/wpt/html/interaction/focus/the-autofocus-attribute/update-the-rendering.html [ Failure ]
crbug.com/1104125 [ Mac10.13 Release ] external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]
# This test has a bug in it that prevents it from being able to deal with order
# differences it claims to support.
crbug.com/1076129 external/wpt/service-workers/service-worker/clients-matchall-frozen.https.html [ Failure Pass ]
# No support for un-prefixed background-clip: text or fill-color on text.
crbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-multi-line.html [ Failure ]
crbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-flex.html [ Failure ]
# Flakily timing out or failing.
# TODO(ccameron): Investigate this.
crbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]
crbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]
crbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]
crbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]
crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]
crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]
crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]
# Flaky virtual/threaded-prefer-compositing tests
crbug.com/1180479 [ Mac ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/scrollIntoView-smooth.html [ Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-animates.html [ Crash Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Crash Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html [ Crash Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-added.html [ Crash Failure Pass Timeout ]
crbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-correctness.html [ Crash Failure Pass Timeout ]
crbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/mousewheel-scroll-interrupted.html [ Crash Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Crash Failure Pass Timeout ]
crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Crash Failure Pass Timeout ]
crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass Timeout ]
crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snap-scrolls-visual-viewport.html [ Failure Pass ]
crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-scrollbar-scrolling-thumb.html [ Failure Pass ]
crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling.html [ Failure Pass ]
crbug.com/936891 virtual/threaded-prefer-compositing/fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Pass ]
crbug.com/841567 virtual/threaded-prefer-compositing/fast/scrolling/overflow-scrollability.html [ Failure Pass Timeout ]
crbug.com/1279758 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]
crbug.com/1058244 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass Timeout ]
crbug.com/1058244 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]
crbug.com/915926 fast/events/touch/multi-touch-user-gesture.html [ Failure Pass ]
crbug.com/1303091 [ Linux ] compositing/overflow/paint-neg-z-order-descendants-into-scrolling-contents-layer.html [ Failure Pass ]
# New OffscreenCanvas Tests that are breaking LayoutTest
crbug.com/980969 http/tests/input/discard-events-to-unstable-iframe.html [ Failure Pass ]
crbug.com/815111 external/wpt/css/css-fill-stroke/paint-order-001.tentative.html [ Failure ]
crbug.com/1007134 external/wpt/intersection-observer/v2/delay-test.html [ Failure Pass ]
crbug.com/1004547 external/wpt/intersection-observer/cross-origin-iframe.sub.html [ Failure Pass ]
crbug.com/1007229 external/wpt/intersection-observer/same-origin-grand-child-iframe.sub.html [ Failure Pass ]
# These fail when device_scale_factor is changed, but only for anti-aliasing:
crbug.com/968791 [ Mac ] virtual/scalefactor200/css3/filters/effect-blur-hw.html [ Failure Pass ]
# These appear to be actually incorrect at device_scale_factor 2.0:
crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure ]
crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-002.html [ Failure ]
crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure ]
crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-004.html [ Failure ]
crbug.com/1362405 css3/filters/effect-reference-hidpi.html [ Failure Pass ]
crbug.com/1362405 css3/filters/effect-reference-hidpi-hw.html [ Failure Pass ]
crbug.com/916825 external/wpt/css/filter-effects/filter-subregion-01.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]
crbug.com/1295445 external/wpt/css/filter-effects/css-filters-animation-combined-001.html [ Failure ]
# Could be addressed with fuzzy diff.
crbug.com/910537 external/wpt/svg/painting/marker-006.svg [ Failure ]
crbug.com/910537 external/wpt/svg/painting/marker-005.svg [ Failure ]
# We don't yet implement context-fill and context-stroke
crbug.com/367737 external/wpt/svg/painting/reftests/paint-context-001.svg [ Failure ]
crbug.com/367737 external/wpt/svg/painting/reftests/paint-context-002.svg [ Failure ]
# Unprefixed 'mask' ('mask-image', 'mask-border') support not yet implemented.
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-clip-exclude.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-local-mask.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-remote-mask.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image-hash.html [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-005.svg [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-003.html [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-004.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-006.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-007.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-008.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-009.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-010.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-011.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-012.html [ Failure ]
crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-polygon-013.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1b.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1c.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1b.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1c.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1b.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1c.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-fillBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-geometryBox-2.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-marginBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1b.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1c.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1a.html [ Failure ]
crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-1.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-2.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1d.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-2.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3f.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3g.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-d.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-to-mask-type.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1d.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1e.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-1.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-2.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-3.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4a.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4b.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4c.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4d.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-5.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-6.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-7.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-1.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-2.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-3.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-auto.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-length.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-percent.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-border.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-padding.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-cover.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-auto.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-length.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-percent.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-auto.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-length.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent-stretch.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent.html [ Failure ]
crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent.html [ Failure ]
# CSS clip-path: shape() not implemented
crbug.com/1308431 [ Win11 ] external/wpt/css/css-masking/animations/clip-path-interpolation-shape.html [ Failure ]
crbug.com/1308431 [ Win ] external/wpt/css/css-masking/parsing/clip-path-shape-parsing.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-001.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002-units.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-003.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-004.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-001.html [ Failure ]
crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-002.html [ Failure ]
crbug.com/1308431 virtual/view-transition/external/wpt/css/css-view-transitions/old-content-captures-clip-path.html [ Failure ]
# Fails, at a minimum, due to lack of support for CSS mask property in html elements
crbug.com/432153 external/wpt/svg/painting/reftests/display-none-mask.html [ Crash Failure Pass Timeout ]
# WPT SVG Tests failing. Have not been investigated in all cases.
crbug.com/1184034 external/wpt/svg/linking/reftests/href-filter-element.html [ Failure ]
crbug.com/366559 external/wpt/svg/shapes/reftests/pathlength-003.svg [ Failure ]
crbug.com/366559 external/wpt/svg/text/reftests/textpath-side-001.svg [ Failure ]
crbug.com/366559 external/wpt/svg/text/reftests/textpath-shape-001.svg [ Failure ]
crbug.com/803360 external/wpt/svg/path/closepath/segment-completing.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-001.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-201.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-202.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-102.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-002.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-203.svg [ Failure ]
crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-003.svg [ Failure ]
crbug.com/670177 external/wpt/svg/rendering/order/z-index.svg [ Failure ]
crbug.com/863355 [ Mac ] external/wpt/svg/shapes/reftests/pathlength-002.svg [ Failure ]
crbug.com/1052202 external/wpt/svg/linking/scripted/href-mpath-element.html [ Timeout ]
crbug.com/1052202 external/wpt/svg/linking/scripted/href-animate-element.html [ Timeout ]
crbug.com/1222395 external/wpt/svg/path/property/mpath.svg [ Failure ]
crbug.com/785246 external/wpt/svg/struct/reftests/use-inheritance-001.svg [ Failure ]
crbug.com/785246 external/wpt/svg/linking/reftests/use-descendant-combinator-003.html [ Failure ]
crbug.com/674797 external/wpt/svg/painting/reftests/marker-path-022.svg [ Failure ]
crbug.com/674797 external/wpt/svg/painting/reftests/marker-path-023.svg [ Failure ]
crbug.com/1368167 external/wpt/svg/struct/reftests/currentScale-change-repaint.html [ Failure ]
crbug.com/1418360 external/wpt/svg/styling/use-element-web-animations.html [ Failure ]
crbug.com/699040 external/wpt/svg/text/reftests/text-xml-space-001.svg [ Failure ]
# Content Shell on macOS doesn't work well for Han glyph selection for
# languages. Chrome works well.
crbug.com/1370460 [ Mac ] external/wpt/svg/text/reftests/lang-attribute.svg [ Failure ]
crbug.com/1370460 [ Mac ] external/wpt/svg/text/reftests/xml-lang-attribute.svg [ Failure ]
# WPT backgrounds and borders tests. Note that there are many more in NeverFixTests
# that should be investigated (see crbug.com/780700)
crbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-004.xht [ Failure ]
crbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-006.xht [ Failure ]
# Minor bleed on left/top side of the edge pieces (computed spacing is 16px / 3).
crbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-space-10.html [ Failure Pass ]
# No emoji flag symbols available in the Windows system emoji font.
# ==== Regressions introduced by BlinkGenPropertyTrees =====
# Reflection / mask ordering issue
crbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]
# Incorrect scrollbar invalidation.
crbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]
crbug.com/887000 [ Mac10.14 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac12-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac13 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/887000 [ Mac13-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
crbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]
crbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]
crbug.com/898394 virtual/android/url-bar/bottom-and-top-fixed-sticks-to-top.html [ Failure Timeout ]
crbug.com/1046784 http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Crash Failure Pass Timeout ]
# Temporarily disabled to unblock https://crrev.com/c/4417276
crbug.com/1427397 http/tests/devtools/elements/styles-4/style-update-during-selector-edit.js [ Failure Pass ]
# Subpixel rounding differences that are incorrect.
crbug.com/997202 compositing/overflow/scaled-overflow.html [ Failure ]
# Flaky subpixel AA difference (not necessarily incorrect, but flaky)
crbug.com/997202 virtual/threaded-no-composited-antialiasing/animations/skew-notsequential-compositor.html [ Failure Pass ]
# Only one pixel difference (187,187,187) vs (188,188,188) occasionally.
crbug.com/1207960 [ Linux ] compositing/perspective-interest-rect.html [ Failure Pass ]
crbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg.html [ Failure ]
crbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg-clip.html [ Failure ]
crbug.com/1261905 external/wpt/css/css-transforms/backface-visibility-hidden-child-will-change-transform.html [ Failure ]
crbug.com/1261905 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-child-translate.html [ Failure ]
# CompositeAfterPaint remaining failures
# Outline paints incorrectly with columns. Needs LayoutNGBlockFragmentation.
# Need to force the video to be composited in this case, or change pre-CAP
# to match CAP behavior.
crbug.com/1108972 fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure ]
# Cross-origin iframe layerization is buggy with empty iframes.
crbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-masked-pointer-events-mixed-2.sub.html [ Failure ]
crbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-complex-clip.sub.html [ Failure ]
# Needs rebaseline on Fuchsia.
crbug.com/1267498 [ Fuchsia ] paint/invalidation/svg/animated-svg-as-image-transformed-offscreen.html [ Failure ]
crbug.com/1267498 [ Fuchsia ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]
crbug.com/1267498 [ Fuchsia ] transforms/transformed-caret.html [ Failure ]
# Fail due to lack of fuzzy matching on Linux, Win and Mac platforms for WPT. The pixels in the pre-rotated reference
# images do not exactly match the exif rotated images, probably due to jpeg decoding/encoding issues. Maybe
# adjusting the image size to a multiple of 8 would fix this (so all jpeg blocks are solid color).
crbug.com/997202 external/wpt/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html [ Failure ]
crbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties.html [ Failure ]
crbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties-border-radius.html [ Failure ]
crbug.com/997202 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio.html [ Failure ]
crbug.com/1159433 external/wpt/css/css-images/image-orientation/image-orientation-exif-png.html [ Failure ]
# object-fit is not applied for <object>/<embed>.
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-001.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-002.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005o.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006e.html [ Failure ]
crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006o.html [ Failure ]
# Minor rendering difference to the ref image because of filtering or positioning.
# (Possibly because of the use of 'image-rendering: crisp-edges' in some cases.)
crbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-001c.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-002c.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-001c.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-001e.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-001i.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-001o.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-001p.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-002c.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-002e.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-002i.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-002o.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-png-002p.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001e.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001i.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001o.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001p.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002e.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002i.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002o.html [ Failure ]
crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002p.html [ Failure ]
# The following fails because we don't use the natural aspect ratio when applying
# object-fit, and the images referenced don't have a natural size.
crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003i.html [ Failure ]
crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003p.html [ Failure ]
crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004i.html [ Failure ]
crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004p.html [ Failure ]
crbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-png.html [ Failure ]
crbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-svg.html [ Failure ]
# Passes with the WPT runner but not the internal one. (???)
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1a.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1b.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1c.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-3.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-4.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-5.html [ Failure Pass ]
# Off-by-one in some components.
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-6.html [ Failure Pass ]
crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-7.html [ Failure Pass ]
# Failures due to pointerMove building synthetic events without button information (main thread only).
crbug.com/1056778 fast/scrolling/scrollbars/scrollbar-thumb-snapping.html [ Failure ]
# Most of these fail due to subpixel differences, but a couple are real failures.
crbug.com/1044742 external/wpt/css/compositing/compositing_simple_div.html [ Failure ]
crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-border-image.html [ Failure ]
crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-filter.html [ Failure ]
crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-stacking-context-001.html [ Failure ]
crbug.com/1044742 [ Mac10.13 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac10.14 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Crash Failure ]
crbug.com/1044742 [ Mac10.15 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac11 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac11-arm64 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac12 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac12-arm64 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac13 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Mac13-arm64 ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1044742 [ Release Win ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
crbug.com/1271275 external/wpt/css/compositing/background-blending/background-blend-mode-plus-lighter.html [ Failure ]
# Minor pixel differences
crbug.com/1056492 external/wpt/svg/painting/reftests/marker-path-001.svg [ Failure ]
crbug.com/819617 [ Linux ] virtual/text-antialias/descent-clip-in-scaled-page.html [ Failure ]
crbug.com/1196414 compositing/composited-replaced-subpixel-location.html [ Failure ]
# Triage of WPT css-paint-api tests
crbug.com/1299442 external/wpt/css/css-paint-api/custom-property-animation-on-main-thread.https.html [ Failure Pass ]
# Flaky virtual/off-main-thread-css-paint tests. Skipping whole test suite for now.
# Open issues: 1339051, 1288136, 1286944, 1254382, 1250666, 1233826, 1123886, 1345205, 1299442, 1288136
virtual/off-main-thread-css-paint/external/wpt/css/css-paint-api/* [ Failure Skip ]
crbug.com/1339051 [ Linux ] virtual/off-main-thread-css-paint/http/tests/csspaint/shadow-scale-with-page-zoom.html [ Failure ]
# ====== Paint team owned tests to here ======
# WPT speculative-parsing tests failing
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-alternate-stylesheet.tentative.sub.html [ Crash Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-stylesheet-nomatch-media.tentative.sub.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-alternate-stylesheet.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-disabled.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-nomatch-media.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-font-script-src.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-script-src.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html [ Failure ]
crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html [ Failure ]
crbug.com/1142958 external/wpt/layout-instability/absolute-child-shift-with-parent-will-change.html [ Failure ]
crbug.com/922249 virtual/android/fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure Pass ]
# Fractional paint offsets lead to 1px bleed with position sticky.
crbug.com/1136079 external/wpt/css/css-position/sticky/position-sticky-fractional-offset.html [ Failure ]
# ====== Layout team owned tests from here ======
crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-left-002.xht [ Failure ]
crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-right-002.xht [ Failure ]
crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-left-001.xht [ Failure ]
crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-right-001.xht [ Failure ]
crbug.com/711704 external/wpt/css/CSS2/floats/floats-wrap-bfc-006.xht [ Failure ]
crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-035.xht [ Failure ]
crbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-005.xht [ Failure ]
crbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-006.xht [ Failure ]
crbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-001.xht [ Failure ]
crbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-002.xht [ Failure ]
#### external/wpt/css/css-sizing
crbug.com/1322062 external/wpt/css/css-sizing/aspect-ratio/fieldset-element-001.html [ Failure ]
crbug.com/1281709 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-002.html [ Failure ]
crbug.com/970201 external/wpt/css/css-sizing/slice-intrinsic-size.html [ Failure ]
crbug.com/970201 external/wpt/css/css-sizing/clone-intrinsic-size.html [ Failure ]
crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-038.html [ Failure ]
crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-039.html [ Failure ]
crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-042.html [ Failure ]
crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-043.html [ Failure ]
# This one fails a DCHECK on Chromium infra but passes on wpt.fyi
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-001.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-002.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-003.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-004.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-005.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-006.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-007.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-008.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-009.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-010.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-011.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-012.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-013.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-014.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-015.html [ Failure ]
crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-016.html [ Failure ]
crbug.com/1008951 external/wpt/css/css-text-decor/text-decoration-color.html [ Failure ]
crbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-001.html [ Failure ]
crbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-002.html [ Failure ]
crbug.com/936084 external/wpt/css/css-sizing/max-content-input-001.html [ Failure ]
#### Unprefix and update the implementation for text-emphasis
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-color-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-002.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-002.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-002.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-002.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-002.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-007.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-008.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-010.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-012.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-016.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-021.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-filled-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-open-001.xht [ Failure ]
crbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cf.html [ Failure ]
crbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cn.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-shape-001.xht [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-string-001.xht [ Failure ]
crbug.com/1281289 external/wpt/css/css-text/letter-spacing/letter-spacing-211.html [ Failure ]
crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]
crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]
crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]
crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]
crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]
crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]
crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]
crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001a.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001b.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001z.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002a.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002b.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003a.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003b.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003c.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003d.html [ Failure ]
crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004a.html [ Failure ]