forked from haiku/haikuwebkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestExpectations
2443 lines (1908 loc) · 162 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
# These are the layout test expectations for the glib-based ports: WebKitGTK and WPE.
#
# This file is used to track common expectations to both ports.
#
# The bots of WebKitGTK+/WPE running layout tests (GTK Release Test, GTK Debug Test,
# GTK Release Wayland Test, WPE Release Test, and WPE Debug Test)
# are currently running on Debian 10 (Buster) x86_64.
#
# See http://trac.webkit.org/wiki/TestExpectations for more information on this file.
#
# Never add any tests to this file without opening a bug on bugzilla.webkit.org.
#
# Initially the following sections were used, but this is not a fixed list. Some sections
# (like WebAnimation, PageOverlay, WebGL) will mirror their top-level LayoutTests/
# folders, but others like CSS and GStreamer may have entries from multiple folders.
#
# * PASSING tests
# * Usually to override tests skipped/failing by Mac ports.
# NOTE: Passing tests should be on the top of the file to ensure that
# expected failures below are not overriden by a folder that is
# set to Pass to unskip it from the main expectations file and
# declared after the expected failure.
# The layout test runner evaluates the rules from top to bottom
# and it picks as the valid rule the last one matching.
# * Accessibility
# * CSS
# * Fonts
# * GStreamer
# * HiDPI
# * IndexedDB
# * OffscreenCanvas
# * PageOverlay
# * Perf
# * Scrolling
# * SVG
# * WebAnimations
# * WebAudio
# * WebGL
# * WebRTC
# * WebSQL
# * WebSocket
# * WPT
# * XHR
# * UNSUPPORTED tests
# * Things we do not test. (i.e. Skipped)
# * NEEDS TRIAGING
# * If you are not sure where an expectation should go, put it here and ask for proper
# triaging in the associated bug.
#
# Important rules when creating new sections:
#
# * Keep them alphabetically sorted - except for the PASSING/NEEDS TRIAGING sections.
# * Only PASSING/UNSUPPORTED should have expectations without bug entries.
#////////////////////////////////////////////////////////////////////////////////////////
# TESTS PASSING
#////////////////////////////////////////////////////////////////////////////////////////
animations/missing-values-first-keyframe.html [ Pass ]
animations/missing-values-last-keyframe.html [ Pass ]
# RSA-PSS tests are for now skipped on all ports, so we for now explicitly enable the passing ones here.
crypto/subtle/ecdh-import-pkcs8-key-p256-validate-ecprivatekey-parameters-publickey.html [ Pass ]
crypto/subtle/ecdh-import-pkcs8-key-p384-validate-ecprivatekey-parameters-publickey.html [ Pass ]
crypto/subtle/ecdsa-import-pkcs8-key-p256-validate-ecprivatekey-parameters-publickey.html [ Pass ]
crypto/subtle/ecdsa-import-pkcs8-key-p384-validate-ecprivatekey-parameters-publickey.html [ Pass ]
crypto/subtle/ecdh-import-spki-key-ecdh-identifier.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-jwk-sha1.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-jwk-sha224.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-jwk-sha256.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-jwk-sha384.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-jwk-sha512.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-pkcs8.html [ Pass ]
crypto/subtle/rsa-pss-generate-export-key-spki.html [ Pass ]
crypto/subtle/rsa-pss-generate-key.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-private-key.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-empty-usages.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-sha1.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-sha224.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-sha256.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-sha384.html [ Pass ]
crypto/subtle/rsa-pss-import-jwk-public-key-sha512.html [ Pass ]
crypto/subtle/rsa-pss-import-key-sign-large-salt.html [ Failure ]
crypto/subtle/rsa-pss-import-key-sign.html [ Pass ]
crypto/subtle/rsa-pss-import-key-verify.html [ Pass ]
crypto/subtle/rsa-pss-import-pkcs8-key.html [ Pass ]
crypto/subtle/rsa-pss-import-spki-key-empty-usages.html [ Pass ]
crypto/subtle/rsa-pss-import-spki-key.html [ Pass ]
crypto/workers/subtle/rsa-pss-import-key-sign.html [ Pass ]
crypto/workers/subtle/rsa-pss-import-key-verify.html [ Pass ]
http/wpt/crypto/rsa-pss-crash.any.html [ Pass ]
http/wpt/crypto/rsa-pss-crash.any.worker.html [ Pass ]
# AVIF tests
fast/images/avif-image-decoding.html [ Pass ]
fast/images/avif-as-image.html [ Pass ]
fast/images/animated-avif.html [ Pass ]
http/tests/images/avif-partial-load-crash.html [ Pass ]
fast/text/emoji-gender-3.html [ Pass ]
fast/text/emoji-gender-4.html [ Pass ]
fast/text/emoji-gender-5.html [ Pass ]
fast/text/emoji-gender-6.html [ Pass ]
fast/text/emoji-gender-8.html [ Pass ]
fast/text/emoji-gender-9.html [ Pass ]
# Some Apple ports don't support RTL scrollbars.
fast/scrolling/rtl-scrollbars-elementFromPoint-static.html [ Pass ]
fast/scrolling/rtl-scrollbars-iframe-offset.html [ Pass ]
fast/scrolling/rtl-scrollbars-listbox-select-left.html [ Pass ]
fast/scrolling/rtl-scrollbars-listbox-select-right.html [ Pass ]
fast/scrolling/rtl-scrollbars-listbox-simple.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow-dir-rtl.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow-elementFromPoint.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow-padding.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow-position-absolute.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow-simple.html [ Pass ]
fast/scrolling/rtl-scrollbars-overflow.html [ Pass ]
fast/scrolling/rtl-scrollbars-positioned-intersect-scrollbars.html [ Pass ]
fast/scrolling/rtl-scrollbars-positioning.html [ Pass ]
fast/scrolling/rtl-scrollbars-simple.html [ Pass ]
fast/scrolling/rtl-scrollbars.html [ Pass ]
http/tests/storageAccess/ [ Pass ]
http/tests/storageAccess/deny-with-prompt-does-not-preserve-gesture.html [ Skip ]
webkit.org/b/208400 http/tests/storageAccess/has-storage-access-true-if-third-party-has-cookies-ephemeral.html [ Failure ]
webkit.org/b/172056 fast/text/multiglyph-characters.html [ Pass ]
imported/w3c/web-platform-tests/css/css-text/hyphens/hyphens-auto-001.html [ Pass ]
imported/mozilla/svg/blend-hard-light.svg [ Pass ]
imported/mozilla/svg/dynamic-textPath-02.svg [ Pass ]
imported/mozilla/svg/image/image-filter-01.svg [ Pass ]
inspector/page/setScreenSizeOverride.html [ Pass ]
# Content Extensions
http/tests/contentextensions [ Pass ]
http/tests/inspector/network/contentextensions [ Pass ]
fast/history/page-cache-indexed-closed-db.html [ Pass ]
fast/multicol/multicol-with-child-renderLayer-for-input.html [ Pass ]
# permessage-deflate WebSocket extension.
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-comp-bit-onoff.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-invalid-parameter.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-parameter.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-set-bfinal.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-split-frames.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-unsolicited-negotiation-response.html [ Pass ]
http/tests/websocket/tests/hybi/imported/blink/permessage-deflate-window-bits.html [ Pass ]
# Custom GLIB baseline with different FAIL message from other ports
webkit.org/b/222020 imported/w3c/web-platform-tests/html/canvas/element/fill-and-stroke-styles/2d.pattern.image.broken.html [ Pass ]
imported/w3c/web-platform-tests/css/css-display/display-contents-button.html [ Pass ]
imported/w3c/web-platform-tests/css/css-flexbox/flex-aspect-ratio-img-column-017.html [ Pass ]
imported/w3c/web-platform-tests/css/css-flexbox/flex-aspect-ratio-img-row-013.html [ Pass ]
imported/w3c/web-platform-tests/css/css-flexbox/select-element-zero-height-001.html [ Pass ]
imported/w3c/web-platform-tests/css/css-flexbox/table-as-item-auto-min-width.html [ Pass ]
imported/w3c/web-platform-tests/css/css-flexbox/table-as-item-fixed-min-width.html [ Pass ]
imported/w3c/web-platform-tests/css/css-images/multiple-position-color-stop-conic.html [ Pass ]
imported/w3c/web-platform-tests/css/css-lists/content-property/marker-text-matches-lower-greek.html [ Pass ]
imported/w3c/web-platform-tests/css/css-lists/content-property/marker-text-matches-lower-latin.html [ Pass ]
imported/w3c/web-platform-tests/css/css-lists/counter-increment-inside-display-contents.html [ Pass ]
imported/w3c/web-platform-tests/css/css-lists/counter-reset-inside-display-contents.html [ Pass ]
imported/w3c/web-platform-tests/css/css-pseudo/first-letter-002.html [ Pass ]
imported/w3c/web-platform-tests/css/css-pseudo/first-letter-003.html [ Pass ]
imported/w3c/web-platform-tests/css/css-scoping/stylesheet-title-001.html [ Pass ]
imported/w3c/web-platform-tests/css/css-sizing/aspect-ratio/intrinsic-size-005.html [ Pass ]
imported/w3c/web-platform-tests/css/css-sizing/aspect-ratio/parsing/aspect-ratio-invalid.html [ Pass ]
imported/w3c/web-platform-tests/css/css-ui/text-overflow-012.html [ Pass ]
# Passing since r260062.
imported/w3c/web-platform-tests/css/css-shapes/spec-examples/shape-outside-018.html [ Pass ]
# css-values passing for us.
imported/w3c/web-platform-tests/css/css-values/ch-unit-003.html [ Pass ]
imported/w3c/web-platform-tests/css/css-values/ch-unit-004.html [ Pass ]
imported/w3c/web-platform-tests/css/css-values/ch-unit-010.html [ Pass ]
imported/w3c/web-platform-tests/css/css-values/ch-unit-012.html [ Pass ]
# Test passing since added in r258661.
imported/w3c/web-platform-tests/css/css-writing-modes/baseline-with-orthogonal-flow-001.html [ Pass ]
imported/w3c/web-platform-tests/css/css-writing-modes/ch-units-vrl-007.html [ Pass ]
imported/w3c/web-platform-tests/css/css-writing-modes/ch-units-vrl-008.html [ Pass ]
imported/w3c/web-platform-tests/css/css-writing-modes/mongolian-orientation-001.html [ Pass ]
imported/w3c/web-platform-tests/css/css-writing-modes/mongolian-orientation-002.html [ Pass ]
imported/w3c/web-platform-tests/css/selectors/selector-placeholder-shown-type-change-001.html [ Pass ]
imported/w3c/web-platform-tests/css/selectors/selector-placeholder-shown-type-change-002.html [ Pass ]
imported/w3c/web-platform-tests/css/selectors/selector-placeholder-shown-type-change-003.html [ Pass ]
imported/w3c/web-platform-tests/css/selectors/selector-read-write-type-change-002.html [ Pass ]
imported/w3c/web-platform-tests/css/selectors/selector-required-type-change-002.html [ Pass ]
imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/form-controls/select-sizing-001.html [ Pass ]
imported/w3c/web-platform-tests/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-vertical.html [ Pass ]
imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/sizes/sizes-dynamic-002.html [ Pass ]
imported/w3c/web-platform-tests/compat/webkit-box-rtl-flex.html [ Pass ]
# Tests that timeout on Apple platforms.
webkit.org/b/185859 imported/w3c/web-platform-tests/css/selectors/focus-visible-002.html [ Pass ]
webkit.org/b/185859 imported/w3c/web-platform-tests/css/selectors/focus-visible-003.html [ Pass ]
webkit.org/b/185859 imported/w3c/web-platform-tests/css/selectors/focus-visible-004.html [ Pass ]
# These tests are expected to fail with GPU process and on Mac, but pass on GTK and WPE
webkit.org/b/221951 fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565.html [ Pass ]
webkit.org/b/221951 fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444.html [ Pass ]
webkit.org/b/221951 fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551.html [ Pass ]
webkit.org/b/221951 fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html [ Pass ]
# These tests are expected to fail with GPU process and on Mac, but pass on GTK and WPE
http/tests/media/hls/hls-progress.html [ Pass ]
http/tests/media/media-document-referer.html [ Pass ]
http/tests/media/media-document.html [ Pass ]
http/tests/media/media-play-stream-chunked-icy.html [ Pass ]
http/tests/media/video-auth-with-allowCrossOriginSubresourcesToAskForCredentials.html [ Pass ]
http/tests/media/video-auth.html [ Pass ]
http/tests/media/video-no-content-length-stall.html [ Pass ]
http/tests/media/video-query-url.html [ Pass ]
http/tests/security/canvas-remote-read-remote-video-blocked-no-crossorigin.html [ Pass ]
http/tests/security/canvas-remote-read-remote-video-redirect.html [ Pass ]
http/tests/security/contentSecurityPolicy/audio-redirect-allowed.html [ Pass ]
http/tests/security/contentSecurityPolicy/video-redirect-allowed.html [ Pass ]
http/tests/security/video-cross-origin-caching.html [ Pass ]
media/media-can-play-webm.html [ Pass ]
media/media-controller-time-constant.html [ Pass ]
media/media-controller-time.html [ Pass ]
media/media-controller-unpause.html [ Pass ]
media/mediacapabilities/mediacapabilities-types.html [ Pass ]
media/video-canvas-createPattern.html [ Pass ]
media/video-canvas-drawing-output.html [ Pass ]
media/video-controller-currentTime-rate.html [ Pass ]
webaudio/codec-tests/aac/vbr-128kbps-44khz.html [ Pass ]
webaudio/codec-tests/mp3/128kbps-44khz.html [ Pass ]
# Passing since updated in r272644
imported/w3c/web-platform-tests/css/css-flexbox/flexbox_justifycontent-center-overflow.html
# Pass since r273206
imported/w3c/web-platform-tests/css/css-sizing/range-percent-intrinsic-size-2.html
imported/w3c/web-platform-tests/css/css-sizing/range-percent-intrinsic-size-2a.html
# Passing since r274620.
imported/w3c/web-platform-tests/css/css-contain/contain-paint-008.html [ Pass ]
# Passsing since r274721.
imported/w3c/web-platform-tests/css/css-flexbox/select-element-zero-height-002.html [ Pass ]
# The test is marked as Timeout for wk2. It has been flaky in GTK and WPE since added.
webaudio/Panner/hrtf-database.html [ Timeout Pass ]
webaudio/Panner/panner-loop.html [ Timeout Pass ]
# CSS backgrounds. Passing after WPT re-import in r277073.
imported/w3c/web-platform-tests/css/css-backgrounds/background-size-percentage-root.html [ Pass ]
imported/w3c/web-platform-tests/css/css-backgrounds/bg-color-with-gradient.html [ Pass ]
imported/w3c/web-platform-tests/css/css-backgrounds/box-shadow-overlapping-001.html [ Pass ]
imported/w3c/web-platform-tests/css/css-backgrounds/css3-border-image-repeat-repeat.html [ Pass ]
# Conic gradient. Marked as failure in root expectations
webkit.org/b/225916 imported/w3c/web-platform-tests/css/css-images/conic-gradient-angle.html [ Pass ]
imported/w3c/web-platform-tests/fetch/http-cache/basic-auth-cache-test.html [ Pass ]
# GLIB PASS since 238591@main
webkit.org/b/203531 imported/w3c/web-platform-tests/css/css-text-decor/text-decoration-propagation-shadow.html [ Pass ]
# GLIB PASS since 239765@main
webkit.org/b/214463 imported/w3c/web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-007.html [ Pass ]
webkit.org/b/214463 imported/w3c/web-platform-tests/css/css-sizing/intrinsic-percent-replaced-dynamic-005.html [ Pass ]
# GLIB PASS since 238990@main
webkit.org/b/206881 imported/w3c/web-platform-tests/css/css-fonts/font-variant-east-asian.html [ Pass ]
# GLIB PASS since 240265@main
imported/w3c/web-platform-tests/css/css-images/multiple-position-color-stop-radial.html [ Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of PASSING tests.
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Accessibility-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/212805 accessibility/svg-text.html [ Failure ]
# Added in r263823. Both tests are timing out.
webkit.org/b/213874 accessibility/keyevents-for-increment-actions-with-node-removal.html [ Skip ]
webkit.org/b/213874 accessibility/keyevents-posted-for-increment-actions.html [ Skip ]
webkit.org/b/213874 accessibility/keyevents-posted-for-dismiss-action.html [ Skip ]
webkit.org/b/199860 accessibility/button-with-aria-haspopup-role.html [ Failure ]
webkit.org/b/199860 accessibility/datalist.html [ Failure ]
webkit.org/b/133148 accessibility/content-editable-set-inner-text-generates-axvalue-notification.html [ Timeout ]
webkit.org/b/135530 accessibility/parent-delete.html [ Failure ]
webkit.org/b/137109 accessibility/legend-children-are-visible.html [ Failure ]
webkit.org/b/139352 accessibility/inline-block-assertion.html [ Failure ]
# Text marker tests are not supported
webkit.org/b/153292 accessibility/text-marker [ Skip ]
webkit.org/b/141072 accessibility/frame-disconnect-textmarker-cache-crash.html [ Skip ]
webkit.org/b/182107 accessibility/aria-combobox-control-owns-elements.html [ Timeout ]
webkit.org/b/98363 [ Release ] accessibility/canvas-fallback-content-2.html [ Failure ]
webkit.org/b/98372 accessibility/onclick-handlers.html [ Failure ]
webkit.org/b/98377 accessibility/textarea-insertion-point-line-number.html [ Failure ]
webkit.org/b/98380 accessibility/th-as-title-ui.html [ Failure ]
webkit.org/b/98382 accessibility/visible-elements.html [ Failure ]
webkit.org/b/209102 accessibility/accessibility-node-memory-management.html [ Failure ]
webkit.org/b/215405 accessibility/roles-computedRoleString.html [ Failure ]
webkit.org/b/215405 [ Release ] accessibility/roles-exposed.html [ Failure ]
webkit.org/b/215405 [ Debug ] accessibility/canvas-accessibilitynodeobject.html [ Crash ]
webkit.org/b/215405 [ Debug ] accessibility/canvas-fallback-content-2.html [ Crash ]
webkit.org/b/215405 [ Debug ] accessibility/canvas-fallback-content.html [ Crash ]
webkit.org/b/207711 [ Debug ] accessibility/roles-exposed.html [ Timeout ]
webkit.org/b/217260 accessibility/spinbutton-crash.html [ Failure ]
webkit.org/b/217801 accessibility/text-element-path.html [ Failure ]
# aria-braille* attributes are not implemented:
webkit.org/b/220719 accessibility/braille-label-role.html [ Failure ]
# Key events for AX actions seems to not be not being emitted
webkit.org/b/221022 accessibility/keyevents-for-actions-mimic-real-key-events.html [ Timeout ]
webkit.org/b/221447 accessibility/aria-current.html [ Failure ]
webkit.org/b/221447 accessibility/aria-current-state-changed-notification.html [ Timeout ]
webkit.org/b/221645 accessibility/aria-sort.html [ Failure ]
webkit.org/b/221645 accessibility/aria-sort-changed-notification.html [ Skip ]
webkit.org/b/228915 accessibility/selected-state-changed-notifications.html [ Timeout ]
# Not supported
accessibility/embedded-image-description.html [ Skip ]
# Not supported. Skipped also in mac-wk1 and win ports.
accessibility/nested-textareas-value-changed-notifications.html [ Skip ]
webkit.org/b/229261 accessibility/element-line-rects-and-text.html [ Missing ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Accessibility-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Cairo-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# End of Cairo-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Clipboard API
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/206653 imported/w3c/web-platform-tests/clipboard-apis/async-navigator-clipboard-basics.https.html [ Failure ]
webkit.org/b/211979 imported/w3c/web-platform-tests/clipboard-apis/async-raw-write-read.tentative.https.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Clipboard API
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Compositing tests
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/214417 [ Debug ] css3/color/composited-solid-backgrounds.html [ Crash ]
# Failures related with ENABLE_CSS_COMPOSITING=ON
webkit.org/b/169916 css3/blending/blend-mode-accelerated-parent-overflow-hidden.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-body-composited-child-background-color.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-body-composited-child.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-accelerated-blending-canvas.html [ Failure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-accelerated-blending-child.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-accelerated-blending-double.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-accelerated-blending-with-siblings.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-accelerated-transformed-blending.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-clip-rect-accelerated-blending.html [ ImageOnlyFailure ]
webkit.org/b/169916 css3/blending/blend-mode-isolated-group-1.html [ Missing Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolated-group-2.html [ Missing Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolated-group-3.html [ Missing Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolation-turn-off-self-painting-layer1.html [ Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolation-turn-off-self-painting-layer2.html [ Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolation-turn-off-self-painting-layer.html [ Failure ]
webkit.org/b/169916 css3/blending/blend-mode-isolation-turn-on-self-painting-layer.html [ Failure ]
webkit.org/b/169916 css3/blending/blend-mode-layers.html [ Missing Failure ]
webkit.org/b/169916 css3/blending/blend-mode-reflection.html [ Missing Failure ]
webkit.org/b/169916 css3/blending/blend-mode-simple-composited.html [ Missing Failure ]
webkit.org/b/169916 imported/blink/css3/blending/mix-blend-mode-with-squashing-layer.html [ ImageOnlyFailure ]
webkit.org/b/222844 imported/blink/compositing/draws-content/webgl-simple-background.html [ ImageOnlyFailure Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Compositing tests
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Crypto tests
#////////////////////////////////////////////////////////////////////////////////////////
# These are failures that will be enabled once the relevant parts of implementation land.
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-export-key-jwk-length-128.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-export-key-jwk-length-192.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-export-key-jwk-length-256.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-export-raw-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-key-encrypt-decrypt.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-generate-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-jwk-key-length-128.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-jwk-key-length-192.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-jwk-key-length-256.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-decrypt.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-encrypt.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-unwrap-jwk-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-unwrap-raw-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-wrap-jwk-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-key-wrap-raw-key.html [ Skip ]
webkit.org/b/133122 crypto/subtle/aes-cfb-import-raw-key.html [ Skip ]
webkit.org/b/133122 crypto/workers/subtle/aes-cfb-import-key-decrypt.html [ Skip ]
webkit.org/b/133122 crypto/workers/subtle/aes-cfb-import-key-encrypt.html [ Skip ]
webkit.org/b/133122 crypto/workers/subtle/aes-cfb-import-key-unwrap-key.html [ Skip ]
webkit.org/b/133122 crypto/workers/subtle/aes-cfb-import-key-wrap-key.html [ Skip ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Crypto tests
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# CSS-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/206589 fast/box-shadow/inset-box-shadow-fractional-radius.html [ ImageOnlyFailure ]
webkit.org/b/212300 fast/text/font-collection-2.html [ ImageOnlyFailure ]
webkit.org/b/213114 fast/flexbox/line-clamp-with-anchor-content-only.html [ ImageOnlyFailure ]
# fast/gradients are Skip in the top level Expectation. When fixing, change this to
# Pass instead of removing this line.
webkit.org/b/214259 fast/gradients/conic-gradient-alpha.html [ ImageOnlyFailure ]
webkit.org/b/169988 css3/filters/backdrop/backdrop-filter-with-border-radius-and-reflection-add.html [ ImageOnlyFailure ]
webkit.org/b/169988 css3/filters/backdrop/backdrop-filter-with-border-radius-and-reflection.html [ ImageOnlyFailure ]
webkit.org/b/214682 imported/w3c/web-platform-tests/css/cssom/stylesheet-same-origin.sub.html [ Pass Failure ]
webkit.org/b/216853 css3/font-synthesis-small-caps.html [ ImageOnlyFailure ]
# Skipped in root TestExpectations for Debug config.
webkit.org/b/209330 [ Release ] imported/w3c/web-platform-tests/css/css-cascade/all-prop-initial-xml.html [ Failure ]
webkit.org/b/221308 [ Debug ] fast/selectors/matches-backtracking.html [ Timeout ]
webkit.org/b/221308 [ Debug ] fast/selectors/is-backtracking.html [ Timeout ]
webkit.org/b/223252 imported/w3c/web-platform-tests/css/css-contain/contain-size-grid-003.html [ Failure ]
webkit.org/b/223252 imported/w3c/web-platform-tests/css/css-contain/contain-size-grid-004.html [ Failure ]
webkit.org/b/228920 imported/w3c/web-platform-tests/css/css-overflow/clip-006.html [ ImageOnlyFailure ]
webkit.org/b/228920 imported/w3c/web-platform-tests/css/css-overflow/clip-007.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-001.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-002.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-003.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-004.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-005.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-006.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-007.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-008.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-00B.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-00C.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-00E.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-00F.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-010.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-011.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-012.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-013.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-014.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-015.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-016.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-017.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-018.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-019.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01A.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01B.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01C.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01D.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01E.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-01F.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-07F.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-080.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-081.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-082.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-083.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-084.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-085.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-086.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-087.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-088.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-089.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08A.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08B.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08C.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08D.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08E.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-08F.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-090.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-091.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-092.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-093.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-094.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-095.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-096.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-097.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-098.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-099.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09A.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09B.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09C.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09D.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09E.html [ ImageOnlyFailure ]
webkit.org/b/229389 imported/w3c/web-platform-tests/css/css-text/white-space/control-chars-09F.html [ ImageOnlyFailure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of CSS-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Events-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
# Times out due to missing event 'callAfterScrollingCompletes'.
webkit.org/b/212202 fast/events/wheel/platform-wheelevent-in-scrolling-div.html [ Skip ]
webkit.org/b/212202 fast/events/wheel/redispatched-wheel-event.html [ Skip ]
webkit.org/b/218931 fast/events/wheel/first-wheel-event-cancelable.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-event-listeners-on-body-made-passive.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-event-listeners-on-document-made-passive.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-event-listeners-on-window-left-active.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-event-listeners-on-window-made-passive.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-event-in-passive-region-non-cancelable.html [ Timeout ]
webkit.org/b/218931 fast/events/wheel/wheel-events-become-non-cancelable.html [ Timeout ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Events-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Fonts-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
# Missing support for COLR/CPAL fonts.
webkit.org/b/218372 fast/text/canvas-color-fonts/COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/fill-color-shadow-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/fill-color-shadow-ctm-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/linedash-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/stroke-color-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/stroke-color-shadow-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/stroke-color-shadow-ctm-COLR.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/stroke-gradient-COLR-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 fast/text/canvas-color-fonts/stroke-gradient-COLR-4.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/ctm-sbix-2.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/ctm-sbix-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/ctm-sbix-4.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-color-sbix-2.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-color-sbix-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-color-sbix-4.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-color-shadow-ctm-sbix.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-color-shadow-sbix.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-gradient-sbix-2.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-gradient-sbix-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/fill-gradient-sbix-4.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-color-sbix.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-color-shadow-ctm-sbix.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-color-shadow-sbix.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-gradient-sbix-2.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-gradient-sbix-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/stroke-gradient-sbix-4.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/text-sbix-2.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/text-sbix-3.html [ ImageOnlyFailure ]
webkit.org/b/218372 http/tests/canvas/color-fonts/text-sbix-4.html [ ImageOnlyFailure ]
# system-ui support
webkit.org/b/221445 fast/text/system-font-width-2.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-3.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-4.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-6.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-7.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-8.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width-9.html [ Skip ]
webkit.org/b/221445 fast/text/system-font-width.html [ Skip ]
webkit.org/b/221445 fast/text/international/system-language/jp-circled.html [ Skip ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Fonts-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# GStreamer-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/79203 fast/mediastream/RTCPeerConnection-iceconnectionstatechange-event.html [ Timeout ]
webkit.org/b/79203 fast/mediastream/RTCRtpSender-replaceTrack.html [ Failure ]
webkit.org/b/187603 fast/mediastream/media-stream-track-source-failure.html [ Timeout Failure Pass ]
webkit.org/b/223508 imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Failure Pass ]
webkit.org/b/218317 media/media-source/media-source-trackid-change.html [ Failure ]
webkit.org/b/211995 fast/images/animated-image-mp4.html [ Failure Timeout ]
webkit.org/b/211995 fast/images/animated-image-mp4-crash.html [ Timeout Pass ]
webkit.org/b/214038 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-cues-cuechange.html [ Missing Failure ]
webkit.org/b/217845 imported/w3c/web-platform-tests/webaudio/the-audio-api/the-stereopanner-interface/no-dezippering.html [ Failure ]
webkit.org/b/218321 imported/w3c/web-platform-tests/webaudio/the-audio-api/the-convolvernode-interface/active-processing.https.html [ Pass Timeout Failure ]
# Needs to process results in order.
webkit.org/b/179258 fast/canvas/webgl/texImage2D-mse-flipY-false.html [ Timeout ]
webkit.org/b/179258 fast/canvas/webgl/texImage2D-mse-flipY-true.html [ Timeout ]
# MSE failures
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/URL-createObjectURL-revoke.html [ Failure ]
# Need changes in the demuxers and AppendPipeline to enable aborts not followed by an initialization segment:
webkit.org/b/228820 media/media-source/media-mp4-h264-partial-abort.html [ Failure ]
webkit.org/b/228820 media/media-source/media-webm-opus-partial-abort.html [ Failure ]
webkit.org/b/224767 imported/w3c/web-platform-tests/media-source/mediasource-changetype-play-implicit.html [ Crash Pass ]
# See also bug #175578.
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-avtracks.html [ Failure ]
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-buffered.html [ Failure ]
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-changetype.html [ Failure Crash ]
# Crash is webkit.org/b/176020.
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-duration.html [ Failure ]
# Crash in bug #176019.
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-endofstream.html [ Failure ]
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-errors.html [ Failure ]
webkit.org/b/210486 imported/w3c/web-platform-tests/media-source/mediasource-correct-frames-after-reappend.html [ Failure Crash Pass ]
webkit.org/b/180803 imported/w3c/web-platform-tests/media-source/mediasource-duration-boundaryconditions.html [ Failure ]
webkit.org/b/226804 imported/w3c/web-platform-tests/media-source/mediasource-changetype-play.html [ Failure ]
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-trackdefaultlist.html [ Failure ]
webkit.org/b/210341 media/media-source/media-mp4-h264-sequence-mode.html [ Failure ]
webkit.org/b/210342 imported/w3c/web-platform-tests/media-source/mediasource-sourcebuffer-trackdefaults.html [ Failure ]
webkit.org/b/167108 imported/w3c/web-platform-tests/media-source/mediasource-trackdefault.html [ Failure ]
webkit.org/b/146720 media/accessiblity-describes-video.html [ Failure ]
# Tests failing with GStreamer 1.6.3
webkit.org/b/154390 http/tests/media/hls/video-controller-getStartDate.html [ Timeout Failure ]
webkit.org/b/154390 http/tests/media/hls/hls-audio-tracks-locale-selection.html [ Timeout Failure ]
webkit.org/b/199617 http/tests/media/hls/hls-video-resize.html [ Skip ]
webkit.org/b/227258 media/media-source/media-source-seek-unbuffered.html [ Timeout ]
webkit.org/b/227661 http/tests/media/hls/hls-webvtt-seek-backwards.html [ Timeout ]
webkit.org/b/227934 media/media-source/media-webm-vorbis-partial.html [ Failure ]
webkit.org/b/227934 media/media-source/media-webm-opus-partial.html [ Failure ]
webkit.org/b/229761 http/tests/media/media-stream/audio-capture-and-category.https.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of GStreamer-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# HiDPI-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/208181 fast/hidpi/filters-and-image-buffer-resolution.html [ ImageOnlyFailure Pass ]
webkit.org/b/213293 fast/images/hidpi-image-position-on-device-pixels-with-border-radius.html [ ImageOnlyFailure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of HiDPI-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# HTTP-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/214797 http/tests/images/jpeg-partial-load.html [ ImageOnlyFailure Timeout Crash Pass ]
webkit.org/b/214798 http/tests/images/image-supports-video.html [ Timeout Pass ]
webkit.org/b/207723 http/tests/contentextensions/hide-on-ping-with-ping-that-redirects.html [ Pass Failure ]
webkit.org/b/217961 http/tests/images/mp4-partial-load.html [ Timeout Pass ]
webkit.org/b/224109 http/tests/privateClickMeasurement/store-private-click-measurement-with-source-nonce.html [ Failure Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of HTTP-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# IndexedDB-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/184569 storage/indexeddb/modern/transactions-stop-on-navigation.html [ Failure Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of IndexedDB-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# JavaScriptCore-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# End of JavaScriptCore-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# MathML-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/215217 [ Debug ] mathml/opentype/munderover-layout-resize.html [ Crash ]
webkit.org/b/215217 [ Debug ] mathml/presentation/mo-invisible.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-largeop-003.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-largeop-004.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-largeop-005.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-largeop-006.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-movablelimits-003.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-movablelimits-004.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-movablelimits-005.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-movablelimits-006.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-spacing-003.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-spacing-004.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-spacing-005.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-spacing-006.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-stretchy-003.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-stretchy-004.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-stretchy-005.html [ Crash ]
webkit.org/b/215217 [ Debug ] imported/w3c/web-platform-tests/mathml/presentation-markup/operators/operator-dictionary-stretchy-006.html [ Crash ]
webkit.org/b/216871 imported/w3c/web-platform-tests/mathml/relations/css-styling/color-004.tentative.html [ ImageOnlyFailure ]
webkit.org/b/227122 imported/w3c/web-platform-tests/mathml/relations/css-styling/padding-border-margin/margin-003.html [ Failure ]
webkit.org/b/224111 imported/w3c/web-platform-tests/mathml/presentation-markup/operators/mo-form-dynamic-002.html [ ImageOnlyFailure Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of MathML-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# OffscreenCanvas-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/203146 fast/canvas/offscreen-enabled.html [ Pass ]
webkit.org/b/203146 http/wpt/offscreen-canvas [ Pass ]
webkit.org/b/203146 imported/w3c/web-platform-tests/html/canvas/offscreen [ Pass ]
# Console log lines may appear in a different order so we silence them.
imported/w3c/web-platform-tests/html/canvas/offscreen/convert-to-blob/offscreencanvas.convert.to.blob.w.html [ DumpJSConsoleLogInStdErr ]
# OffscreenCanvas tests that are flaky due to console output from unhandled Promise rejections due to unimplemented API.
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.canvas.destination-atop.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.canvas.destination-in.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.canvas.lighter.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.globalAlpha.imagepattern.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.uncovered.pattern.copy.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.uncovered.pattern.destination-atop.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.uncovered.pattern.destination-in.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.uncovered.pattern.source-in.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/compositing/2d.composite.uncovered.pattern.source-out.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.3arg.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.animated.poster.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.broken.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.floatsource.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.image.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.crosscanvas.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.basic.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord1.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord2.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord3.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.outside.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.orientation.image.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.basic.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord2.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord3.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.outside.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.basic.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.coord1.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.outside.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.basic.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.coord1.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.outside.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.empty.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/shadows/2d.shadow.pattern.alpha.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/shadows/2d.shadow.pattern.basic.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/shadows/2d.shadow.pattern.transparent.1.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/209144 imported/w3c/web-platform-tests/html/canvas/offscreen/shadows/2d.shadow.pattern.transparent.2.html [ DumpJSConsoleLogInStdErr ]
# Tests requiring bitmaprenderer context support in OffscreenCanvas.
# Might need glib-specific baselines when actually fixed as the root expectations fail with missing OffscreenCanvas support.
webkit.org/b/197421 imported/w3c/web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen-with-alpha.html [ Failure ]
webkit.org/b/197421 imported/w3c/web-platform-tests/imagebitmap-renderingcontext/context-creation-offscreen.html [ Failure ]
webkit.org/b/197421 imported/w3c/web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-ToBlob-offscreen.html [ Failure ]
webkit.org/b/197421 imported/w3c/web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-TransferToImageBitmap-offscreen.html [ Failure ]
webkit.org/b/197421 imported/w3c/web-platform-tests/imagebitmap-renderingcontext/tranferFromImageBitmap-null-offscreen.html [ Failure ]
webkit.org/b/221311 [ Debug ] imported/w3c/web-platform-tests/html/canvas/offscreen/filter/offscreencanvas.filter.w.html [ Slow ]
webkit.org/b/221311 [ Debug ] imported/w3c/web-platform-tests/html/canvas/offscreen/manual/filter/offscreencanvas.filter.w.html [ Slow ]
# Failing since r277543.
webkit.org/b/225870 imported/w3c/web-platform-tests/html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.conic.worker.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of OffscreenCanvas-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# PageOverlay-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/152908 pageoverlay/overlay-installation.html [ Failure ]
webkit.org/b/152908 pageoverlay/overlay-large-document-scrolled.html [ Failure ]
webkit.org/b/152908 pageoverlay/overlay-large-document.html [ Failure ]
webkit.org/b/168501 pageoverlay/overlay-remove-reinsert-view.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of PageOverlay-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Perf-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/116960 perf/adding-radio-buttons.html [ Failure Pass ]
webkit.org/b/119040 perf/nested-combined-selectors.html [ Failure Pass ]
webkit.org/b/126523 perf/accessibility-title-ui-element.html [ Failure Pass ]
webkit.org/b/188101 perf/append-text-nodes-without-renderers.html [ Failure Pass ]
webkit.org/b/211837 perf/rel-list-remove.html [ Failure Pass ]
webkit.org/b/213520 perf/htmlcollection-backwards-iteration.html [ Pass Failure ]
webkit.org/b/218609 perf/clone-with-focus.html [ Failure Pass ]
webkit.org/b/224118 perf/array-reverse.html [ Failure Pass ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Perf-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# ResourceTiming API bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/224657 imported/w3c/web-platform-tests/service-workers/service-worker/next-hop-protocol.https.html [ Failure ]
webkit.org/b/227659 imported/w3c/web-platform-tests/resource-timing/same-origin-from-cross-origin-redirect.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of ResourceTiming API bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Scrolling-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/173412 fast/scrolling/overflow-scrollable-after-back.html [ Failure Pass ]
# Warning: this test is expected to fail in the global expectations file, but
# we expect it to Pass because we support RTL scrollbars. When fixed, it should
# not be removed, but moved to the expected passes section of this file.
webkit.org/b/186665 fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ ImageOnlyFailure Pass ]
webkit.org/b/213921 fast/visual-viewport/scroll-event-fired-during-scroll-alone.html [ Crash ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Scrolling-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Security-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/155196 security/contentSecurityPolicy/video-with-file-url-allowed-by-media-src-star-with-AllowContentSecurityPolicySourceStarToMatchAnyProtocol-enabled.html [ Pass ImageOnlyFailure ]
webkit.org/b/224626 http/tests/security/contentSecurityPolicy/report-only-connect-src-xmlhttprequest-redirect-to-blocked.py [ Failure Pass ]
# Sometimes there's an extra error message:
# - [Report Only] Refused to connect to http://localhost:8000/security/contentSecurityPolicy/resources/echo-report.py
# because it does not appear in the connect-src directive of the Content Security Policy.
http/tests/security/contentSecurityPolicy/report-only-from-header.py [ DumpJSConsoleLogInStdErr ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Security-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# SOUP and Networking-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
# The tests are crashing, timing out and passing. Mark as Skip for now.
webkit.org/b/177940 workers/wasm-hashset-many-2.html [ Skip ]
webkit.org/b/177940 workers/wasm-hashset-many.html [ Skip ]
webkit.org/b/177940 workers/wasm-hashset.html [ Skip ]
webkit.org/b/201981 http/wpt/service-workers/server-trust-evaluation.https.html [ Failure ]
webkit.org/b/201981 imported/w3c/web-platform-tests/service-workers/service-worker/fetch-canvas-tainting-image-cache.https.html [ Failure Pass ]
webkit.org/b/208369 http/tests/workers/service/basic-timeout.https.html [ Failure Timeout Pass ]
webkit.org/b/215638 http/tests/websocket/tests/hybi/invalid-continuation.html [ Failure ]
webkit.org/b/215638 http/tests/websocket/tests/hybi/stop-on-resume-in-error-handler.html [ Failure ]
webkit.org/b/217267 http/tests/contentextensions/service-worker.https.html [ Failure Pass ]
webkit.org/b/217267 http/tests/workers/service/service-worker-cache-api.https.html [ Failure Pass ]
webkit.org/b/217267 http/tests/workers/service/postmessage-after-sw-process-crash.https.html [ Timeout Pass ]
webkit.org/b/217267 http/wpt/service-workers/fetchEvent.https.html [ Failure Pass ]
webkit.org/b/217267 http/wpt/service-workers/file-upload.html [ Failure Pass ]
webkit.org/b/217267 http/wpt/service-workers/header-filtering.https.html [ Failure Pass ]
webkit.org/b/217267 http/wpt/service-workers/online.https.html [ Failure Pass ]
webkit.org/b/217267 http/wpt/service-workers/service-worker-spinning-activate.https.html [ Pass Failure ]
webkit.org/b/221239 [ Debug ] imported/w3c/web-platform-tests/fetch/api/redirect/redirect-empty-location.any.html [ Skip ]
webkit.org/b/221239 [ Debug ] imported/w3c/web-platform-tests/fetch/api/redirect/redirect-empty-location.any.worker.html [ Skip ]
webkit.org/b/185254 http/tests/xmlhttprequest/XMLHttpRequestException.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/185254 http/tests/xmlhttprequest/connection-error-sync.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/185254 http/tests/xmlhttprequest/onloadend-event-after-error.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/185254 http/tests/xmlhttprequest/onloadend-event-after-sync-requests.html [ DumpJSConsoleLogInStdErr ]
webkit.org/b/185254 http/tests/xmlhttprequest/response-access-on-error.html [ DumpJSConsoleLogInStdErr ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of SOUP and Networking-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# Streams-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/151949 streams/pipe-to.html [ Failure ]
#////////////////////////////////////////////////////////////////////////////////////////
# End of Streams-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
#////////////////////////////////////////////////////////////////////////////////////////
# SVG-related bugs
#////////////////////////////////////////////////////////////////////////////////////////
webkit.org/b/213113 svg/filters/feConvolveMatrix-clipped.svg [ ImageOnlyFailure ]
webkit.org/b/213113 svg/filters/feGaussianBlur-clipped.svg [ ImageOnlyFailure ]
webkit.org/b/213782 svg/custom/object-sizing-explicit-width.xhtml [ Failure Pass ]
webkit.org/b/131354 imported/mozilla/svg/blend-saturation.svg [ ImageOnlyFailure ]
webkit.org/b/189739 svg/gradients/spreadMethodClose2.svg [ ImageOnlyFailure ]
webkit.org/b/189739 imported/mozilla/svg/linearGradient-basic-03.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-nested-clip-path-006.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-nested-clip-path-007.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-nested-clip-path-008.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-nested-clip-path-009.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-nested-clip-path-010.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-objectboundingbox-content-clip-transform.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-objectboundingbox-content-clip.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-userspaceonuse-content-clip-transform.svg [ ImageOnlyFailure ]
webkit.org/b/129958 svg/clip-path/mask-userspaceonuse-content-clip.svg [ ImageOnlyFailure ]