TestExpectations 562 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975
  1. # tags: [ Fuchsia Linux Mac Mac10.13 Mac10.14 Mac10.15 Mac11 Mac11-arm64 Mac12 Mac12-arm64 Win Win10.20h2 Win11 ]
  2. # tags: [ Release Debug ]
  3. # results: [ Timeout Crash Pass Failure Skip ]
  4. # This is the main failure suppression file for Blink LayoutTests.
  5. # Further documentation:
  6. # https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_test_expectations.md
  7. # Intentional failures to test the layout test system.
  8. harness-tests/crash.html [ Crash ]
  9. harness-tests/timeout.html [ Timeout ]
  10. fast/harness/sample-fail-mismatch-reftest.html [ Failure ]
  11. # Expected to fail.
  12. external/wpt/infrastructure/reftest/legacy/reftest_and_fail_0-ref.html [ Failure ]
  13. external/wpt/infrastructure/reftest/legacy/reftest_cycle_fail_0-ref.html [ Failure ]
  14. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-0.html [ Failure ]
  15. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-1.html [ Failure ]
  16. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-4.html [ Failure ]
  17. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-5.html [ Failure ]
  18. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-6.html [ Failure ]
  19. external/wpt/infrastructure/reftest/reftest_match_and_mismatch-7.html [ Failure ]
  20. external/wpt/infrastructure/reftest/reftest_match_fail.html [ Failure ]
  21. external/wpt/infrastructure/reftest/reftest_mismatch_fail.html [ Failure ]
  22. external/wpt/infrastructure/reftest/reftest_multiple_mismatch-0.html [ Failure ]
  23. external/wpt/infrastructure/reftest/reftest_multiple_mismatch-1.html [ Failure ]
  24. accessibility/slot-poison.html [ Failure ]
  25. # Expected to time out.
  26. external/wpt/infrastructure/expected-fail/timeout.html [ Timeout ]
  27. external/wpt/infrastructure/reftest/reftest_ref_timeout.html [ Timeout ]
  28. external/wpt/infrastructure/reftest/reftest_timeout.html [ Timeout ]
  29. # We don't support extracting fuzzy information from .ini files, which these
  30. # WPT infrastructure tests rely on.
  31. crbug.com/997202 external/wpt/infrastructure/reftest/legacy/reftest_fuzzy_chain_ini.html [ Failure ]
  32. crbug.com/997202 external/wpt/infrastructure/reftest/legacy/fuzzy-ref-2.html [ Failure ]
  33. crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_full.html [ Failure ]
  34. crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_ref_only.html [ Failure ]
  35. crbug.com/997202 external/wpt/infrastructure/reftest/reftest_fuzzy_ini_short.html [ Failure ]
  36. # WPT HTTP/2 is not fully supported by run_web_tests.
  37. crbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=h2 [ Failure ]
  38. crbug.com/1048761 external/wpt/infrastructure/server/wpt-server-wpt-flags.sub.html?wpt_flags=https [ Failure ]
  39. # The following tests pass or fail depending on the underlying protocol (HTTP/1.1 vs HTTP/2).
  40. # The results of failures could be also different depending on the underlying protocol.
  41. crbug.com/1048761 external/wpt/websockets/constructor/002.html?wss [ Failure Pass ]
  42. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-connecting.html?wss [ Failure Pass ]
  43. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/close/close-nested.html?wss [ Failure Pass ]
  44. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/readyState/003.html?wss [ Failure Pass ]
  45. crbug.com/1048761 external/wpt/websockets/unload-a-document/002.html?wss [ Failure Pass ]
  46. # Tests are flaky after a WPT import
  47. crbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/abort.any.html?wpt_flags=h2 [ Failure Pass ]
  48. crbug.com/1204961 [ Mac10.14 ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2 [ Failure Pass ]
  49. # Flaking on WebKit Linux MSAN
  50. crbug.com/1207373 [ Linux ] external/wpt/uievents/order-of-events/mouse-events/mousemove-across.html [ Failure Pass ]
  51. crbug.com/1339285 [ Linux ] fast/loader/iframe-window-open-stealing-focus.html [ Failure Pass Timeout ]
  52. crbug.com/1339285 [ Mac ] fast/loader/iframe-window-open-stealing-focus.html [ Pass Timeout ]
  53. # WPT Test harness doesn't deal with finding an about:blank ref test
  54. crbug.com/1066130 external/wpt/infrastructure/assumptions/blank.html [ Failure ]
  55. crbug.com/807686 crbug.com/24182 jquery/manipulation.html [ Pass Timeout ]
  56. # The following tests need to remove the assumption that user activation is
  57. # available in child/sibling frames. This assumption doesn't hold with User
  58. # Activation v2 (UAv2).
  59. crbug.com/906791 external/wpt/fullscreen/api/element-ready-check-allowed-cross-origin-manual.sub.html [ Timeout ]
  60. # These two are left over from crbug.com/881040, I rebaselined them twice and
  61. # they continue to fail.
  62. crbug.com/881040 media/controls/lazy-loaded-style.html [ Failure Pass ]
  63. # With --enable-display-compositor-pixel-dump enabled by default, these three
  64. # tests fail. See crbug.com/887140 for more info.
  65. # TODO(crbug.com/1336161): Re-enable this test
  66. crbug.com/887140 virtual/hdr/color-jpeg-with-color-profile.html [ Skip ]
  67. # TODO(crbug.com/1336161): Re-enable this test
  68. crbug.com/887140 virtual/hdr/color-profile-video.html [ Skip ]
  69. # TODO(crbug.com/1336161): Re-enable this test
  70. crbug.com/887140 virtual/hdr/video-canvas-alpha.html [ Skip ]
  71. # Tested by paint/background/root-element-background-transparency.html for now.
  72. external/wpt/css/compositing/root-element-background-transparency.html [ Failure ]
  73. # ====== Synchronous, budgeted HTML parser tests from here ========================
  74. # See crbug.com/1254921 for details.
  75. # These tests either started failing outright, or became flaky, when the new HTML
  76. # parser was enabled. All of these are bugs/issues with the test itself.
  77. # Extra line info appears in the output in some cases.
  78. crbug.com/1254932 http/tests/preload/meta-csp.html [ Failure ]
  79. # Extra box in the output:
  80. crbug.com/1254933 css3/filters/filterRegions.html [ Failure ]
  81. # Script preloaded: No
  82. crbug.com/1254940 http/tests/security/contentSecurityPolicy/nonces/scriptnonce-redirect.html [ Failure ]
  83. # Test fails:
  84. crbug.com/1254942 http/tests/security/subresourceIntegrity/revalidation-failed-script.html [ Failure Pass ]
  85. crbug.com/1254942 http/tests/security/subresourceIntegrity/empty-after-revalidate-script.html [ Failure Pass ]
  86. # Two paint failures:
  87. crbug.com/1254943 paint/invalidation/overflow/resize-child-within-overflow.html [ Failure ]
  88. crbug.com/1254943 fast/events/hit-test-counts.html [ Failure ]
  89. # Image isn't present:
  90. crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr.html [ Failure Pass ]
  91. crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop.html [ Failure Pass ]
  92. crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop.html [ Failure Pass ]
  93. crbug.com/1254944 svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop.html [ Failure Pass ]
  94. # Fails flakily or times out
  95. crbug.com/1269536 [ Mac11 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]
  96. crbug.com/1269536 [ Mac12 ] svg/animations/dynamic-modify-transform-without-baseval.html [ Failure Pass Timeout ]
  97. # Unknown media state flakiness (likely due to layout occuring earlier than expected):
  98. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-candidate-insert-before.html [ Failure Pass ]
  99. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-audio-constructor.html [ Failure Pass ]
  100. 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 ]
  101. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source.html [ Failure Pass ]
  102. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause-networkState.html [ Failure Pass ]
  103. 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 ]
  104. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-remove-src.html [ Failure Pass ]
  105. 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 ]
  106. crbug.com/1254945 external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-set-src.html [ Failure Pass ]
  107. # ====== Synchronous, budgeted HTML parser tests to here ========================
  108. # ====== Timed HTML parser budget tests from here ========================
  109. # See crbug.com/1342718 for details.
  110. # These tests either started failing outright, or became flaky, when the HTML
  111. # parser switched to using a time based budget instead of a token based budget.
  112. # All of these are bugs/issues with the test itself.
  113. crbug.com/1341693 [ Linux ] external/wpt/dom/nodes/MutationObserver-document.html [ Skip ]
  114. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-load.html [ Failure Pass ]
  115. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-pause.html [ Failure Pass ]
  116. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-play.html [ Failure Pass ]
  117. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-source.html [ Failure Pass ]
  118. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-remove-src.html [ Failure Pass ]
  119. crbug.com/1339293 external/wpt/content-security-policy/media-src/media-src-7_1_2.sub.html [ Skip ]
  120. crbug.com/1339293 [ Linux ] external/wpt/content-security-policy/media-src/media-src-blocked.sub.html [ Failure Pass Timeout ]
  121. crbug.com/1339293 [ Linux ] fast/frames/empty-frame-src.html [ Failure Pass ]
  122. crbug.com/1339293 [ Linux ] fast/frames/frame-scrolling-attribute.html [ Failure Pass ]
  123. crbug.com/1339293 [ Linux ] media/controls/rotated-video-has-right-panel-width.html [ Failure Pass ]
  124. crbug.com/1339293 [ Linux ] media/media-controls-overflow-hidden.html [ Failure Pass ]
  125. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/scripting-1/the-script-element/execution-timing/029.html [ Failure Pass ]
  126. crbug.com/1351106 [ Linux ] fast/frames/invalid-cols-rows-value.html [ Failure Pass ]
  127. # ====== Timed HTML parser budget tests to here ========================
  128. crbug.com/1197502 [ Win ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass ]
  129. # ====== Site Isolation failures from here ======
  130. # See also third_party/blink/web_tests/virtual/not-site-per-process/README.md
  131. # Tests temporarily disabled with Site Isolation - uninvestigated bugs:
  132. # TODO(lukasza, alexmos): Burn down this list.
  133. crbug.com/949003 http/tests/printing/cross-site-frame-scrolled.html [ Failure Pass ]
  134. crbug.com/949003 http/tests/printing/cross-site-frame.html [ Failure Pass ]
  135. # ====== Site Isolation failures until here ======
  136. # ====== Oilpan-only failures from here ======
  137. # Most of these actually cause the tests to report success, rather than
  138. # failure. Expected outputs will be adjusted for the better once Oilpan
  139. # has been well and truly enabled always.
  140. # ====== Oilpan-only failures until here ======
  141. # ====== Paint team owned tests from here ======
  142. # The paint team tracks and triages its test failures, and keeping them colocated
  143. # makes tracking much easier.
  144. # Covered directories are:
  145. # compositing except compositing/animations
  146. # hittesting
  147. # images, css3/images,
  148. # paint
  149. # svg
  150. # canvas, fast/canvas
  151. # transforms
  152. # display-lock
  153. # document-transition
  154. # Some additional bugs that are caused by painting problems are also within this section.
  155. # The tests happened to pass with two bugs canceled each other. Now they fail
  156. # with the first bug fixed. Will be fixed when the second bug is fixed (crrev.com/c/3752748).
  157. crbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor-iframe.html [ Failure ]
  158. crbug.com/881555 external/wpt/css/css-position/sticky/position-sticky-fixed-ancestor.html [ Failure ]
  159. # --- CanvasFormattedText tests ---
  160. # Fails on linux-rel even though actual and expected appear the same.
  161. crbug.com/1176933 [ Linux ] virtual/gpu/fast/canvas/canvas-formattedtext-2.html [ Skip ]
  162. # --- END CanvasFormattedText tests
  163. # These tests block fixes done in V8. The tests run on the V8 bots as well.
  164. crbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.html [ Failure Pass ]
  165. crbug.com/v8/12227 external/wpt/wasm/jsapi/interface.any.worker.html [ Failure Pass ]
  166. crbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.html [ Failure Pass ]
  167. crbug.com/v8/12227 external/wpt/wasm/jsapi/idlharness.any.worker.html [ Failure Pass ]
  168. # --- Skia roll test suppressions
  169. # --- END Skia roll test suppresions
  170. # Sheriff on 2020-09-03
  171. crbug.com/1124352 media/picture-in-picture/clear-after-request.html [ Crash Pass ]
  172. crbug.com/1124352 media/picture-in-picture/controls/picture-in-picture-button.html [ Crash Pass ]
  173. crbug.com/1124352 media/picture-in-picture/picture-in-picture-interstitial.html [ Crash Pass ]
  174. crbug.com/1124352 external/wpt/picture-in-picture/css-selector.html [ Crash Pass ]
  175. crbug.com/1124352 external/wpt/picture-in-picture/exit-picture-in-picture.html [ Crash Pass ]
  176. crbug.com/1124352 external/wpt/picture-in-picture/picture-in-picture-element.html [ Crash Pass ]
  177. crbug.com/1124352 external/wpt/picture-in-picture/shadow-dom.html [ Crash Pass ]
  178. crbug.com/1174965 [ Mac ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDtlsTransport-state.html [ Failure Pass ]
  179. # These tests require portals, and some require cross-origin portals.
  180. # Keep this in sync with VirtualTestSuites.
  181. crbug.com/1093466 external/wpt/fetch/metadata/portal.https.sub.html [ Skip ]
  182. crbug.com/1093466 external/wpt/portals/* [ Skip ]
  183. crbug.com/1093466 http/tests/devtools/portals/* [ Skip ]
  184. crbug.com/1093466 http/tests/inspector-protocol/portals/* [ Skip ]
  185. crbug.com/1093466 http/tests/portals/* [ Skip ]
  186. crbug.com/1093466 wpt_internal/portals/* [ Skip ]
  187. crbug.com/1093466 virtual/portals/external/wpt/fetch/metadata/portal.https.sub.html [ Pass ]
  188. crbug.com/1093466 virtual/portals/external/wpt/portals/* [ Pass ]
  189. crbug.com/1093466 virtual/portals/http/tests/devtools/portals/* [ Pass ]
  190. crbug.com/1093466 virtual/portals/http/tests/inspector-protocol/portals/* [ Pass ]
  191. crbug.com/1093466 virtual/portals/http/tests/portals/* [ Pass ]
  192. crbug.com/1093466 virtual/portals/wpt_internal/portals/* [ Pass ]
  193. # These tests require fenced-frames
  194. # Keep this in sync with VirtualTestSuites.
  195. crbug.com/1123606 wpt_internal/fenced_frame/* [ Skip ]
  196. crbug.com/1123606 http/tests/fenced_frame/* [ Skip ]
  197. crbug.com/1123606 virtual/fenced-frame-shadow-dom/* [ Pass ]
  198. crbug.com/1123606 virtual/fenced-frame-mparch/* [ Pass ]
  199. # These fail due to subtle anti-aliasing differences cause by the fact that
  200. # <canvas> renders via IOSurface and OffscreenCanvas does not.
  201. crbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-2d-gradients-in-worker.html [ Failure ]
  202. crbug.com/1311760 [ Mac ] virtual/oopr-canvas2d/fast/canvas/OffscreenCanvas-paths-in-worker.html [ Failure ]
  203. # Offscreen canvas tests that are flaky because sometimes the image is not rendered in time
  204. # See crbug.com/1315650
  205. crbug.com/1322089 virtual/gpu/fast/canvas/OffscreenCanvas-MessageChannel-transfer.html [ Failure Pass ]
  206. # These tests require shared-storage and fenced-frames
  207. # Keep this in sync with VirtualTestSuites.
  208. crbug.com/1218540 wpt_internal/shared_storage/* [ Skip ]
  209. crbug.com/1218540 external/wpt/shared-storage/* [ Skip ]
  210. crbug.com/1218540 virtual/shared-storage-fenced-frame-mparch/* [ Pass ]
  211. crbug.com/1218540 virtual/shared-storage-fenced-frame-shadow-dom/* [ Pass ]
  212. # These tests require the experimental prerender feature.
  213. # See https://crbug.com/1126305.
  214. crbug.com/1126305 external/wpt/speculation-rules/prerender/* [ Skip ]
  215. crbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/* [ Pass ]
  216. crbug.com/1126305 wpt_internal/prerender/* [ Skip ]
  217. crbug.com/1126305 virtual/prerender/wpt_internal/prerender/* [ Pass ]
  218. crbug.com/1126305 http/tests/inspector-protocol/prerender/* [ Skip ]
  219. crbug.com/1126305 virtual/prerender/http/tests/inspector-protocol/prerender/* [ Pass ]
  220. # These tests are tentatively disabled.
  221. crbug.com/1302831 virtual/prerender/external/wpt/speculation-rules/prerender/service-workers.https.html [ Failure Skip Timeout ]
  222. crbug.com/1302831 virtual/prerender/http/tests/inspector-protocol/prerender/prerender-ua-override.js [ Skip ]
  223. crbug.com/1302831 virtual/prerender/wpt_internal/prerender/restriction-web-auth.https.html [ Skip ]
  224. crbug.com/1302831 [ Mac10.14 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]
  225. crbug.com/1302831 [ Win10.20h2 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/eligibility/broadcast-channel.html [ Pass Timeout ]
  226. # These tests require the experimental speculative prefetch feature, and requires extra switches to enable content implementation of speculation rules prefetch.
  227. # This expectation and the virtual suite can be removed once that is enabled by default.
  228. crbug.com/1343590 external/wpt/speculation-rules/prefetch/* [ Skip ]
  229. crbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/* [ Pass ]
  230. crbug.com/1343590 virtual/prefetch/external/wpt/speculation-rules/prefetch/redirect-url.https.html [ Failure ]
  231. crbug.com/1343590 http/tests/inspector-protocol/prefetch/* [ Skip ]
  232. crbug.com/1343590 virtual/prefetch/http/tests/inspector-protocol/prefetch/* [ Pass ]
  233. # These tests are flaky with BFCache, which is enabled by default.
  234. crbug.com/1311546 http/tests/test-runner/back-forward.html [ Failure Pass ]
  235. # These tests require LazyEmbed, which is currently disabled by default.
  236. crbug.com/1247131 virtual/automatic-lazy-frame-loading/wpt_internal/lazyembed/* [ Pass ]
  237. crbug.com/1247131 wpt_internal/lazyembed/* [ Skip ]
  238. # Ref test with very minor differences. We need fuzzy matching for our ref tests,
  239. # or upstream this to WPT.
  240. crbug.com/1185506 svg/text/textpath-pattern.svg [ Failure Pass ]
  241. crbug.com/1225630 fast/multicol/infinite-height-causing-fractional-row-height-crash.html [ Skip ]
  242. crbug.com/1225630 fast/multicol/infinitely-tall-content-in-outer-crash.html [ Skip ]
  243. crbug.com/1225630 fast/multicol/insane-column-count-and-padding-nested-crash.html [ Skip ]
  244. crbug.com/807395 fast/multicol/mixed-opacity-test.html [ Failure ]
  245. crbug.com/1225630 fast/multicol/nested-very-tall-inside-short-crash.html [ Skip ]
  246. # Document transition tests
  247. crbug.com/1276999 document-transition/* [ Skip ]
  248. crbug.com/1316157 inspector-protocol/css/css-get-styles-for-document-transition.js [ Skip ]
  249. crbug.com/1276999 wpt_internal/document-transition/* [ Skip ]
  250. crbug.com/1276999 virtual/document-transition/* [ Pass ]
  251. crbug.com/1276999 virtual/document-transition-wide-gamut/* [ Pass ]
  252. crbug.com/1295280 virtual/document-transition/wpt_internal/document-transition/old-content-captures-opacity.html [ Failure ]
  253. crbug.com/1295281 virtual/document-transition/wpt_internal/document-transition/new-content-captures-different-size.html [ Failure ]
  254. crbug.com/1295281 virtual/document-transition/wpt_internal/document-transition/old-content-captures-different-size.html [ Failure ]
  255. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/new-content-captures-clip-path.html [ Failure ]
  256. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/content-with-transform-new-image.html [ Failure ]
  257. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
  258. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/new-content-captures-different-size.html [ Failure ]
  259. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/object-view-box-old-image.html [ Failure ]
  260. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/old-content-captures-different-size.html [ Failure ]
  261. crbug.com/1311705 virtual/document-transition-wide-gamut/wpt_internal/document-transition/old-content-captures-opacity.html [ Failure ]
  262. crbug.com/1351556 virtual/document-transition-wide-gamut/wpt_internal/document-transition/commit-timeout-crash.html [ Failure Timeout ]
  263. crbug.com/1351556 [ Win ] virtual/document-transition-wide-gamut/wpt_internal/document-transition/nothing-captured.html [ Failure Timeout ]
  264. crbug.com/1351556 [ Mac11 ] virtual/document-transition-wide-gamut/wpt_internal/document-transition/nothing-captured.html [ Failure Timeout ]
  265. crbug.com/1351556 [ Win ] virtual/document-transition/wpt_internal/document-transition/nothing-captured.html [ Failure Timeout ]
  266. crbug.com/1351556 [ Mac11 ] virtual/document-transition/wpt_internal/document-transition/nothing-captured.html [ Failure Timeout ]
  267. crbug.com/1351556 virtual/document-transition/document-transition/capture-callback-exception.html [ Failure ]
  268. crbug.com/1351556 virtual/document-transition-wide-gamut/document-transition/capture-callback-exception.html [ Failure ]
  269. ########## Ref tests can't be rebaselined ##########
  270. crbug.com/619103 paint/invalidation/background/background-resize-width.html [ Failure Pass ]
  271. crbug.com/784956 fast/history/frameset-repeated-name.html [ Failure Pass ]
  272. # These are both related to images not painting as expected, and are primarily CQ hidden flakes
  273. crbug.com/1284609 images/image-load-reset-on-new-base.html [ Failure Pass ]
  274. crbug.com/1271092 paint/invalidation/scroll/fixed-img-src-change-after-scroll.html [ Failure Pass ]
  275. ########## Genuinely flaky ##########
  276. crbug.com/624233 virtual/gpu-rasterization/images/color-profile-background-clip-text.html [ Failure Pass ]
  277. crbug.com/757605 virtual/gpu-rasterization/images/jpeg-yuv-progressive-image.html [ Failure Pass ]
  278. ########## Bugs to fix ##########
  279. # This is a missing event and increasing the timeout or using run-after-layout-and-paint doesn't
  280. # seem to fix it.
  281. crbug.com/309675 compositing/gestures/gesture-tapHighlight-simple-longPress.html [ Failure ]
  282. crbug.com/845267 [ Mac ] http/tests/inspector-protocol/page/page-lifecycleEvents.js [ Failure Pass ]
  283. crbug.com/1046784 http/tests/inspector-protocol/page/page-events-associated-isolation.js [ Failure Pass ]
  284. # Service Worker registration.update() Network Requests require more instrumentation
  285. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-content-type.js [ Failure ]
  286. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-redirect.js [ Failure ]
  287. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-response-code.js [ Failure ]
  288. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-classic-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]
  289. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-content-type.js [ Failure ]
  290. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-redirect.js [ Failure ]
  291. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-response-code.js [ Failure ]
  292. crbug.com/1334900 http/tests/inspector-protocol/fetch/service-worker-module-update-network-id-disallowed-service-worker-allowed-header.js [ Failure ]
  293. # Looks like a failure to get a paint on time. Test could be changed to use runAfterLayoutAndPaint
  294. # instead of a timeout, which may fix things.
  295. crbug.com/713049 images/color-profile-reflection.html [ Failure Pass ]
  296. crbug.com/713049 [ Mac ] virtual/gpu-rasterization/images/color-profile-reflection.html [ Failure Pass Timeout ]
  297. # This test was attributed to site isolation but times out with or without it. Broken test?
  298. crbug.com/1050826 external/wpt/mixed-content/gen/top.http-rp/opt-in/object-tag.https.html [ Skip Timeout ]
  299. crbug.com/1098369 fast/canvas/OffscreenCanvas-copyImage.html [ Failure Pass ]
  300. crbug.com/1106590 [ Mac ] virtual/gpu/fast/canvas/canvas-path-non-invertible-transform.html [ Crash Pass ]
  301. crbug.com/1237275 fast/canvas/layers-lonebeginlayer.html [ Failure Pass ]
  302. crbug.com/1237275 fast/canvas/layers-unmatched-beginlayer.html [ Failure Pass ]
  303. # Assorted WPT canvas tests failing
  304. crbug.com/1093709 external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.resize.html [ Failure Pass ]
  305. crbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.html [ Failure ]
  306. crbug.com/1243128 [ Win ] external/wpt/html/canvas/element/wide-gamut-canvas/2d.color.space.p3.fillText.shadow.html [ Failure ]
  307. crbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.small.html [ Pass Timeout ]
  308. crbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.small.worker.html [ Pass Timeout ]
  309. crbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.NaN.html [ Pass Timeout ]
  310. crbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.negative.html [ Pass Timeout ]
  311. crbug.com/1170337 [ Debug Mac11 ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.zero.html [ Pass Timeout ]
  312. crbug.com/1170337 [ Mac10.13 ] external/wpt/html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.zero.worker.html [ Skip Timeout ]
  313. crbug.com/1300389 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.html [ Failure ]
  314. crbug.com/1300389 external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.html [ Failure ]
  315. crbug.com/1300389 external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.worker.html [ Failure ]
  316. crbug.com/1300389 virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.html [ Failure ]
  317. crbug.com/1300389 virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.get.halftransparent.worker.html [ Failure ]
  318. crbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-inherit-rtl.html [ Failure ]
  319. crbug.com/1315282 [ Mac ] external/wpt/html/canvas/element/drawing-text-to-the-canvas/direction-rtl.html [ Failure ]
  320. # Off by one pixel error on ref test
  321. crbug.com/1259367 [ Mac ] printing/offscreencanvas-webgl-printing.html [ Failure ]
  322. # This test depends on synchronous focus() which does not exist (anymore?).
  323. crbug.com/1074482 external/wpt/html/interaction/focus/the-autofocus-attribute/update-the-rendering.html [ Failure ]
  324. crbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]
  325. crbug.com/1074482 [ Win ] external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html [ Failure Pass ]
  326. crbug.com/1074482 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html [ Failure Pass ]
  327. crbug.com/1105278 external/wpt/clipboard-apis/feature-policy/clipboard-write/clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]
  328. crbug.com/1104125 external/wpt/clipboard-apis/feature-policy/clipboard-read/clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html [ Failure Pass ]
  329. # This test has a bug in it that prevents it from being able to deal with order
  330. # differences it claims to support.
  331. crbug.com/1076129 external/wpt/service-workers/service-worker/clients-matchall-frozen.https.html [ Failure Pass ]
  332. # No support for un-prefixed background-clip: text or fill-color on text.
  333. crbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-multi-line.html [ Failure ]
  334. crbug.com/1275365 external/wpt/css/css-backgrounds/background-clip/clip-text-flex.html [ Failure ]
  335. # Flakily timing out or failing.
  336. # TODO(ccameron): Investigate this.
  337. crbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]
  338. crbug.com/730267 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]
  339. crbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer.html [ Failure Pass Timeout ]
  340. crbug.com/730267 virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure Pass Timeout ]
  341. crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]
  342. crbug.com/730267 [ Mac12 ] virtual/gpu-rasterization-disable-yuv/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure Pass Timeout ]
  343. crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]
  344. crbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure Pass Timeout ]
  345. crbug.com/730267 [ Mac11 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]
  346. crbug.com/730267 [ Mac12 ] virtual/gpu-rasterization/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure Pass Timeout ]
  347. # Flaky virtual/threaded-prefer-compositing tests
  348. crbug.com/1309533 [ Win ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/idlharness.html [ Failure ]
  349. crbug.com/1180479 [ Mac ] virtual/threaded-prefer-compositing/external/wpt/css/cssom-view/scrollIntoView-smooth.html [ Failure Pass Timeout ]
  350. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-animates.html [ Skip ]
  351. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Skip ]
  352. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html [ Skip ]
  353. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-added.html [ Skip ]
  354. crbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/main-thread-scrolling-reason-correctness.html [ Skip ]
  355. crbug.com/574283 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/mousewheel-scroll-interrupted.html [ Skip ]
  356. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]
  357. crbug.com/664858 virtual/threaded-prefer-compositing/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Skip ]
  358. crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass Timeout ]
  359. crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snap-scrolls-visual-viewport.html [ Failure Pass ]
  360. crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-scrollbar-scrolling-thumb.html [ Failure Pass ]
  361. crbug.com/1205673 [ Linux ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]
  362. crbug.com/1205673 [ Win ] virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]
  363. crbug.com/1186753 virtual/threaded-prefer-compositing/fast/scroll-snap/snaps-after-wheel-scrolling.html [ Failure Pass ]
  364. crbug.com/936891 virtual/threaded-prefer-compositing/fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Pass ]
  365. crbug.com/1049599 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass Skip Timeout ]
  366. crbug.com/1193920 virtual/threaded-prefer-compositing/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass Timeout ]
  367. crbug.com/1335172 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]
  368. crbug.com/1335172 [ Linux ] virtual/threaded-prefer-compositing/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]
  369. crbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]
  370. crbug.com/841567 [ Debug Mac12 ] virtual/threaded-prefer-compositing/fast/scrolling/listbox-wheel-event.html [ Failure Pass Timeout ]
  371. crbug.com/841567 virtual/threaded-prefer-compositing/fast/scrolling/overflow-scrollability.html [ Failure Pass Timeout ]
  372. crbug.com/1095540 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]
  373. crbug.com/841567 [ Debug Mac11 ] virtual/threaded-prefer-compositing/fast/scrolling/same-page-navigate.html [ Failure Pass ]
  374. crbug.com/1279758 [ Win10.20h2 ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]
  375. crbug.com/1279758 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scroll-animation-on-by-default.html [ Failure Pass ]
  376. crbug.com/1058244 [ Mac ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]
  377. crbug.com/1058244 [ Win ] virtual/threaded-prefer-compositing/fast/scrolling/scrollbars/scrollbar-rtl-manipulation.html [ Failure Pass ]
  378. crbug.com/915926 fast/events/touch/multi-touch-user-gesture.html [ Failure Pass ]
  379. crbug.com/736052 [ Mac ] compositing/overflow/composited-scroll-with-fractional-translation.html [ Failure Pass ]
  380. crbug.com/1303091 [ Linux ] compositing/overflow/paint-neg-z-order-descendants-into-scrolling-contents-layer.html [ Failure Pass ]
  381. crbug.com/1303030 [ Linux ] paint/invalidation/forms/range-focus-by-mouse-then-keydown.html [ Failure Pass ]
  382. # New OffscreenCanvas Tests that are breaking LayoutTest
  383. crbug.com/980969 http/tests/input/discard-events-to-unstable-iframe.html [ Failure Pass ]
  384. crbug.com/1086591 external/wpt/css/mediaqueries/aspect-ratio-004.html [ Failure ]
  385. crbug.com/1086591 external/wpt/css/mediaqueries/device-aspect-ratio-002.html [ Failure ]
  386. crbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-005.html [ Failure ]
  387. crbug.com/1002049 external/wpt/css/mediaqueries/aspect-ratio-006.html [ Failure ]
  388. crbug.com/962417 external/wpt/css/mediaqueries/mq-negative-range-001.html [ Failure ]
  389. crbug.com/1343368 external/wpt/css/mediaqueries/viewport-script-dynamic.html [ Failure ]
  390. crbug.com/1343366 external/wpt/css/mediaqueries/mq-invalid-media-type-layer-001.html [ Failure ]
  391. crbug.com/1345247 external/wpt/css/mediaqueries/prefers-color-scheme-svg-image.html [ Failure ]
  392. crbug.com/815111 external/wpt/css/css-fill-stroke/paint-order-001.tentative.html [ Failure ]
  393. crbug.com/1007134 external/wpt/intersection-observer/v2/delay-test.html [ Failure Pass ]
  394. crbug.com/1004547 external/wpt/intersection-observer/cross-origin-iframe.sub.html [ Failure Pass ]
  395. crbug.com/1007229 external/wpt/intersection-observer/same-origin-grand-child-iframe.sub.html [ Failure Pass ]
  396. # These fail when device_scale_factor is changed, but only for anti-aliasing:
  397. crbug.com/968791 [ Mac ] virtual/scalefactor200/css3/filters/effect-blur-hw.html [ Failure Pass ]
  398. crbug.com/968791 virtual/scalefactor200/css3/filters/filterRegions.html [ Failure ]
  399. # These appear to be actually incorrect at device_scale_factor 2.0:
  400. crbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure ]
  401. crbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-002.html [ Failure ]
  402. crbug.com/968791 crbug.com/1051044 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure ]
  403. crbug.com/968791 virtual/scalefactor200/external/wpt/css/filter-effects/effect-reference-feimage-004.html [ Failure ]
  404. crbug.com/968791 [ Debug Mac11 ] virtual/scalefactor200/external/wpt/css/filter-effects/filters-test-brightness-003.html [ Failure ]
  405. crbug.com/916825 external/wpt/css/filter-effects/filter-subregion-01.html [ Failure ]
  406. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]
  407. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]
  408. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]
  409. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]
  410. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]
  411. crbug.com/1295445 external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]
  412. crbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-combined-001.html [ Failure ]
  413. crbug.com/903383 virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-blur.html [ Failure ]
  414. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-001.html [ Failure ]
  415. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-002.html [ Failure ]
  416. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-003.html [ Failure ]
  417. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-005.html [ Failure ]
  418. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-006.html [ Failure ]
  419. crbug.com/1295445 virtual/scalefactor200/external/wpt/css/filter-effects/filter-function/filter-function-007.html [ Failure ]
  420. # Could be addressed with fuzzy diff.
  421. crbug.com/910537 external/wpt/svg/painting/marker-006.svg [ Failure ]
  422. crbug.com/910537 external/wpt/svg/painting/marker-005.svg [ Failure ]
  423. # We don't yet implement context-fill and context-stroke
  424. crbug.com/367737 external/wpt/svg/painting/reftests/paint-context-001.svg [ Failure ]
  425. crbug.com/367737 external/wpt/svg/painting/reftests/paint-context-002.svg [ Failure ]
  426. # Unprefixed 'mask' ('mask-image', 'mask-border') support not yet implemented.
  427. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-clip-exclude.html [ Failure ]
  428. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-local-mask.html [ Failure ]
  429. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image.html [ Failure ]
  430. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-remote-mask.html [ Failure ]
  431. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-url-image-hash.html [ Failure ]
  432. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg [ Failure ]
  433. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg [ Failure ]
  434. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/clip-path-shape-circle-005.svg [ Failure ]
  435. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip-transform.svg [ Failure ]
  436. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg [ Failure ]
  437. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg [ Failure ]
  438. crbug.com/843084 external/wpt/css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg [ Failure ]
  439. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-001.html [ Failure ]
  440. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-002.html [ Failure ]
  441. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-003.html [ Failure ]
  442. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-004.html [ Failure ]
  443. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-005.html [ Failure ]
  444. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-006.html [ Failure ]
  445. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-circle-008.html [ Failure ]
  446. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-003.html [ Failure ]
  447. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-element-userSpaceOnUse-004.html [ Failure ]
  448. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-001.html [ Failure ]
  449. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-002.html [ Failure ]
  450. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-003.html [ Failure ]
  451. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-004.html [ Failure ]
  452. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-005.html [ Failure ]
  453. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-006.html [ Failure ]
  454. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-007.html [ Failure ]
  455. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-ellipse-008.html [ Failure ]
  456. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-006.html [ Failure ]
  457. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-007.html [ Failure ]
  458. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-008.html [ Failure ]
  459. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-009.html [ Failure ]
  460. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-010.html [ Failure ]
  461. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-011.html [ Failure ]
  462. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-polygon-012.html [ Failure ]
  463. crbug.com/843084 external/wpt/css/css-masking/clip-path/clip-path-polygon-013.html [ Failure ]
  464. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1b.html [ Failure ]
  465. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1c.html [ Failure ]
  466. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1a.html [ Failure ]
  467. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1b.html [ Failure ]
  468. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-borderBox-1c.html [ Failure ]
  469. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1a.html [ Failure ]
  470. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1b.html [ Failure ]
  471. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-contentBox-1c.html [ Failure ]
  472. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-fillBox-1a.html [ Failure ]
  473. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-geometryBox-2.html [ Failure ]
  474. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-marginBox-1a.html [ Failure ]
  475. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1a.html [ Failure ]
  476. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1b.html [ Failure ]
  477. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-paddingBox-1c.html [ Failure ]
  478. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-strokeBox-1a.html [ Failure ]
  479. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1a.html [ Failure ]
  480. crbug.com/694218 external/wpt/css/css-masking/clip-path/clip-path-viewBox-1b.html [ Failure ]
  481. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-1.html [ Failure ]
  482. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-clip-2.html [ Failure ]
  483. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1a.html [ Failure ]
  484. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1b.html [ Failure ]
  485. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1c.html [ Failure ]
  486. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-1d.html [ Failure ]
  487. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2a.html [ Failure ]
  488. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2b.html [ Failure ]
  489. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-composite-2c.html [ Failure ]
  490. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1a.html [ Failure ]
  491. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1b.html [ Failure ]
  492. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-1c.html [ Failure ]
  493. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-2.html [ Failure ]
  494. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3f.html [ Failure ]
  495. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-3g.html [ Failure ]
  496. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4a.html [ Failure ]
  497. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-image-4b.html [ Failure ]
  498. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-a.html [ Failure ]
  499. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-b.html [ Failure ]
  500. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-c.html [ Failure ]
  501. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-d.html [ Failure ]
  502. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-mode-to-mask-type.html [ Failure ]
  503. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1a.html [ Failure ]
  504. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1b.html [ Failure ]
  505. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1d.html [ Failure ]
  506. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-opacity-1e.html [ Failure ]
  507. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-1.html [ Failure ]
  508. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-2.html [ Failure ]
  509. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-origin-3.html [ Failure ]
  510. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1a.html [ Failure ]
  511. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1b.html [ Failure ]
  512. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-1c.html [ Failure ]
  513. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2a.html [ Failure ]
  514. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-2b.html [ Failure ]
  515. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3a.html [ Failure ]
  516. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-3b.html [ Failure ]
  517. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4a.html [ Failure ]
  518. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4b.html [ Failure ]
  519. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4c.html [ Failure ]
  520. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-4d.html [ Failure ]
  521. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-5.html [ Failure ]
  522. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-6.html [ Failure ]
  523. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-position-7.html [ Failure ]
  524. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-1.html [ Failure ]
  525. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-2.html [ Failure ]
  526. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-repeat-3.html [ Failure ]
  527. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-auto.html [ Failure ]
  528. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-length.html [ Failure ]
  529. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto-percent.html [ Failure ]
  530. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-auto.html [ Failure ]
  531. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-border.html [ Failure ]
  532. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-clip-padding.html [ Failure ]
  533. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty.html [ Failure ]
  534. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-contain.html [ Failure ]
  535. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-cover.html [ Failure ]
  536. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-auto.html [ Failure ]
  537. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-length.html [ Failure ]
  538. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length-percent.html [ Failure ]
  539. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-length.html [ Failure ]
  540. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-auto.html [ Failure ]
  541. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-length.html [ Failure ]
  542. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent-stretch.html [ Failure ]
  543. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent-percent.html [ Failure ]
  544. crbug.com/432153 external/wpt/css/css-masking/mask-image/mask-size-percent.html [ Failure ]
  545. # CSS clip-path: shape() not implemented
  546. crbug.com/1308431 [ Win ] external/wpt/css/css-masking/animations/clip-path-interpolation-shape.html [ Failure ]
  547. crbug.com/1308431 [ Win ] external/wpt/css/css-masking/parsing/clip-path-shape-parsing.html [ Failure ]
  548. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-001.html [ Failure ]
  549. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002-units.html [ Failure ]
  550. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-002.html [ Failure ]
  551. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-003.html [ Failure ]
  552. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-004.html [ Failure ]
  553. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-001.html [ Failure ]
  554. crbug.com/1308431 external/wpt/css/css-masking/clip-path/clip-path-shape-interpolation-002.html [ Failure ]
  555. # CSS cascade layers
  556. crbug.com/1277637 external/wpt/css/css-cascade/layer-stylesheet-sharing.html [ Failure ]
  557. # Fails, at a minimum, due to lack of support for CSS mask property in html elements
  558. crbug.com/432153 external/wpt/svg/painting/reftests/display-none-mask.html [ Skip ]
  559. # WPT SVG Tests failing. Have not been investigated in all cases.
  560. crbug.com/1184034 external/wpt/svg/linking/reftests/href-filter-element.html [ Failure ]
  561. crbug.com/366559 external/wpt/svg/shapes/reftests/pathlength-003.svg [ Failure ]
  562. crbug.com/366559 external/wpt/svg/text/reftests/textpath-side-001.svg [ Failure ]
  563. crbug.com/366559 external/wpt/svg/text/reftests/textpath-shape-001.svg [ Failure ]
  564. crbug.com/803360 external/wpt/svg/path/closepath/segment-completing.svg [ Failure ]
  565. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-001.svg [ Failure ]
  566. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-201.svg [ Failure ]
  567. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-202.svg [ Failure ]
  568. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-102.svg [ Failure ]
  569. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-002.svg [ Failure ]
  570. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-203.svg [ Failure ]
  571. crbug.com/1177540 external/wpt/svg/text/reftests/text-text-anchor-003.svg [ Failure ]
  572. crbug.com/670177 external/wpt/svg/rendering/order/z-index.svg [ Failure ]
  573. crbug.com/863355 [ Mac ] external/wpt/svg/shapes/reftests/pathlength-002.svg [ Failure ]
  574. crbug.com/1052202 external/wpt/svg/linking/scripted/href-mpath-element.html [ Timeout ]
  575. crbug.com/1052202 external/wpt/svg/linking/scripted/href-animate-element.html [ Timeout ]
  576. crbug.com/1222395 external/wpt/svg/path/property/mpath.svg [ Failure ]
  577. crbug.com/785246 external/wpt/svg/struct/reftests/use-inheritance-001.svg [ Failure ]
  578. crbug.com/785246 external/wpt/svg/linking/reftests/use-descendant-combinator-003.html [ Failure ]
  579. crbug.com/674797 external/wpt/svg/painting/reftests/marker-path-022.svg [ Failure ]
  580. crbug.com/674797 external/wpt/svg/painting/reftests/marker-path-023.svg [ Failure ]
  581. crbug.com/699040 external/wpt/svg/text/reftests/text-xml-space-001.svg [ Failure ]
  582. # WPT backgrounds and borders tests. Note that there are many more in NeverFixTests
  583. # that should be investigated (see crbug.com/780700)
  584. crbug.com/1242416 [ Linux ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]
  585. crbug.com/1242416 [ Mac10.14 ] external/wpt/css/CSS2/backgrounds/background-position-201.xht [ Failure Pass ]
  586. crbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-004.xht [ Failure ]
  587. crbug.com/492187 external/wpt/css/CSS2/backgrounds/background-intrinsic-006.xht [ Failure ]
  588. crbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-008.html [ Failure ]
  589. crbug.com/1268426 external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]
  590. crbug.com/1268426 virtual/threaded/external/wpt/css/css-backgrounds/border-image-width-should-extend-to-padding.html [ Failure ]
  591. crbug.com/767352 external/wpt/css/css-backgrounds/border-image-width-009.html [ Failure ]
  592. # No emoji flag symbols available in the Windows system emoji font.
  593. crbug.com/1272436 [ Win10.20h2 ] external/wpt/css/CSS2/text/bidi-flag-emoji-02.html [ Failure ]
  594. # ==== Regressions introduced by BlinkGenPropertyTrees =====
  595. # Reflection / mask ordering issue
  596. crbug.com/767318 compositing/reflections/nested-reflection-mask-change.html [ Failure ]
  597. # Incorrect scrollbar invalidation.
  598. crbug.com/887000 virtual/prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Failure Timeout ]
  599. crbug.com/887000 [ Mac10.14 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  600. crbug.com/887000 [ Mac10.15 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  601. crbug.com/887000 [ Mac11 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  602. crbug.com/887000 [ Mac11-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  603. crbug.com/887000 [ Mac12 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  604. crbug.com/887000 [ Mac12-arm64 ] scrollbars/hidden-scrollbars-invisible.html [ Failure ]
  605. crbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]
  606. crbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/gesture-pinch-zoom-prevent-in-handler.html [ Failure Pass ]
  607. crbug.com/882975 [ Win10.20h2 ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]
  608. crbug.com/882975 [ Debug Linux ] virtual/threaded/fast/events/pinch/scroll-visual-viewport-send-boundary-events.html [ Failure Pass ]
  609. crbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad-zoom-in-slow.html [ Failure Pass ]
  610. crbug.com/882975 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchpad.html [ Failure Pass ]
  611. crbug.com/898394 virtual/android/url-bar/bottom-and-top-fixed-sticks-to-top.html [ Failure Timeout ]
  612. crbug.com/1024151 http/tests/devtools/tracing/timeline-style/timeline-style-recalc-all-invalidator-types.js [ Failure Pass ]
  613. # Subpixel rounding differences that are incorrect.
  614. crbug.com/997202 compositing/overflow/scaled-overflow.html [ Failure ]
  615. # Flaky subpixel AA difference (not necessarily incorrect, but flaky)
  616. crbug.com/997202 virtual/threaded-no-composited-antialiasing/animations/skew-notsequential-compositor.html [ Failure Pass ]
  617. # Only one pixel difference (187,187,187) vs (188,188,188) occasionally.
  618. crbug.com/1207960 [ Linux ] compositing/perspective-interest-rect.html [ Failure Pass ]
  619. crbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg.html [ Failure ]
  620. crbug.com/954591 external/wpt/css/css-transforms/composited-under-rotateY-180deg-clip.html [ Failure ]
  621. crbug.com/1261905 external/wpt/css/css-transforms/backface-visibility-hidden-child-will-change-transform.html [ Failure ]
  622. crbug.com/1261905 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-child-translate.html [ Failure ]
  623. # CompositeAfterPaint remaining failures
  624. # Outline paints incorrectly with columns. Needs LayoutNGBlockFragmentation.
  625. crbug.com/1047358 [ Mac11 ] paint/pagination/composited-paginated-outlined-box.html [ Failure ]
  626. # Need to force the video to be composited in this case, or change pre-CAP
  627. # to match CAP behavior.
  628. crbug.com/1108972 fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure ]
  629. # Cross-origin iframe layerization is buggy with empty iframes.
  630. crbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-masked-pointer-events-mixed-2.sub.html [ Failure ]
  631. crbug.com/1123189 virtual/threaded-composited-iframes/external/wpt/is-input-pending/security/cross-origin-subframe-complex-clip.sub.html [ Failure ]
  632. crbug.com/1266900 [ Mac11 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]
  633. crbug.com/1266900 [ Mac12 ] fast/events/touch/gesture/right-click-gestures-set-cursor-at-correct-position.html [ Crash Pass ]
  634. crbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-baseline-005.html [ Failure ]
  635. crbug.com/1267924 [ Mac ] external/wpt/css/css-contain/contain-layout-suppress-baseline-001.html [ Failure ]
  636. # Needs rebaseline on Fuchsia.
  637. crbug.com/1267498 [ Fuchsia ] paint/invalidation/svg/animated-svg-as-image-transformed-offscreen.html [ Failure ]
  638. crbug.com/1267498 [ Fuchsia ] compositing/layer-creation/fixed-position-out-of-view.html [ Failure ]
  639. crbug.com/1267498 [ Fuchsia ] transforms/transformed-caret.html [ Failure ]
  640. # WebGPU tests are only run on GPU bots, so they are skipped by default and run
  641. # separately from other Web Tests.
  642. external/wpt/webgpu/* [ Skip ]
  643. wpt_internal/webgpu/* [ Skip ]
  644. crbug.com/829028 [ Mac ] compositing/gestures/gesture-tapHighlight-lines-and-float-in-multicol.html [ Failure ]
  645. # Requires support of the image-resolution CSS property
  646. crbug.com/1086473 external/wpt/css/css-images/image-resolution/* [ Skip ]
  647. # Fail due to lack of fuzzy matching on Linux, Win and Mac platforms for WPT. The pixels in the pre-rotated reference
  648. # images do not exactly match the exif rotated images, probably due to jpeg decoding/encoding issues. Maybe
  649. # adjusting the image size to a multiple of 8 would fix this (so all jpeg blocks are solid color).
  650. crbug.com/997202 external/wpt/css/css-images/image-orientation/svg-image-orientation-aspect-ratio.html [ Failure ]
  651. crbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties.html [ Failure ]
  652. crbug.com/997202 external/wpt/css/css-images/image-orientation/image-orientation-background-properties-border-radius.html [ Failure ]
  653. crbug.com/997202 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio.html [ Failure ]
  654. crbug.com/1159433 external/wpt/css/css-images/image-orientation/image-orientation-exif-png.html [ Failure ]
  655. # Ref results are wrong on the background and list case, not sure on border result
  656. crbug.com/1076121 external/wpt/css/css-images/image-orientation/image-orientation-border-image.html [ Failure ]
  657. # object-fit is not applied for <object>/<embed>.
  658. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001e.html [ Failure ]
  659. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-001o.html [ Failure ]
  660. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002e.html [ Failure ]
  661. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-002o.html [ Failure ]
  662. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003e.html [ Failure ]
  663. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-003o.html [ Failure ]
  664. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004e.html [ Failure ]
  665. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-004o.html [ Failure ]
  666. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005e.html [ Failure ]
  667. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-005o.html [ Failure ]
  668. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006e.html [ Failure ]
  669. crbug.com/693834 external/wpt/css/css-images/object-fit-contain-svg-006o.html [ Failure ]
  670. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001e.html [ Failure ]
  671. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-001o.html [ Failure ]
  672. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002e.html [ Failure ]
  673. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-002o.html [ Failure ]
  674. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003e.html [ Failure ]
  675. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-003o.html [ Failure ]
  676. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004e.html [ Failure ]
  677. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-004o.html [ Failure ]
  678. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005e.html [ Failure ]
  679. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-005o.html [ Failure ]
  680. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006e.html [ Failure ]
  681. crbug.com/693834 external/wpt/css/css-images/object-fit-cover-svg-006o.html [ Failure ]
  682. crbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-001.html [ Failure ]
  683. crbug.com/693834 external/wpt/css/css-images/object-fit-dyn-aspect-ratio-002.html [ Failure ]
  684. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001e.html [ Failure ]
  685. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-001o.html [ Failure ]
  686. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002e.html [ Failure ]
  687. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-002o.html [ Failure ]
  688. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003e.html [ Failure ]
  689. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-003o.html [ Failure ]
  690. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004e.html [ Failure ]
  691. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-004o.html [ Failure ]
  692. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005e.html [ Failure ]
  693. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-005o.html [ Failure ]
  694. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006e.html [ Failure ]
  695. crbug.com/693834 external/wpt/css/css-images/object-fit-fill-svg-006o.html [ Failure ]
  696. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001e.html [ Failure ]
  697. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-001o.html [ Failure ]
  698. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002e.html [ Failure ]
  699. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-002o.html [ Failure ]
  700. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003e.html [ Failure ]
  701. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-003o.html [ Failure ]
  702. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004e.html [ Failure ]
  703. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-004o.html [ Failure ]
  704. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005e.html [ Failure ]
  705. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-005o.html [ Failure ]
  706. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006e.html [ Failure ]
  707. crbug.com/693834 external/wpt/css/css-images/object-fit-none-svg-006o.html [ Failure ]
  708. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001e.html [ Failure ]
  709. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-001o.html [ Failure ]
  710. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002e.html [ Failure ]
  711. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-002o.html [ Failure ]
  712. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003e.html [ Failure ]
  713. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-003o.html [ Failure ]
  714. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004e.html [ Failure ]
  715. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-004o.html [ Failure ]
  716. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005e.html [ Failure ]
  717. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-005o.html [ Failure ]
  718. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006e.html [ Failure ]
  719. crbug.com/693834 external/wpt/css/css-images/object-fit-scale-down-svg-006o.html [ Failure ]
  720. # Minor rendering difference to the ref image because of filtering or positioning.
  721. # (Possibly because of the use of 'image-rendering: crisp-edges' in some cases.)
  722. crbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-001c.html [ Failure ]
  723. crbug.com/1174873 external/wpt/css/css-images/object-fit-cover-png-002c.html [ Failure ]
  724. crbug.com/1174873 external/wpt/css/css-images/object-position-png-001c.html [ Failure ]
  725. crbug.com/1174873 external/wpt/css/css-images/object-position-png-001e.html [ Failure ]
  726. crbug.com/1174873 external/wpt/css/css-images/object-position-png-001i.html [ Failure ]
  727. crbug.com/1174873 external/wpt/css/css-images/object-position-png-001o.html [ Failure ]
  728. crbug.com/1174873 external/wpt/css/css-images/object-position-png-001p.html [ Failure ]
  729. crbug.com/1174873 external/wpt/css/css-images/object-position-png-002c.html [ Failure ]
  730. crbug.com/1174873 external/wpt/css/css-images/object-position-png-002e.html [ Failure ]
  731. crbug.com/1174873 external/wpt/css/css-images/object-position-png-002i.html [ Failure ]
  732. crbug.com/1174873 external/wpt/css/css-images/object-position-png-002o.html [ Failure ]
  733. crbug.com/1174873 external/wpt/css/css-images/object-position-png-002p.html [ Failure ]
  734. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001e.html [ Failure ]
  735. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001i.html [ Failure ]
  736. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001o.html [ Failure ]
  737. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-001p.html [ Failure ]
  738. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002e.html [ Failure ]
  739. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002i.html [ Failure ]
  740. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002o.html [ Failure ]
  741. crbug.com/1174873 external/wpt/css/css-images/object-position-svg-002p.html [ Failure ]
  742. # The following fails because we don't use the natural aspect ratio when applying
  743. # object-fit, and the images referenced don't have a natural size.
  744. crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003i.html [ Failure ]
  745. crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-003p.html [ Failure ]
  746. crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004i.html [ Failure ]
  747. crbug.com/1223377 external/wpt/css/css-images/object-fit-none-svg-004p.html [ Failure ]
  748. crbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-png.html [ Failure ]
  749. crbug.com/1042783 external/wpt/css/css-backgrounds/background-size/background-size-near-zero-svg.html [ Failure ]
  750. crbug.com/935057 external/wpt/css/css-backgrounds/background-size-043.html [ Failure ]
  751. crbug.com/935057 external/wpt/css/css-backgrounds/background-size-044.html [ Failure ]
  752. # Not obviously incorrect (minor pixel differences, likely due to filtering).
  753. crbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-space-10.html [ Failure ]
  754. crbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-1.html [ Failure ]
  755. crbug.com/1175040 external/wpt/css/css-backgrounds/border-image-repeat-round-2.html [ Failure ]
  756. # Passes with the WPT runner but not the internal one. (???)
  757. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1a.html [ Failure ]
  758. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1b.html [ Failure ]
  759. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-1c.html [ Failure ]
  760. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-3.html [ Failure ]
  761. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-4.html [ Failure ]
  762. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-5.html [ Failure ]
  763. # Off-by-one in some components.
  764. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-6.html [ Failure ]
  765. crbug.com/1175040 external/wpt/css/css-backgrounds/background-repeat-space-7.html [ Failure ]
  766. # Failures due to pointerMove building synthetic events without button information (main thread only).
  767. crbug.com/1056778 fast/scrolling/scrollbars/scrollbar-thumb-snapping.html [ Failure ]
  768. # Most of these fail due to subpixel differences, but a couple are real failures.
  769. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-animation.html [ Failure ]
  770. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-parent.html [ Failure ]
  771. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-canvas-sibling.html [ Failure ]
  772. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-border-radius.html [ Failure ]
  773. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-sibling.html [ Failure ]
  774. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-border-image.html [ Failure ]
  775. crbug.com/1044742 external/wpt/css/compositing/compositing_simple_div.html [ Failure ]
  776. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-simple.html [ Failure ]
  777. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-stacking-context-001.html [ Failure ]
  778. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph-background-image.html [ Failure ]
  779. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html [ Failure ]
  780. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html [ Failure ]
  781. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-paragraph.html [ Failure ]
  782. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-both-parent-and-blended-with-3D-transform.html [ Failure ]
  783. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-svg.html [ Failure ]
  784. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-filter.html [ Failure ]
  785. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-with-3D-transform.html [ Failure ]
  786. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html [ Failure ]
  787. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-script.html [ Failure ]
  788. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-iframe-parent.html [ Failure ]
  789. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-blended-element-interposed.html [ Failure ]
  790. crbug.com/1044742 external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html [ Failure ]
  791. crbug.com/1044742 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
  792. crbug.com/1044742 [ Win ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video.html [ Failure ]
  793. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-parent-with-text.html [ Failure ]
  794. crbug.com/1044742 [ Linux ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-mask.html [ Failure ]
  795. crbug.com/1271275 external/wpt/css/compositing/background-blending/background-blend-mode-plus-lighter.html [ Failure ]
  796. # Minor pixel differences
  797. crbug.com/1056492 external/wpt/svg/painting/reftests/marker-path-001.svg [ Failure ]
  798. crbug.com/819617 [ Linux ] virtual/text-antialias/descent-clip-in-scaled-page.html [ Failure ]
  799. crbug.com/1196414 compositing/composited-replaced-subpixel-location.html [ Failure ]
  800. # Triage of WPT css-paint-api tests
  801. crbug.com/1299442 external/wpt/css/css-paint-api/custom-property-animation-on-main-thread.https.html [ Failure Pass ]
  802. # Flaky virtual/off-main-thread-css-paint tests. Skipping whole test suite for now.
  803. # Open issues: 1339051, 1288136, 1286944, 1254382, 1250666, 1233826, 1123886, 1345205, 1299442, 1288136
  804. virtual/off-main-thread-css-paint/external/wpt/css/css-paint-api/* [ Skip ]
  805. crbug.com/1339051 [ Linux ] virtual/off-main-thread-css-paint/http/tests/csspaint/shadow-scale-with-page-zoom.html [ Failure ]
  806. # ====== Paint team owned tests to here ======
  807. # WPT speculative-parsing tests failing
  808. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-alternate-stylesheet.tentative.sub.html [ Crash Failure ]
  809. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/document-write/link-rel-stylesheet-nomatch-media.tentative.sub.html [ Failure ]
  810. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-alternate-stylesheet.tentative.html [ Failure ]
  811. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-disabled.tentative.html [ Failure ]
  812. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/link-rel-stylesheet-nomatch-media.tentative.html [ Failure ]
  813. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-font-script-src.tentative.html [ Failure ]
  814. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/math-script-src.tentative.html [ Failure ]
  815. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/meta-viewport-link-stylesheet-media.tentative.html [ Failure ]
  816. crbug.com/1144176 external/wpt/html/syntax/speculative-parsing/generated/page-load/svg-script-src.tentative.html [ Failure ]
  817. crbug.com/1142958 external/wpt/layout-instability/absolute-child-shift-with-parent-will-change.html [ Failure ]
  818. crbug.com/922249 virtual/android/fullscreen/compositor-touch-hit-rects-fullscreen-video-controls.html [ Failure Pass ]
  819. # ====== Layout team owned tests from here ======
  820. crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-left-002.xht [ Failure ]
  821. crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule3-outside-right-002.xht [ Failure ]
  822. crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-left-001.xht [ Failure ]
  823. crbug.com/711704 external/wpt/css/CSS2/floats/floats-rule7-outside-right-001.xht [ Failure ]
  824. crbug.com/711704 external/wpt/css/CSS2/floats/floats-wrap-bfc-006.xht [ Failure ]
  825. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floating-replaced-height-008.xht [ Skip ]
  826. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-108.xht [ Skip ]
  827. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-109.xht [ Skip ]
  828. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-110.xht [ Skip ]
  829. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-126.xht [ Skip ]
  830. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-127.xht [ Skip ]
  831. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-128.xht [ Skip ]
  832. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-129.xht [ Skip ]
  833. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-130.xht [ Skip ]
  834. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-131.xht [ Skip ]
  835. crbug.com/711709 external/wpt/css/CSS2/floats-clear/floats-137.xht [ Skip ]
  836. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-001.xht [ Skip ]
  837. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-002.xht [ Skip ]
  838. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-003.xht [ Skip ]
  839. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-004.xht [ Skip ]
  840. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-005.xht [ Skip ]
  841. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-inline-006.xht [ Skip ]
  842. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-001.xht [ Skip ]
  843. crbug.com/711805 external/wpt/css/CSS2/positioning/abspos-paged-002.xht [ Skip ]
  844. crbug.com/711805 external/wpt/css/CSS2/positioning/position-004.xht [ Skip ]
  845. crbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-003.xht [ Skip ]
  846. crbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-004.xht [ Skip ]
  847. crbug.com/711805 external/wpt/css/CSS2/positioning/position-fixed-005.xht [ Skip ]
  848. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-020.xht [ Skip ]
  849. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-021.xht [ Skip ]
  850. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-022.xht [ Skip ]
  851. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-034.xht [ Skip ]
  852. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-035.xht [ Skip ]
  853. crbug.com/711805 external/wpt/css/CSS2/positioning/position-relative-036.xht [ Skip ]
  854. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-002.xht [ Skip ]
  855. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-003.xht [ Skip ]
  856. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-004.xht [ Skip ]
  857. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inline-block-005.xht [ Skip ]
  858. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-003.xht [ Skip ]
  859. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-004.xht [ Skip ]
  860. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-005.xht [ Skip ]
  861. crbug.com/711807 external/wpt/css/CSS2/normal-flow/inlines-006.xht [ Skip ]
  862. crbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-005.xht [ Failure ]
  863. crbug.com/711807 external/wpt/css/CSS2/normal-flow/max-width-applies-to-006.xht [ Failure ]
  864. crbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-001.xht [ Failure ]
  865. crbug.com/711807 external/wpt/css/CSS2/normal-flow/replaced-intrinsic-002.xht [ Failure ]
  866. #### external/wpt/css/css-sizing
  867. crbug.com/1322062 external/wpt/css/css-sizing/aspect-ratio/fieldset-element-001.html [ Failure ]
  868. crbug.com/1261306 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-004.html [ Failure ]
  869. crbug.com/970201 external/wpt/css/css-sizing/slice-intrinsic-size.html [ Failure ]
  870. crbug.com/970201 external/wpt/css/css-sizing/clone-intrinsic-size.html [ Failure ]
  871. crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-038.html [ Failure ]
  872. crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-039.html [ Failure ]
  873. crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-042.html [ Failure ]
  874. crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/block-aspect-ratio-043.html [ Failure ]
  875. # This one fails a DCHECK on Chromium infra but passes on wpt.fyi
  876. crbug.com/1343829 external/wpt/css/css-sizing/aspect-ratio/grid-aspect-ratio-040.html [ Crash Pass ]
  877. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-001.html [ Failure ]
  878. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-002.html [ Failure ]
  879. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-003.html [ Failure ]
  880. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-004.html [ Failure ]
  881. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-005.html [ Failure ]
  882. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-006.html [ Failure ]
  883. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-007.html [ Failure ]
  884. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-008.html [ Failure ]
  885. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-009.html [ Failure ]
  886. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-010.html [ Failure ]
  887. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-011.html [ Failure ]
  888. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-012.html [ Failure ]
  889. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-013.html [ Failure ]
  890. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-014.html [ Failure ]
  891. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-015.html [ Failure ]
  892. crbug.com/1335897 external/wpt/css/css-sizing/fit-content-length-percentage-016.html [ Failure ]
  893. crbug.com/1008951 external/wpt/css/css-text-decor/text-decoration-color.html [ Failure ]
  894. crbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-001.html [ Failure ]
  895. crbug.com/1284170 external/wpt/css/css-text-decor/text-decoration-dotted-002.html [ Failure ]
  896. crbug.com/936084 external/wpt/css/css-sizing/max-content-input-001.html [ Failure ]
  897. crbug.com/918905 external/wpt/css/css-sizing/block-size-with-min-or-max-content-table-1b.html [ Failure Pass ]
  898. #### Unprefix and update the implementation for text-emphasis
  899. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-color-001.xht [ Failure ]
  900. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-001.xht [ Failure ]
  901. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-left-002.xht [ Failure ]
  902. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-001.xht [ Failure ]
  903. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-over-right-002.xht [ Failure ]
  904. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-001.xht [ Failure ]
  905. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-left-002.xht [ Failure ]
  906. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-001.xht [ Failure ]
  907. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-under-right-002.xht [ Failure ]
  908. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-002.html [ Failure ]
  909. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-007.html [ Failure ]
  910. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-008.html [ Failure ]
  911. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-010.html [ Failure ]
  912. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-012.html [ Failure ]
  913. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-016.html [ Failure ]
  914. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-021.html [ Failure ]
  915. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-filled-001.xht [ Failure ]
  916. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-open-001.xht [ Failure ]
  917. crbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cf.html [ Failure ]
  918. crbug.com/1281409 external/wpt/css/css-text-decor/text-emphasis-style-property-010Cn.html [ Failure ]
  919. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-shape-001.xht [ Failure ]
  920. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-string-001.xht [ Failure ]
  921. crbug.com/1281289 external/wpt/css/css-text/letter-spacing/letter-spacing-211.html [ Failure ]
  922. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-073-manual.html [ Skip ]
  923. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-072-manual.html [ Skip ]
  924. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-071-manual.html [ Skip ]
  925. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-020-manual.html [ Skip ]
  926. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-076-manual.html [ Skip ]
  927. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-075-manual.html [ Skip ]
  928. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-021-manual.html [ Skip ]
  929. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-022-manual.html [ Skip ]
  930. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-074-manual.html [ Skip ]
  931. crbug.com/949909 external/wpt/css/css-text-decor/text-underline-position-019-manual.html [ Skip ]
  932. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048-manual.html [ Skip ]
  933. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-046a-manual.html [ Skip ]
  934. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-082-manual.html [ Skip ]
  935. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-048a-manual.html [ Skip ]
  936. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-085-manual.html [ Skip ]
  937. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-044-manual.html [ Skip ]
  938. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097a-manual.html [ Skip ]
  939. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-001-manual.html [ Skip ]
  940. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090-manual.html [ Skip ]
  941. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092-manual.html [ Skip ]
  942. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095-manual.html [ Skip ]
  943. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-095a-manual.html [ Skip ]
  944. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040a-manual.html [ Skip ]
  945. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096a-manual.html [ Skip ]
  946. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-002-manual.html [ Skip ]
  947. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-045-manual.html [ Skip ]
  948. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091-manual.html [ Skip ]
  949. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-092a-manual.html [ Skip ]
  950. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-004-manual.html [ Skip ]
  951. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-096-manual.html [ Skip ]
  952. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-040-manual.html [ Skip ]
  953. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-003-manual.html [ Skip ]
  954. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-091a-manual.html [ Skip ]
  955. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-097-manual.html [ Skip ]
  956. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-041-manual.html [ Skip ]
  957. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-049-manual.html [ Skip ]
  958. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-line-090a-manual.html [ Skip ]
  959. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090a-manual.html [ Skip ]
  960. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-046a-manual.html [ Skip ]
  961. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091-manual.html [ Skip ]
  962. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048a-manual.html [ Skip ]
  963. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092a-manual.html [ Skip ]
  964. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096-manual.html [ Skip ]
  965. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-048-manual.html [ Skip ]
  966. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-003-manual.html [ Skip ]
  967. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-091a-manual.html [ Skip ]
  968. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-002-manual.html [ Skip ]
  969. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-090-manual.html [ Skip ]
  970. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-092-manual.html [ Skip ]
  971. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-095a-manual.html [ Skip ]
  972. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-049-manual.html [ Skip ]
  973. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-041-manual.html [ Skip ]
  974. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040a-manual.html [ Skip ]
  975. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097-manual.html [ Skip ]
  976. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-001-manual.html [ Skip ]
  977. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-045-manual.html [ Skip ]
  978. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-082-manual.html [ Skip ]
  979. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-096a-manual.html [ Skip ]
  980. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-044-manual.html [ Skip ]
  981. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-004-manual.html [ Skip ]
  982. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-085-manual.html [ Skip ]
  983. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-097a-manual.html [ Skip ]
  984. crbug.com/949909 external/wpt/css/css-text-decor/text-decoration-040-manual.html [ Skip ]
  985. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]
  986. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]
  987. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]
  988. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]
  989. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001.html [ Failure ]
  990. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001a.html [ Failure ]
  991. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-001b.html [ Failure ]
  992. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-color-property-002.html [ Failure ]
  993. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001a.html [ Failure ]
  994. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001b.html [ Failure ]
  995. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-001z.html [ Failure ]
  996. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002a.html [ Failure ]
  997. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-002b.html [ Failure ]
  998. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003a.html [ Failure ]
  999. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003b.html [ Failure ]
  1000. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003c.html [ Failure ]
  1001. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-003d.html [ Failure ]
  1002. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004a.html [ Failure ]
  1003. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004b.html [ Failure ]
  1004. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004c.html [ Failure ]
  1005. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-line-height-004d.html [ Failure ]
  1006. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]
  1007. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]
  1008. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]
  1009. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]
  1010. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001.html [ Failure ]
  1011. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001a.html [ Failure ]
  1012. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001b.html [ Failure ]
  1013. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-position-property-001c.html [ Failure ]
  1014. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002.html [ Failure ]
  1015. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002a.html [ Failure ]
  1016. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002b.html [ Failure ]
  1017. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-002c.html [ Failure ]
  1018. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003.html [ Failure ]
  1019. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003a.html [ Failure ]
  1020. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003b.html [ Failure ]
  1021. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003c.html [ Failure ]
  1022. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003d.html [ Failure ]
  1023. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003e.html [ Failure ]
  1024. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003f.html [ Failure ]
  1025. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-003g.html [ Failure ]
  1026. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004.html [ Failure ]
  1027. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004a.html [ Failure ]
  1028. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004b.html [ Failure ]
  1029. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004c.html [ Failure ]
  1030. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004d.html [ Failure ]
  1031. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004e.html [ Failure ]
  1032. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004f.html [ Failure ]
  1033. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-004g.html [ Failure ]
  1034. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005.html [ Failure ]
  1035. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005a.html [ Failure ]
  1036. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005b.html [ Failure ]
  1037. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005c.html [ Failure ]
  1038. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005d.html [ Failure ]
  1039. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005e.html [ Failure ]
  1040. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005f.html [ Failure ]
  1041. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-005g.html [ Failure ]
  1042. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006.html [ Failure ]
  1043. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006a.html [ Failure ]
  1044. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006b.html [ Failure ]
  1045. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006c.html [ Failure ]
  1046. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006d.html [ Failure ]
  1047. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006e.html [ Failure ]
  1048. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006f.html [ Failure ]
  1049. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-position-property-006g.html [ Failure ]
  1050. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-002.html [ Failure ]
  1051. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]
  1052. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]
  1053. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]
  1054. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]
  1055. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003.html [ Failure ]
  1056. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-003b.html [ Failure ]
  1057. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004.html [ Failure ]
  1058. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-property-004a.html [ Failure ]
  1059. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-property-003a.html [ Failure ]
  1060. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-001.html [ Failure ]
  1061. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-002.html [ Failure ]
  1062. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003.html [ Failure ]
  1063. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-003a.html [ Failure ]
  1064. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004.html [ Failure ]
  1065. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-ruby-004a.html [ Failure ]
  1066. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-002.html [ Failure ]
  1067. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-003.html [ Failure ]
  1068. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-004.html [ Failure ]
  1069. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005.html [ Failure ]
  1070. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-005a.html [ Failure ]
  1071. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011.html [ Failure ]
  1072. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011a.html [ Failure ]
  1073. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-011b.html [ Failure ]
  1074. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]
  1075. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]
  1076. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]
  1077. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012.html [ Failure ]
  1078. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012a.html [ Failure ]
  1079. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-012b.html [ Failure ]
  1080. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-012c.html [ Failure ]
  1081. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013.html [ Failure ]
  1082. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013a.html [ Failure ]
  1083. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-013b.html [ Failure ]
  1084. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014.html [ Failure ]
  1085. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014a.html [ Failure ]
  1086. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-014b.html [ Failure ]
  1087. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015.html [ Failure ]
  1088. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015a.html [ Failure ]
  1089. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-015b.html [ Failure ]
  1090. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]
  1091. crbug.com/666433 [ Linux ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]
  1092. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016.html [ Failure ]
  1093. crbug.com/666433 [ Mac ] external/wpt/css/css-text-decor/text-emphasis-style-property-016a.html [ Failure ]
  1094. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017.html [ Failure ]
  1095. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017a.html [ Failure ]
  1096. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-017b.html [ Failure ]
  1097. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018.html [ Failure ]
  1098. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-018a.html [ Failure ]
  1099. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019.html [ Failure ]
  1100. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-019a.html [ Failure ]
  1101. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020.html [ Failure ]
  1102. crbug.com/666433 external/wpt/css/css-text-decor/text-emphasis-style-property-020a.html [ Failure ]
  1103. crbug.com/666433 external/wpt/css/css-text-decor/text-shadow/decorations-multiple-zorder.html [ Failure ]
  1104. crbug.com/666433 external/wpt/css/css-text-decor/text-shadow/quirks-decor-noblur.html [ Failure ]
  1105. crbug.com/666433 external/wpt/css/css-text-decor/text-shadow/standards-decor-noblur.html [ Failure ]
  1106. # `text-decoration-skip-ink: all` not implemented yet.
  1107. crbug.com/1054656 external/wpt/css/css-text-decor/text-decoration-skip-ink-005.html [ Skip ]
  1108. # `text-decoration: spelling|grammar-error`
  1109. crbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-grammar-error-001.html [ Failure ]
  1110. crbug.com/1163436 wpt_internal/css/css-text-decor/text-decoration-line-spelling-error-001.html [ Failure ]
  1111. crbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-001.optional.html [ Failure ]
  1112. crbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-002.optional.html [ Failure ]
  1113. crbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-grammar-error-color-dynamic-001.optional.html [ Failure ]
  1114. crbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-001.optional.html [ Failure ]
  1115. crbug.com/1163436 external/wpt/css/css-text-decor/text-decoration-line-spelling-error-color-002.optional.html [ Failure ]
  1116. crbug.com/722825 [ Linux ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]
  1117. crbug.com/722825 [ Mac10.14 ] media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html [ Pass Timeout ]
  1118. crbug.com/846753 [ Mac ] http/tests/media/reload-after-dialog.html [ Failure Pass Timeout ]
  1119. ### external/wpt/css/css-tables/
  1120. crbug.com/708345 external/wpt/css/css-tables/height-distribution/extra-height-given-to-all-row-groups-004.html [ Failure ]
  1121. crbug.com/694374 external/wpt/css/css-tables/anonymous-table-ws-001.html [ Failure ]
  1122. crbug.com/174167 external/wpt/css/css-tables/visibility-collapse-colspan-003.html [ Failure ]
  1123. crbug.com/1179497 external/wpt/css/css-tables/col-definite-max-size-001.html [ Failure ]
  1124. crbug.com/1179497 external/wpt/css/css-tables/col-definite-min-size-001.html [ Failure ]
  1125. crbug.com/1179497 external/wpt/css/css-tables/col-definite-size-001.html [ Failure ]
  1126. crbug.com/910725 external/wpt/css/css-tables/tentative/paint/overflow-hidden-table.html [ Failure ]
  1127. # [css-contain]
  1128. crbug.com/880802 external/wpt/css/css-contain/contain-layout-017.html [ Failure ]
  1129. crbug.com/880802 external/wpt/css/css-contain/contain-paint-021.html [ Failure ]
  1130. crbug.com/882385 external/wpt/css/css-contain/quote-scoping-001.html [ Failure ]
  1131. crbug.com/882385 external/wpt/css/css-contain/quote-scoping-002.html [ Failure ]
  1132. crbug.com/882385 external/wpt/css/css-contain/quote-scoping-003.html [ Failure ]
  1133. crbug.com/882385 external/wpt/css/css-contain/quote-scoping-004.html [ Failure ]
  1134. crbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-canvas.html [ Failure ]
  1135. crbug.com/1315275 external/wpt/css/css-contain/content-visibility/content-visibility-video.html [ Failure ]
  1136. # [css-align]
  1137. crbug.com/722287 crbug.com/886585 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001.html [ Failure ]
  1138. crbug.com/599828 external/wpt/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-align-content-001.html [ Failure ]
  1139. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-002.html [ Failure ]
  1140. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-003.html [ Failure ]
  1141. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-004.html [ Failure ]
  1142. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-002.html [ Failure ]
  1143. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-003.html [ Failure ]
  1144. crbug.com/1192763 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-004.html [ Failure ]
  1145. # [css-ui]
  1146. # The `input-security` property not implemented yet.
  1147. crbug.com/1253732 external/wpt/css/css-ui/input-security-none-sensitive-text-input.html [ Failure ]
  1148. # Layout team disagrees with the spec for this particular test.
  1149. crbug.com/591099 external/wpt/css/css-ui/text-overflow-015.html [ Failure ]
  1150. # Various issues related to the 'appearance' property:
  1151. crbug.com/1284269 external/wpt/css/css-ui/compute-kind-widget-fallback-props-revert-001.html [ Failure ]
  1152. crbug.com/1284270 external/wpt/css/css-ui/compute-kind-widget-no-fallback-props-001.html [ Failure ]
  1153. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-attachment-001.html [ Failure ]
  1154. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-clip-001.html [ Failure ]
  1155. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-color-001.html [ Failure ]
  1156. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-image-001.html [ Failure ]
  1157. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-origin-001.html [ Failure ]
  1158. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-position-001.html [ Failure ]
  1159. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-background-size-001.html [ Failure ]
  1160. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-color-001.html [ Failure ]
  1161. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-style-001.html [ Failure ]
  1162. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-end-width-001.html [ Failure ]
  1163. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-color-001.html [ Failure ]
  1164. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-style-001.html [ Failure ]
  1165. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-block-start-width-001.html [ Failure ]
  1166. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-color-001.html [ Failure ]
  1167. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-left-radius-001.html [ Failure ]
  1168. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-right-radius-001.html [ Failure ]
  1169. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-style-001.html [ Failure ]
  1170. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-bottom-width-001.html [ Failure ]
  1171. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-end-radius-001.html [ Failure ]
  1172. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-end-start-radius-001.html [ Failure ]
  1173. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-outset-001.html [ Failure ]
  1174. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-repeat-001.html [ Failure ]
  1175. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-slice-001.html [ Failure ]
  1176. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-source-001.html [ Failure ]
  1177. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-image-width-001.html [ Failure ]
  1178. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-color-001.html [ Failure ]
  1179. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-style-001.html [ Failure ]
  1180. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-end-width-001.html [ Failure ]
  1181. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-color-001.html [ Failure ]
  1182. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-style-001.html [ Failure ]
  1183. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-inline-start-width-001.html [ Failure ]
  1184. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-color-001.html [ Failure ]
  1185. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-style-001.html [ Failure ]
  1186. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-left-width-001.html [ Failure ]
  1187. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-color-001.html [ Failure ]
  1188. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-style-001.html [ Failure ]
  1189. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-right-width-001.html [ Failure ]
  1190. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-end-radius-001.html [ Failure ]
  1191. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-start-start-radius-001.html [ Failure ]
  1192. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-color-001.html [ Failure ]
  1193. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-left-radius-001.html [ Failure ]
  1194. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-right-radius-001.html [ Failure ]
  1195. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-style-001.html [ Failure ]
  1196. crbug.com/1284251 external/wpt/css/css-ui/compute-kind-widget-generated/kind-of-widget-fallback-meter-border-top-width-001.html [ Failure ]
  1197. # [css-flexbox]
  1198. crbug.com/807497 external/wpt/css/css-flexbox/anonymous-flex-item-005.html [ Failure ]
  1199. crbug.com/1155036 external/wpt/css/css-flexbox/contain-size-layout-abspos-flex-container-crash.html [ Crash Pass ]
  1200. crbug.com/1311206 external/wpt/css/css-sizing/aspect-ratio/flex-aspect-ratio-038.html [ Failure ]
  1201. crbug.com/1299946 [ Mac ] external/wpt/css/css-sizing/min-content-negative-margin-crash.html [ Pass Timeout ]
  1202. # Needs "new" flex container intrinsic size algorithm.
  1203. crbug.com/240765 external/wpt/css/css-flexbox/flex-container-max-content-001.html [ Failure ]
  1204. crbug.com/240765 external/wpt/css/css-flexbox/flex-container-min-content-001.html [ Failure ]
  1205. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-001.html [ Failure ]
  1206. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-002.html [ Failure ]
  1207. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-003.html [ Failure ]
  1208. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-004.html [ Failure ]
  1209. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-005.html [ Failure ]
  1210. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-007.html [ Failure ]
  1211. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/row-008.html [ Failure ]
  1212. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-001.html [ Failure ]
  1213. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-002.html [ Failure ]
  1214. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-003.html [ Failure ]
  1215. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-005.html [ Failure ]
  1216. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-006.html [ Failure ]
  1217. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-007.html [ Failure ]
  1218. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-008.html [ Failure ]
  1219. crbug.com/240765 external/wpt/css/css-flexbox/intrinsic-size/col-wrap-009.html [ Failure ]
  1220. # These require css-align-3 positional keywords that Blink doesn't yet support for flexbox.
  1221. crbug.com/1011718 external/wpt/css/css-flexbox/flexbox-safe-overflow-position-001.html [ Failure ]
  1222. # We don't currently support visibility: collapse in flexbox
  1223. crbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-baseline-001.html [ Failure ]
  1224. crbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-001.html [ Failure ]
  1225. crbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-002.html [ Failure ]
  1226. crbug.com/336604 external/wpt/css/css-flexbox/flexbox-collapsed-item-horiz-003.html [ Failure ]
  1227. crbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse-line-wrapping.html [ Failure ]
  1228. crbug.com/336604 external/wpt/css/css-flexbox/flexbox_visibility-collapse.html [ Failure ]
  1229. crbug.com/606208 external/wpt/css/css-flexbox/order/order-abs-children-painting-order.html [ Failure ]
  1230. # We paint in an incorrect order when layers are present. Blocked on composite-after-paint.
  1231. crbug.com/370604 external/wpt/css/css-flexbox/flexbox-paint-ordering-002.xhtml [ Failure ]
  1232. # We haven't implemented last baseline alignment.
  1233. crbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001a.xhtml [ Failure ]
  1234. crbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-001b.xhtml [ Failure ]
  1235. crbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-006.xhtml [ Failure ]
  1236. crbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-007.xhtml [ Failure ]
  1237. crbug.com/886585 external/wpt/css/css-flexbox/flexbox-align-self-baseline-horiz-008.xhtml [ Failure ]
  1238. # [css-lists]
  1239. crbug.com/1123457 external/wpt/css/css-lists/counter-list-item.html [ Failure ]
  1240. crbug.com/1123457 external/wpt/css/css-lists/counter-list-item-2.html [ Failure ]
  1241. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-005.html [ Failure ]
  1242. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-004.html [ Failure ]
  1243. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006a.html [ Failure ]
  1244. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006b.html [ Failure ]
  1245. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006c.html [ Failure ]
  1246. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006d.html [ Failure ]
  1247. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-006e.html [ Failure ]
  1248. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007a.html [ Failure ]
  1249. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-007b.html [ Failure ]
  1250. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008a.html [ Failure ]
  1251. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-008b.html [ Failure ]
  1252. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009a.html [ Failure ]
  1253. crbug.com/1066577 external/wpt/css/css-lists/foo-counter-reversed-009b.html [ Failure ]
  1254. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-001.html [ Failure ]
  1255. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-002.html [ Failure ]
  1256. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-003.html [ Failure ]
  1257. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006a.html [ Failure ]
  1258. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006b.html [ Failure ]
  1259. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006c.html [ Failure ]
  1260. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006d.html [ Failure ]
  1261. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-006e.html [ Failure ]
  1262. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007a.html [ Failure ]
  1263. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-007b.html [ Failure ]
  1264. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008a.html [ Failure ]
  1265. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-008b.html [ Failure ]
  1266. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009a.html [ Failure ]
  1267. crbug.com/1066577 external/wpt/css/css-lists/li-value-reversed-009b.html [ Failure ]
  1268. crbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item-start.html [ Failure ]
  1269. crbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item.html [ Failure ]
  1270. crbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-list-item-start.html [ Failure ]
  1271. crbug.com/1066577 external/wpt/css/css-lists/counter-reset-reversed-not-list-item.html [ Failure ]
  1272. crbug.com/1270480 external/wpt/css/css-lists/marker-webkit-text-fill-color.html [ Failure ]
  1273. crbug.com/1270483 external/wpt/css/css-lists/li-value-counter-reset-001.html [ Failure ]
  1274. crbug.com/947844 external/wpt/css/css-lists/list-item-definition.html [ Failure ]
  1275. crbug.com/1330383 external/wpt/css/css-lists/counter-list-item-slot-order.html [ Failure ]
  1276. crbug.com/1330383 external/wpt/css/css-lists/counter-order-display-contents.html [ Failure ]
  1277. crbug.com/1330383 external/wpt/css/css-lists/counter-slot-order-scoping.html [ Failure ]
  1278. crbug.com/1330383 external/wpt/css/css-lists/counter-slot-order.html [ Failure ]
  1279. # [css-counter-styles-3]
  1280. crbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/prefix-suffix-syntax.html [ Failure ]
  1281. crbug.com/1176323 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-syntax.html [ Failure ]
  1282. crbug.com/1168277 external/wpt/css/css-counter-styles/counter-style-at-rule/disclosure-styles.html [ Failure ]
  1283. crbug.com/1176315 external/wpt/css/css-counter-styles/counter-style-at-rule/symbols-function.html [ Failure ]
  1284. # [css-overflow]
  1285. # Incorrect WPT tests.
  1286. crbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-008.html [ Failure ]
  1287. crbug.com/993813 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-025.html [ Failure ]
  1288. crbug.com/993813 external/wpt/css/css-overflow/webkit-line-clamp-029.html [ Failure ]
  1289. # Maybe WontFix according to the bug
  1290. crbug.com/750992 external/wpt/css/css-overflow/margin-block-end-scroll-area-001.html [ Failure ]
  1291. # Lack of support for font-language-override
  1292. crbug.com/481430 external/wpt/css/css-fonts/font-language-override-01.html [ Failure ]
  1293. crbug.com/481430 external/wpt/css/css-fonts/font-language-override-02.html [ Failure ]
  1294. # Comparing variable font rendering to static font rendering fails on systems that use FreeType for variable fonts
  1295. crbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-underline-position-from-font-variable.html [ Failure ]
  1296. crbug.com/1067242 [ Mac10.13 ] external/wpt/css/css-text-decor/text-decoration-thickness-from-font-variable.html [ Failure ]
  1297. # Windows 10 bot upgrade now causes these failures on Windows-10-18363
  1298. crbug.com/1140324 [ Win11 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]
  1299. crbug.com/1140324 [ Win10.20h2 ] external/wpt/css/css-text-decor/text-underline-offset-variable.html [ Failure ]
  1300. crbug.com/1143005 [ Win10.20h2 ] media/track/track-cue-rendering-vertical.html [ Failure ]
  1301. # Tentative mansonry tests
  1302. crbug.com/1076027 external/wpt/css/css-grid/masonry/* [ Skip ]
  1303. # external/wpt/css/css-fonts/... tests triaged away from the default WPT bug ID
  1304. crbug.com/1211460 external/wpt/css/css-fonts/alternates-order.html [ Failure ]
  1305. crbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/font-family-name-025.html [ Failure ]
  1306. crbug.com/443467 external/wpt/css/css-fonts/font-feature-settings-descriptor-01.html [ Failure ]
  1307. crbug.com/819816 external/wpt/css/css-fonts/font-kerning-03.html [ Failure ]
  1308. crbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-009.html [ Failure ]
  1309. crbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-010.html [ Failure ]
  1310. crbug.com/1219875 external/wpt/css/css-fonts/font-size-adjust-011.html [ Failure ]
  1311. crbug.com/1212668 external/wpt/css/css-fonts/font-variant-05.xht [ Failure ]
  1312. crbug.com/1212668 external/wpt/css/css-fonts/font-variant-06.xht [ Failure ]
  1313. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-02.html [ Failure ]
  1314. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-03.html [ Failure ]
  1315. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-04.html [ Failure ]
  1316. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-05.html [ Failure ]
  1317. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-06.html [ Failure ]
  1318. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-07.html [ Failure ]
  1319. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-08.html [ Failure ]
  1320. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-09.html [ Failure ]
  1321. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-10.html [ Failure ]
  1322. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-11.html [ Failure ]
  1323. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-12.html [ Failure ]
  1324. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-13.html [ Failure ]
  1325. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-14.html [ Failure ]
  1326. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-15.html [ Failure ]
  1327. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-16.html [ Failure ]
  1328. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-17.html [ Failure ]
  1329. crbug.com/716567 external/wpt/css/css-fonts/font-variant-alternates-18.html [ Failure ]
  1330. crbug.com/1212668 external/wpt/css/css-fonts/font-variant-descriptor-01.html [ Failure ]
  1331. crbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/font-variant-ligatures-11.html [ Failure ]
  1332. crbug.com/1212668 external/wpt/css/css-fonts/font-variant-position.html [ Failure ]
  1333. crbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/standard-font-family.html [ Failure ]
  1334. crbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/system-ui-ar.html [ Failure ]
  1335. crbug.com/1240186 [ Mac ] external/wpt/css/css-fonts/system-ui-ur.html [ Failure ]
  1336. crbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja-vs-zh.html [ Failure ]
  1337. crbug.com/1240236 external/wpt/css/css-fonts/system-ui-ja.html [ Failure ]
  1338. crbug.com/1240236 external/wpt/css/css-fonts/system-ui-ur-vs-ar.html [ Failure ]
  1339. crbug.com/1240236 external/wpt/css/css-fonts/system-ui-zh.html [ Failure ]
  1340. crbug.com/1269537 [ Mac ] fast/css-generated-content/quotes-lang.html [ Failure Pass ]
  1341. crbug.com/1317062 external/wpt/html/rendering/non-replaced-elements/phrasing-content-0/br-wbr-content/content-property.tentative.html [ Failure ]
  1342. # ====== Layout team owned tests to here ======
  1343. # ====== LayoutNG-only failures from here ======
  1344. # LayoutNG - is a new layout system for Blink.
  1345. crbug.com/591099 css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change.html [ Failure ]
  1346. crbug.com/591099 external/wpt/css/css-text/boundary-shaping/boundary-shaping-009.html [ Failure ]
  1347. crbug.com/591099 external/wpt/css/css-text/shaping/shaping-009.html [ Failure ]
  1348. crbug.com/591099 external/wpt/css/css-text/shaping/shaping-010.html [ Failure ]
  1349. crbug.com/591099 external/wpt/css/css-text/shaping/shaping-011.html [ Failure ]
  1350. crbug.com/591099 [ Mac ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]
  1351. crbug.com/591099 [ Win ] fast/backgrounds/quirks-mode-line-box-backgrounds.html [ Failure ]
  1352. crbug.com/591099 [ Linux ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]
  1353. crbug.com/591099 [ Mac11 ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]
  1354. crbug.com/591099 [ Win ] fast/borders/inline-mask-overlay-image-outset-vertical-rl.html [ Failure ]
  1355. crbug.com/835484 fast/css/outline-narrowLine.html [ Failure ]
  1356. crbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]
  1357. crbug.com/591099 [ Win ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-under.html [ Failure ]
  1358. crbug.com/591099 fast/events/touch/compositor-touch-hit-rects-continuation.html [ Failure ]
  1359. crbug.com/591099 fast/events/touch/compositor-touch-hit-rects-list-translate.html [ Failure ]
  1360. crbug.com/591099 fast/events/touch/compositor-touch-hit-rects.html [ Failure ]
  1361. crbug.com/889721 fast/inline/outline-continuations.html [ Failure ]
  1362. crbug.com/591099 virtual/text-antialias/font-format-support-color-cff2-vertical.html [ Failure ]
  1363. crbug.com/591099 virtual/text-antialias/whitespace/018.html [ Failure ]
  1364. crbug.com/591099 fast/writing-mode/auto-sizing-orthogonal-flows.html [ Failure ]
  1365. crbug.com/591099 fast/writing-mode/percentage-height-orthogonal-writing-modes.html [ Failure ]
  1366. crbug.com/835484 paint/invalidation/outline/inline-focus.html [ Failure ]
  1367. crbug.com/591099 paint/invalidation/scroll/fixed-under-composited-fixed-scrolled.html [ Failure ]
  1368. # CSS Text failures
  1369. crbug.com/316409 external/wpt/css/css-text/text-justify/text-justify-and-trailing-spaces-003.html [ Failure ]
  1370. crbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-105.html [ Failure ]
  1371. crbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-018.html [ Failure Pass ]
  1372. crbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-026.html [ Failure ]
  1373. crbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-028.html [ Failure ]
  1374. crbug.com/602434 external/wpt/css/css-text/text-transform/text-transform-tailoring-001.html [ Failure ]
  1375. crbug.com/750990 external/wpt/css/css-text/text-transform/text-transform-upperlower-006.html [ Failure ]
  1376. crbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-multiple-001.html [ Failure ]
  1377. crbug.com/906369 external/wpt/css/css-text/text-transform/text-transform-capitalize-033.html [ Failure ]
  1378. crbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-002.html [ Failure ]
  1379. crbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-002.html [ Failure ]
  1380. crbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-nesting-001.html [ Failure ]
  1381. crbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-bidi-001.html [ Failure ]
  1382. crbug.com/1219058 external/wpt/css/css-text/letter-spacing/letter-spacing-end-of-line-001.html [ Failure ]
  1383. crbug.com/1098801 external/wpt/css/css-text/overflow-wrap/overflow-wrap-normal-keep-all-001.html [ Failure ]
  1384. crbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-012.html [ Failure ]
  1385. crbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-013.html [ Failure ]
  1386. crbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-preserve-breaks-001.xht [ Failure ]
  1387. crbug.com/1219041 external/wpt/css/css-text/white-space/text-space-collapse-discard-001.xht [ Failure ]
  1388. crbug.com/1219041 external/wpt/css/css-text/white-space/text-space-trim-trim-inner-001.xht [ Failure ]
  1389. # LayoutNG ref-tests that need to be updated (cannot be rebaselined).
  1390. crbug.com/591099 [ Win ] virtual/text-antialias/ellipsis-with-self-painting-layer.html [ Failure ]
  1391. crbug.com/1098801 virtual/text-antialias/whitespace/whitespace-in-pre.html [ Failure ]
  1392. # LayoutNG failures that needs to be triaged
  1393. crbug.com/591099 virtual/text-antialias/selection/selection-rect-line-height-too-small.html [ Failure ]
  1394. crbug.com/591099 fast/css-intrinsic-dimensions/width-avoid-floats.html [ Failure ]
  1395. crbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-span.html [ Failure ]
  1396. crbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-span.html [ Failure ]
  1397. crbug.com/591099 [ Linux ] fast/selectors/shadow-host-div-with-text.html [ Failure ]
  1398. crbug.com/591099 [ Win ] fast/selectors/shadow-host-div-with-text.html [ Failure ]
  1399. crbug.com/591099 virtual/text-antialias/selection/inline-block-in-selection-root.html [ Failure ]
  1400. crbug.com/591099 [ Win ] editing/selection/paint-hyphen.html [ Failure Pass ]
  1401. crbug.com/591099 [ Mac11 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]
  1402. crbug.com/591099 [ Mac12 ] external/wpt/dom/ranges/Range-compareBoundaryPoints.html [ Failure Pass Timeout ]
  1403. crbug.com/591099 [ Mac ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]
  1404. crbug.com/591099 [ Win ] virtual/text-antialias/international/shape-across-elements-simple.html [ Failure ]
  1405. crbug.com/591099 [ Mac ] virtual/text-antialias/word-space-monospace.html [ Failure ]
  1406. crbug.com/591099 [ Win ] virtual/text-antialias/word-space-monospace.html [ Failure ]
  1407. crbug.com/591099 [ Mac ] css2.1/t1202-counter-09-b.html [ Failure ]
  1408. crbug.com/591099 [ Mac ] css2.1/t1202-counters-09-b.html [ Failure ]
  1409. crbug.com/591099 [ Mac ] external/wpt/css/CSS2/text/white-space-bidirectionality-001.xht [ Failure ]
  1410. crbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-001.html [ Failure ]
  1411. crbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-002.html [ Failure ]
  1412. crbug.com/591099 [ Mac ] external/wpt/css/css-text/text-transform/text-transform-shaping-003.html [ Failure ]
  1413. crbug.com/591099 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00C.html [ Failure ]
  1414. crbug.com/591099 [ Mac ] external/wpt/css/css-text/word-break/word-break-break-all-004.html [ Failure ]
  1415. crbug.com/591099 [ Mac ] external/wpt/css/css-transforms/transform-inline-001.html [ Failure ]
  1416. crbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-027.html [ Failure ]
  1417. crbug.com/591099 [ Mac ] external/wpt/css/css-ui/text-overflow-028.html [ Failure ]
  1418. crbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-embed-011.html [ Failure ]
  1419. crbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-isolate-011.html [ Failure ]
  1420. crbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-normal-011.html [ Failure ]
  1421. crbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-override-006.html [ Failure ]
  1422. crbug.com/591099 [ Mac ] external/wpt/css/css-writing-modes/bidi-plaintext-001.html [ Failure ]
  1423. crbug.com/591099 [ Mac ] fast/css/content-counter-010.htm [ Failure ]
  1424. crbug.com/591099 [ Mac ] fast/css/content/content-quotes-07.html [ Failure ]
  1425. crbug.com/591099 [ Mac10.14 ] fast/forms/text/text-lineheight-centering.html [ Failure ]
  1426. crbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/column-count-with-rules.html [ Failure ]
  1427. crbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-big-line.html [ Failure ]
  1428. crbug.com/591099 [ Mac10.14 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]
  1429. crbug.com/591099 [ Mac11 ] fast/multicol/vertical-rl/float-content-break.html [ Failure ]
  1430. crbug.com/591099 [ Mac ] paint/invalidation/box/hover-pseudo-borders.html [ Failure ]
  1431. crbug.com/591099 [ Mac ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-auto.html [ Failure ]
  1432. crbug.com/591099 [ Mac ] paint/invalidation/flexbox/remove-inline-block-descendant-of-flex.html [ Failure ]
  1433. # A few other lines for this test are commented out above to avoid conflicting expectations.
  1434. # If they are not also fixed, reinstate them when removing these lines.
  1435. crbug.com/982211 fast/events/before-unload-return-value-from-listener.html [ Crash Pass Timeout ]
  1436. # WPT css-writing-mode tests failing for various reasons beyond simple pixel diffs
  1437. crbug.com/1222818 external/wpt/css/css-writing-modes/logical-physical-mapping-001.html [ Failure ]
  1438. crbug.com/1212254 external/wpt/css/css-writing-modes/available-size-005.html [ Failure ]
  1439. crbug.com/1212254 external/wpt/css/css-writing-modes/available-size-003.html [ Failure ]
  1440. crbug.com/1212254 external/wpt/css/css-writing-modes/available-size-014.html [ Failure ]
  1441. crbug.com/1212254 external/wpt/css/css-writing-modes/available-size-013.html [ Failure ]
  1442. crbug.com/717862 [ Mac ] external/wpt/css/css-writing-modes/mongolian-orientation-002.html [ Failure ]
  1443. crbug.com/717862 external/wpt/css/css-writing-modes/mongolian-orientation-001.html [ Failure ]
  1444. crbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-008.xht [ Failure ]
  1445. crbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]
  1446. crbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vlr-in-htb-020.xht [ Failure ]
  1447. crbug.com/750992 external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-008.xht [ Failure ]
  1448. crbug.com/750992 [ Linux ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]
  1449. crbug.com/750992 [ Win ] external/wpt/css/css-writing-modes/sizing-orthog-vrl-in-htb-020.xht [ Failure ]
  1450. ### With LayoutNGFragmentItem enabled
  1451. crbug.com/982194 [ Win10.20h2 ] fast/writing-mode/border-image-vertical-lr.html [ Failure Pass ]
  1452. # Known issues with offsetTop/offsetLeft in a fragmented context, see crbug.com/1347984
  1453. crbug.com/1347984 fragmentation/table-in-subpixel-fragmentainer.html [ Failure ]
  1454. crbug.com/1347984 fragmentation/table-row-dimensions-break-freely.html [ Failure ]
  1455. crbug.com/1347984 fragmentation/table-row-dimensions-with-thead.html [ Failure ]
  1456. crbug.com/1347984 fragmentation/table-row-dimensions.html [ Failure ]
  1457. ### Tests failing with LayoutNGFlexFragmentation enabled:
  1458. crbug.com/660611 fast/multicol/flexbox/doubly-nested-with-zero-width-flexbox-and-forced-break-crash.html [ Skip ]
  1459. ### Tests failing with LayoutNGTableFragmentation enabled:
  1460. crbug.com/1078927 external/wpt/css/CSS2/floats-clear/clearance-containing-fragmented-float-crash.html [ Crash Failure ]
  1461. crbug.com/1295905 [ Mac11-arm64 ] external/wpt/css/css-break/table/sections-and-captions-mixed-order.html [ Failure ]
  1462. crbug.com/1078927 external/wpt/css/css-multicol/table/balance-table-with-border-spacing.html [ Failure ]
  1463. crbug.com/1078927 fast/multicol/table-row-height-increase.html [ Failure ]
  1464. crbug.com/1078927 fragmentation/border-spacing-break-before-unbreakable-row.html [ Failure ]
  1465. crbug.com/1078927 fragmentation/fragmented-rowspan-alignment.html [ Failure ]
  1466. crbug.com/1078927 fragmentation/fragmented-rowspan.html [ Failure ]
  1467. crbug.com/1078927 fragmentation/no-repeating-table-header-after-sections.html [ Failure ]
  1468. crbug.com/1352931 fragmentation/repeating-thead-under-repeating-thead.html [ Failure ]
  1469. crbug.com/1078927 fragmentation/table-overlapping-rowspan.html [ Failure ]
  1470. ### With LayoutNGPrinting enabled:
  1471. crbug.com/1121942 virtual/layout_ng_printing/printing/avoid-setting-header-offset-on-header.html [ Failure ]
  1472. crbug.com/1121942 virtual/layout_ng_printing/printing/block-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]
  1473. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-but-static-headers-and-footers.html [ Crash Failure ]
  1474. crbug.com/1121942 [ Debug Mac11 ] virtual/layout_ng_printing/printing/fixed-positioned-child-shouldnt-print.html [ Crash Failure Pass ]
  1475. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-composited.html [ Crash Failure ]
  1476. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-absolute-covering-some-pages.html [ Crash Failure ]
  1477. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-clipped.html [ Crash Failure ]
  1478. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Crash Failure ]
  1479. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers-transformed.html [ Crash Failure ]
  1480. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-headers-and-footers.html [ Crash Failure ]
  1481. crbug.com/1121942 virtual/layout_ng_printing/printing/fixed-positioned-overflow-scroll.html [ Crash Failure ]
  1482. crbug.com/1121942 virtual/layout_ng_printing/printing/flexbox-with-overflow-in-bottom-aligned-fixedpos.html [ Crash Failure ]
  1483. crbug.com/1121942 virtual/layout_ng_printing/printing/forced-break-tree-dump-only.html [ Failure ]
  1484. crbug.com/1121942 virtual/layout_ng_printing/printing/multi-page-background.html [ Failure ]
  1485. crbug.com/1121942 virtual/layout_ng_printing/printing/named-page-breaks.html [ Failure ]
  1486. crbug.com/1121942 virtual/layout_ng_printing/printing/page-break-avoid.html [ Failure ]
  1487. crbug.com/1121942 virtual/layout_ng_printing/printing/page-orientation-propagated.html [ Failure ]
  1488. crbug.com/1121942 virtual/layout_ng_printing/printing/page-orientation.html [ Failure ]
  1489. crbug.com/1121942 virtual/layout_ng_printing/printing/print-subframe.html [ Crash Failure ]
  1490. crbug.com/1121942 virtual/layout_ng_printing/printing/single-line-must-not-be-split-into-two-pages.html [ Failure ]
  1491. crbug.com/1121942 virtual/layout_ng_printing/printing/thead-repeat-in-nested-table.html [ Failure ]
  1492. crbug.com/1121942 virtual/layout_ng_printing/printing/thead-repeats-with-translucent-text-and-borders.html [ Failure ]
  1493. crbug.com/1121942 virtual/layout_ng_printing/printing/thead-tfoot-containing-svg-repeat-extra-pages.html [ Crash Failure ]
  1494. crbug.com/1121942 virtual/layout_ng_printing/printing/thead-tfoot-containing-svg-repeat.html [ Crash Failure ]
  1495. crbug.com/1121942 virtual/layout_ng_printing/printing/thead-under-multicol.html [ Failure ]
  1496. crbug.com/1121942 [ Linux ] virtual/layout_ng_printing/printing/vertical-rl.html [ Crash Failure ]
  1497. crbug.com/1121942 [ Mac11 ] virtual/layout_ng_printing/printing/vertical-rl.html [ Crash Failure ]
  1498. crbug.com/1121942 [ Mac12 ] virtual/layout_ng_printing/printing/vertical-rl.html [ Crash Failure ]
  1499. crbug.com/1121942 [ Win ] virtual/layout_ng_printing/printing/vertical-rl.html [ Crash Failure ]
  1500. crbug.com/1121942 virtual/layout_ng_printing/printing/webgl-oversized-printing.html [ Skip ]
  1501. crbug.com/1121942 virtual/layout_ng_printing/printing/width-overflow.html [ Failure ]
  1502. ### TablesNG
  1503. # crbug.com/958381
  1504. # TODO fails because cell size with only input element is 18px, not 15. line-height: 0px fixes it.
  1505. crbug.com/1171616 external/wpt/css/css-tables/height-distribution/percentage-sizing-of-table-cell-children.html [ Failure ]
  1506. # Composited background painting leaves gaps.
  1507. crbug.com/958381 fast/table/border-collapsing/composited-cell-collapsed-border.html [ Failure ]
  1508. crbug.com/958381 fast/table/border-collapsing/composited-row-collapsed-border.html [ Failure ]
  1509. # Rowspanned cell overflows TD visible rect.
  1510. crbug.com/958381 external/wpt/css/css-tables/visibility-collapse-rowspan-005.html [ Failure ]
  1511. # Mac failures - antialiasing of ref
  1512. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-087.xht [ Failure ]
  1513. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-088.xht [ Failure ]
  1514. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-089.xht [ Failure ]
  1515. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-090.xht [ Failure ]
  1516. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-091.xht [ Failure ]
  1517. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-092.xht [ Failure ]
  1518. crbug.com/958381 [ Mac ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]
  1519. crbug.com/958381 [ Win ] virtual/text-antialias/hyphen-min-preferred-width.html [ Failure ]
  1520. crbug.com/958381 [ Mac ] fragmentation/single-line-cells-paginated-with-text.html [ Failure ]
  1521. # TablesNG ends
  1522. # ====== LayoutNG-only failures until here ======
  1523. # ====== MathMLCore-only tests from here ======
  1524. # These tests fail because some CSS properties affect MathML layout.
  1525. crbug.com/1227601 external/wpt/mathml/relations/css-styling/ignored-properties-001.html [ Failure Timeout ]
  1526. crbug.com/1227598 external/wpt/mathml/relations/css-styling/width-height-001.html [ Failure ]
  1527. # These tests fail because we don't parse math display values according to the spec.
  1528. crbug.com/1127222 external/wpt/mathml/presentation-markup/mrow/legacy-mrow-like-elements-001.html [ Failure ]
  1529. # This test fails on windows. It should really be made more reliable and take
  1530. # into account fallback parameters.
  1531. crbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/fractions/frac-1.html [ Failure ]
  1532. # Tests failing only on certain platforms.
  1533. crbug.com/6606 [ Win ] external/wpt/mathml/presentation-markup/operators/mo-axis-height-1.html [ Failure ]
  1534. crbug.com/6606 [ Mac ] external/wpt/mathml/relations/text-and-math/use-typo-metrics-1.html [ Failure ]
  1535. # These tests fail because we don't support the MathML href attribute, which is
  1536. # not part of MathML Core Level 1.
  1537. crbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-1.html [ Failure ]
  1538. crbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-2.html [ Failure ]
  1539. crbug.com/6606 external/wpt/mathml/relations/html5-tree/href-click-3.html [ Failure ]
  1540. # These tests fail because they require full support for new text-transform
  1541. # values and mathvariant attribute. Currently, we only support the new
  1542. # text-transform: auto, use the UA rule for the <mi> element and map
  1543. # mathvariant="normal" to "text-transform: none".
  1544. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-001.tentative.html [ Failure ]
  1545. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-fraktur-001.tentative.html [ Failure ]
  1546. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-italic-001.tentative.html [ Failure ]
  1547. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-sans-serif-001.tentative.html [ Failure ]
  1548. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-bold-script-001.tentative.html [ Failure ]
  1549. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-double-struck-001.tentative.html [ Failure ]
  1550. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-fraktur-001.tentative.html [ Failure ]
  1551. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-initial-001.tentative.html [ Failure ]
  1552. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-italic-001.tentative.html [ Failure ]
  1553. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-looped-001.tentative.html [ Failure ]
  1554. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-monospace-001.tentative.html [ Failure ]
  1555. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-001.tentative.html [ Failure ]
  1556. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-bold-italic-001.tentative.html [ Failure ]
  1557. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-sans-serif-italic-001.tentative.html [ Failure ]
  1558. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-script-001.tentative.html [ Failure ]
  1559. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-stretched-001.tentative.html [ Failure ]
  1560. crbug.com/1076420 external/wpt/css/css-text/text-transform/math/text-transform-math-tailed-001.tentative.html [ Failure ]
  1561. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-fraktur.html [ Failure ]
  1562. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-italic.html [ Failure ]
  1563. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-sans-serif.html [ Failure ]
  1564. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold-script.html [ Failure ]
  1565. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-bold.html [ Failure ]
  1566. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-case-sensitivity.html [ Failure ]
  1567. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-double-struck.html [ Failure ]
  1568. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-fraktur.html [ Failure ]
  1569. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-initial.html [ Failure ]
  1570. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-italic.html [ Failure ]
  1571. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-looped.html [ Failure ]
  1572. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-monospace.html [ Failure ]
  1573. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-bold-italic.html [ Failure ]
  1574. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif-italic.html [ Failure ]
  1575. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-sans-serif.html [ Failure ]
  1576. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-script.html [ Failure ]
  1577. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-stretched.html [ Failure ]
  1578. crbug.com/1076420 external/wpt/mathml/relations/css-styling/mathvariant-tailed.html [ Failure ]
  1579. # ====== Style team owned tests from here ======
  1580. crbug.com/1353560 [ Linux ] external/wpt/css/css-content/quotes-001.html [ Failure ]
  1581. crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-006.html [ Failure ]
  1582. crbug.com/1341208 [ Mac ] external/wpt/css/css-content/quotes-007.html [ Skip ]
  1583. crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-009.html [ Failure ]
  1584. crbug.com/1353560 [ Mac10.13 ] external/wpt/css/css-content/quotes-012.html [ Failure ]
  1585. crbug.com/1353560 [ Mac10.14 ] external/wpt/css/css-content/quotes-012.html [ Failure ]
  1586. crbug.com/1353560 external/wpt/css/css-content/quotes-013.html [ Failure ]
  1587. crbug.com/1353560 [ Mac ] external/wpt/css/css-content/quotes-014.html [ Failure ]
  1588. crbug.com/1353560 [ Mac10.15 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
  1589. crbug.com/1353560 [ Mac11 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
  1590. crbug.com/1353560 [ Mac11-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
  1591. crbug.com/1353560 [ Mac12 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
  1592. crbug.com/1353560 [ Mac12-arm64 ] external/wpt/css/css-content/quotes-020.html [ Failure ]
  1593. crbug.com/1353560 [ Win ] external/wpt/css/css-content/quotes-030.html [ Failure ]
  1594. crbug.com/1067277 external/wpt/css/css-content/element-replacement-on-replaced-element.tentative.html [ Failure ]
  1595. crbug.com/1335893 external/wpt/css/css-content/content-none-root-columns.html [ Failure ]
  1596. crbug.com/1335893 external/wpt/css/css-content/content-none-root-ruby.html [ Failure ]
  1597. crbug.com/1335893 external/wpt/css/css-content/content-none-root-grid.html [ Failure ]
  1598. crbug.com/1335893 external/wpt/css/css-content/content-none-math.html [ Failure ]
  1599. crbug.com/1335893 external/wpt/css/css-content/content-none-root-flex.html [ Failure ]
  1600. crbug.com/1335893 external/wpt/css/css-content/content-none-root-table.html [ Failure ]
  1601. crbug.com/1335893 external/wpt/css/css-content/content-none-span-dynamic.html [ Failure ]
  1602. crbug.com/1335893 external/wpt/css/css-content/content-none-root-block.html [ Failure ]
  1603. crbug.com/1335893 external/wpt/css/css-content/content-none-details.html [ Failure ]
  1604. crbug.com/1335893 external/wpt/css/css-content/content-none-fieldset.html [ Failure ]
  1605. crbug.com/1335893 external/wpt/css/css-content/content-none-option.html [ Failure ]
  1606. crbug.com/1335893 external/wpt/css/css-content/content-none-select-1.html [ Failure ]
  1607. crbug.com/1335893 external/wpt/css/css-content/content-none-table.html [ Failure ]
  1608. crbug.com/1335893 external/wpt/css/css-content/content-none-select-2.html [ Failure ]
  1609. crbug.com/1335893 external/wpt/css/css-content/content-none-span.html [ Failure ]
  1610. crbug.com/995106 external/wpt/css/css-lists/inline-block-list.html [ Failure ]
  1611. crbug.com/995106 external/wpt/css/css-lists/inline-block-list-marker.html [ Failure ]
  1612. crbug.com/995106 external/wpt/css/css-lists/inline-list.html [ Failure ]
  1613. crbug.com/995106 external/wpt/css/css-lists/inline-list-marker.html [ Failure ]
  1614. crbug.com/995106 external/wpt/css/css-lists/inline-list-with-table-child.html [ Failure ]
  1615. crbug.com/1012289 [ Win10.20h2 ] external/wpt/css/css-lists/list-style-type-string-005b.html [ Failure ]
  1616. # css-pseudo
  1617. crbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-001.html [ Failure ]
  1618. crbug.com/1163437 external/wpt/css/css-pseudo/grammar-spelling-errors-002.html [ Failure ]
  1619. crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-001.html [ Failure ]
  1620. crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-002.html [ Failure ]
  1621. crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-004.html [ Failure ]
  1622. crbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-001.html [ Failure ]
  1623. crbug.com/1295264 crbug.com/1147859 external/wpt/css/css-pseudo/highlight-painting-currentcolor-002.html [ Failure ]
  1624. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Failure ]
  1625. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Failure ]
  1626. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Failure ]
  1627. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Failure ]
  1628. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Failure ]
  1629. crbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-marker.html [ Failure ]
  1630. crbug.com/995106 external/wpt/css/css-pseudo/first-letter-exclude-inline-child-marker.html [ Failure ]
  1631. crbug.com/1172333 external/wpt/css/css-pseudo/first-letter-hi-001.html [ Failure ]
  1632. crbug.com/1172333 external/wpt/css/css-pseudo/first-letter-digraph.html [ Failure ]
  1633. crbug.com/1314629 external/wpt/css/css-pseudo/selection-link-001.html [ Failure ]
  1634. crbug.com/1314629 external/wpt/css/css-pseudo/selection-link-002.html [ Failure ]
  1635. crbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-003.html [ Failure ]
  1636. crbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Failure ]
  1637. crbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Failure ]
  1638. crbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Failure ]
  1639. crbug.com/1035708 wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Failure ]
  1640. crbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-003.html [ Failure ]
  1641. crbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Failure ]
  1642. crbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Failure ]
  1643. crbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Failure ]
  1644. crbug.com/1035708 wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Failure ]
  1645. crbug.com/1147859 external/wpt/css/css-pseudo/target-text-004.html [ Failure ]
  1646. crbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]
  1647. crbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]
  1648. crbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]
  1649. crbug.com/1035708 external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]
  1650. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Failure ]
  1651. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-currentcolor-root-implicit-default-001.html [ Pass ]
  1652. crbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-001.html [ Failure ]
  1653. crbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-currentcolor-painting-properties-002.html [ Failure ]
  1654. crbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-001.html [ Failure ]
  1655. crbug.com/1350475 external/wpt/css/css-pseudo/highlight-currentcolor-painting-text-shadow-002.html [ Failure ]
  1656. crbug.com/1351020 [ Mac ] external/wpt/compat/webkit-text-fill-color-property-002.html [ Failure ]
  1657. # CSS highlight painting (HighlightOverlayPainting)
  1658. crbug.com/1147859 [ Mac ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html [ Failure ]
  1659. crbug.com/1147859 [ Mac ] external/wpt/css/css-pseudo/highlight-painting-003.html [ Failure ]
  1660. crbug.com/1321114 paint/markers/suggestion-marker-basic.html [ Failure ]
  1661. crbug.com/1205953 external/wpt/css/css-will-change/will-change-fixpos-cb-position-1.html [ Failure ]
  1662. crbug.com/1207788 external/wpt/css/css-will-change/will-change-stacking-context-mask-1.html [ Failure ]
  1663. # color() function not implemented
  1664. crbug.com/1068610 external/wpt/css/css-color/predefined-008.html [ Failure ]
  1665. crbug.com/1068610 external/wpt/css/css-color/predefined-005.html [ Failure ]
  1666. crbug.com/1068610 external/wpt/css/css-color/predefined-001.html [ Failure ]
  1667. crbug.com/1068610 external/wpt/css/css-color/predefined-011.html [ Failure ]
  1668. crbug.com/1068610 external/wpt/css/css-color/predefined-007.html [ Failure ]
  1669. crbug.com/1068610 external/wpt/css/css-color/predefined-002.html [ Failure ]
  1670. crbug.com/1068610 external/wpt/css/css-color/predefined-012.html [ Failure ]
  1671. crbug.com/1068610 external/wpt/css/css-color/predefined-016.html [ Failure ]
  1672. crbug.com/1068610 external/wpt/css/css-color/predefined-006.html [ Failure ]
  1673. crbug.com/1068610 external/wpt/css/css-color/predefined-009.html [ Failure ]
  1674. crbug.com/1068610 external/wpt/css/css-color/predefined-010.html [ Failure ]
  1675. crbug.com/1068610 external/wpt/css/css-color/a98rgb-001.html [ Failure ]
  1676. crbug.com/1068610 external/wpt/css/css-color/a98rgb-002.html [ Failure ]
  1677. crbug.com/1068610 external/wpt/css/css-color/a98rgb-003.html [ Failure ]
  1678. crbug.com/1068610 external/wpt/css/css-color/a98rgb-004.html [ Failure ]
  1679. crbug.com/1068610 external/wpt/css/css-color/lab-008.html [ Failure ]
  1680. crbug.com/1068610 external/wpt/css/css-color/lch-008.html [ Failure ]
  1681. crbug.com/1068610 external/wpt/css/css-color/lch-009.html [ Failure ]
  1682. crbug.com/1068610 external/wpt/css/css-color/lch-010.html [ Failure ]
  1683. crbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-001.html [ Failure ]
  1684. crbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-002.html [ Failure ]
  1685. crbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-003.html [ Failure ]
  1686. crbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-004.html [ Failure ]
  1687. crbug.com/1068610 external/wpt/css/css-color/prophoto-rgb-005.html [ Failure ]
  1688. crbug.com/1068610 external/wpt/css/css-color/rec2020-001.html [ Failure ]
  1689. crbug.com/1068610 external/wpt/css/css-color/rec2020-002.html [ Failure ]
  1690. crbug.com/1068610 external/wpt/css/css-color/rec2020-003.html [ Failure ]
  1691. crbug.com/1068610 external/wpt/css/css-color/rec2020-004.html [ Failure ]
  1692. crbug.com/1068610 external/wpt/css/css-color/rec2020-005.html [ Failure ]
  1693. crbug.com/1068610 external/wpt/css/css-color/xyz-001.html [ Failure ]
  1694. crbug.com/1068610 external/wpt/css/css-color/xyz-002.html [ Failure ]
  1695. crbug.com/1068610 external/wpt/css/css-color/xyz-003.html [ Failure ]
  1696. crbug.com/1068610 external/wpt/css/css-color/xyz-004.html [ Failure ]
  1697. crbug.com/1068610 external/wpt/css/css-color/xyz-005.html [ Failure ]
  1698. crbug.com/1068610 external/wpt/css/css-color/color-mix-basic-001.html [ Failure ]
  1699. crbug.com/1068610 external/wpt/css/css-color/color-mix-non-srgb-001.html [ Failure ]
  1700. crbug.com/1068610 external/wpt/css/css-color/tagged-images-003.html [ Failure ]
  1701. crbug.com/1068610 external/wpt/css/css-color/tagged-images-004.html [ Failure ]
  1702. crbug.com/1068610 external/wpt/css/css-color/color-mix-percents-01.html [ Failure ]
  1703. crbug.com/1068610 external/wpt/css/css-color/color-mix-percents-02.html [ Failure ]
  1704. crbug.com/1068610 external/wpt/css/css-color/display-p3-001.html [ Failure ]
  1705. crbug.com/1068610 external/wpt/css/css-color/display-p3-002.html [ Failure ]
  1706. crbug.com/1068610 external/wpt/css/css-color/display-p3-003.html [ Failure ]
  1707. crbug.com/1068610 external/wpt/css/css-color/display-p3-004.html [ Failure ]
  1708. crbug.com/1068610 external/wpt/css/css-color/display-p3-005.html [ Failure ]
  1709. crbug.com/1068610 external/wpt/css/css-color/display-p3-006.html [ Failure ]
  1710. crbug.com/1068610 external/wpt/css/css-color/oklab-001.html [ Failure ]
  1711. crbug.com/1068610 external/wpt/css/css-color/oklab-002.html [ Failure ]
  1712. crbug.com/1068610 external/wpt/css/css-color/oklab-003.html [ Failure ]
  1713. crbug.com/1068610 external/wpt/css/css-color/oklab-004.html [ Failure ]
  1714. crbug.com/1068610 external/wpt/css/css-color/oklab-005.html [ Failure ]
  1715. crbug.com/1068610 external/wpt/css/css-color/oklab-006.html [ Failure ]
  1716. crbug.com/1068610 external/wpt/css/css-color/oklab-007.html [ Failure ]
  1717. crbug.com/1068610 external/wpt/css/css-color/oklab-008.html [ Failure ]
  1718. crbug.com/1068610 external/wpt/css/css-color/oklch-001.html [ Failure ]
  1719. crbug.com/1068610 external/wpt/css/css-color/oklch-002.html [ Failure ]
  1720. crbug.com/1068610 external/wpt/css/css-color/oklch-003.html [ Failure ]
  1721. crbug.com/1068610 external/wpt/css/css-color/oklch-004.html [ Failure ]
  1722. crbug.com/1068610 external/wpt/css/css-color/oklch-005.html [ Failure ]
  1723. crbug.com/1068610 external/wpt/css/css-color/oklch-006.html [ Failure ]
  1724. crbug.com/1068610 external/wpt/css/css-color/oklch-007.html [ Failure ]
  1725. crbug.com/1068610 external/wpt/css/css-color/oklch-008.html [ Failure ]
  1726. crbug.com/1068610 external/wpt/css/css-color/oklch-009.html [ Failure ]
  1727. crbug.com/1068610 external/wpt/css/css-color/oklch-010.html [ Failure ]
  1728. crbug.com/1068610 external/wpt/css/css-color/srgb-linear-001.html [ Failure ]
  1729. crbug.com/1068610 external/wpt/css/css-color/srgb-linear-002.html [ Failure ]
  1730. crbug.com/1068610 external/wpt/css/css-color/srgb-linear-003.html [ Failure ]
  1731. crbug.com/1068610 external/wpt/css/css-color/srgb-linear-004.html [ Failure ]
  1732. crbug.com/1068610 external/wpt/css/css-color/xyz-d50-001.html [ Failure ]
  1733. crbug.com/1068610 external/wpt/css/css-color/xyz-d50-002.html [ Failure ]
  1734. crbug.com/1068610 external/wpt/css/css-color/xyz-d50-003.html [ Failure ]
  1735. crbug.com/1068610 external/wpt/css/css-color/xyz-d50-004.html [ Failure ]
  1736. crbug.com/1068610 external/wpt/css/css-color/xyz-d50-005.html [ Failure ]
  1737. crbug.com/1068610 external/wpt/css/css-color/xyz-d65-001.html [ Failure ]
  1738. crbug.com/1068610 external/wpt/css/css-color/xyz-d65-002.html [ Failure ]
  1739. crbug.com/1068610 external/wpt/css/css-color/xyz-d65-003.html [ Failure ]
  1740. crbug.com/1068610 external/wpt/css/css-color/xyz-d65-004.html [ Failure ]
  1741. crbug.com/1068610 external/wpt/css/css-color/xyz-d65-005.html [ Failure ]
  1742. crbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-a0.6-a.xht [ Failure ]
  1743. crbug.com/1068610 external/wpt/css/css-color/t32-opacity-basic-0.6-a.xht [ Failure ]
  1744. crbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-basic-a.xht [ Failure ]
  1745. crbug.com/1068610 [ Mac ] external/wpt/css/css-color/color-function-parsing.html [ Failure ]
  1746. crbug.com/1068610 [ Linux ] external/wpt/css/css-color/t422-rgba-onscreen-multiple-boxes-c.xht [ Failure ]
  1747. crbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-multiple-boxes-c.xht [ Failure ]
  1748. crbug.com/1068610 [ Linux ] external/wpt/css/css-color/t425-hsla-onscreen-b.xht [ Failure ]
  1749. crbug.com/1068610 external/wpt/css/css-color/at-color-profile-001.html [ Failure ]
  1750. crbug.com/1068610 external/wpt/css/css-color/color-mix-currentcolor-001.html [ Failure ]
  1751. crbug.com/1343361 external/wpt/css/css-color/currentcolor-003.html [ Failure ]
  1752. crbug.com/1299585 [ Mac11 ] external/wpt/css/css-color-adjust/inheritance.html [ Failure ]
  1753. crbug.com/1299585 external/wpt/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html [ Failure Pass ]
  1754. # @supports
  1755. crbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-001.html [ Failure ]
  1756. crbug.com/1269580 external/wpt/css/css-conditional/at-supports-namespace-002.html [ Failure ]
  1757. crbug.com/1158554 external/wpt/css/css-conditional/css-supports-040.xht [ Failure ]
  1758. crbug.com/1158554 external/wpt/css/css-conditional/css-supports-041.xht [ Failure ]
  1759. crbug.com/1158554 external/wpt/css/css-conditional/css-supports-042.xht [ Failure ]
  1760. crbug.com/1158554 external/wpt/css/css-conditional/at-supports-046.html [ Failure ]
  1761. # @container / contain:inline-size
  1762. crbug.com/1294155 external/wpt/css/css-contain/container-queries/canvas-as-container-004.html [ Failure ]
  1763. # CSS Scrollbars
  1764. crbug.com/891944 external/wpt/css/css-scrollbars/textarea-scrollbar-width-none.html [ Failure ]
  1765. crbug.com/891944 external/wpt/css/css-scrollbars/transparent-on-root.html [ Failure ]
  1766. # Incorrect native scrollbar repaint
  1767. crbug.com/891944 [ Mac ] external/wpt/css/css-scrollbars/scrollbar-width-paint-001.html [ Failure ]
  1768. # css-nesting
  1769. crbug.com/1095675 external/wpt/css/selectors/nesting.html [ Failure ]
  1770. # Failures on specific Mac bots
  1771. crbug.com/1319399 [ Mac11 ] external/wpt/css/selectors/focus-visible-025.html [ Failure ]
  1772. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-16.xml [ Skip ]
  1773. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-64.xml [ Skip ]
  1774. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-62.xml [ Skip ]
  1775. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19b.xml [ Skip ]
  1776. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-161.xml [ Skip ]
  1777. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18a.xml [ Skip ]
  1778. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18c.xml [ Skip ]
  1779. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-61.xml [ Skip ]
  1780. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-63.xml [ Skip ]
  1781. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18.xml [ Skip ]
  1782. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-19.xml [ Skip ]
  1783. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-20.xml [ Skip ]
  1784. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-66.xml [ Skip ]
  1785. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-21.xml [ Skip ]
  1786. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-177a.xml [ Skip ]
  1787. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-17.xml [ Skip ]
  1788. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-65.xml [ Skip ]
  1789. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-18b.xml [ Skip ]
  1790. crbug.com/1319441 external/wpt/css/selectors/old-tests/css3-modsel-159.xml [ Skip ]
  1791. # ====== Style team owned tests to here ======
  1792. # Failing WPT html/semantics/* tests. Not all have been investigated.
  1793. crbug.com/1233659 external/wpt/html/semantics/embedded-content/the-embed-element/embed-represent-nothing-04.html [ Failure ]
  1794. crbug.com/1234202 external/wpt/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ Failure ]
  1795. crbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-menu.html [ Failure ]
  1796. crbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-list-owner-skip-no-boxes.html [ Failure ]
  1797. crbug.com/1234841 external/wpt/html/semantics/grouping-content/the-li-element/grouping-li-reftest-007.html [ Failure ]
  1798. crbug.com/1167095 external/wpt/html/semantics/forms/form-submission-0/text-plain.window.html [ Pass Timeout ]
  1799. crbug.com/939561 [ Mac ] external/wpt/html/semantics/forms/the-input-element/show-picker.tentative.html [ Skip ]
  1800. crbug.com/1132413 external/wpt/html/semantics/scripting-1/the-script-element/json-module/parse-error.html [ Timeout ]
  1801. crbug.com/1232504 external/wpt/html/semantics/embedded-content/media-elements/src_object_blob.html [ Timeout ]
  1802. crbug.com/1232504 [ Win ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
  1803. crbug.com/1234199 [ Linux ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]
  1804. crbug.com/1234199 [ Mac ] external/wpt/html/semantics/embedded-content/the-object-element/object-events.html [ Skip ]
  1805. crbug.com/1232504 [ Mac11 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]
  1806. crbug.com/1232504 [ Mac12 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure Timeout ]
  1807. crbug.com/1292852 [ Mac ] external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-focus-shadow.html [ Failure Pass ]
  1808. # XML nodes aren't match by .class selectors:
  1809. crbug.com/649444 external/wpt/css/selectors/xml-class-selector.xml [ Failure ]
  1810. # Bug in <select multiple> tap behavior:
  1811. crbug.com/1045672 fast/forms/select/listbox-tap.html [ Failure ]
  1812. ### sheriff 2019-07-16
  1813. crbug.com/983799 [ Win ] http/tests/navigation/redirect-on-back-updates-history-item.html [ Pass Timeout ]
  1814. ### sheriff 2018-05-28
  1815. crbug.com/767269 [ Win ] inspector-protocol/layout-fonts/cjk-ideograph-fallback-by-lang.js [ Failure Pass ]
  1816. crbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]
  1817. crbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile.js [ Skip ]
  1818. crbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]
  1819. crbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-blink-gc.js [ Skip ]
  1820. crbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]
  1821. crbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-profile-partition-alloc.js [ Skip ]
  1822. crbug.com/803276 [ Mac ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]
  1823. crbug.com/803276 [ Win ] inspector-protocol/memory/sampling-native-snapshot.js [ Skip ]
  1824. # Elastic overscroll doesn't work on Mac/Linux when running as a web_test. Manually,
  1825. # this works as expected.
  1826. crbug.com/1310079 [ Mac ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]
  1827. crbug.com/1310079 [ Linux ] virtual/elastic-overscroll/fixed-elements-dont-overscroll.html [ Failure ]
  1828. # For win10, see crbug.com/955109
  1829. crbug.com/538697 [ Win ] printing/webgl-oversized-printing.html [ Crash Failure ]
  1830. crbug.com/904592 css3/filters/backdrop-filter-svg.html [ Failure ]
  1831. crbug.com/904592 [ Linux ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]
  1832. crbug.com/904592 [ Win ] virtual/scalefactor200/css3/filters/backdrop-filter-svg.html [ Pass ]
  1833. crbug.com/280342 http/tests/media/progress-events-generated-correctly.html [ Failure Pass ]
  1834. # This test is flaky when FixedElementsDontOverscroll is enabled.
  1835. crbug.com/585766 fast/table/frame-and-rules.html [ Failure Pass Timeout ]
  1836. # This test needs a new reference when FixedElementsDontOverscroll is enabled.
  1837. crbug.com/585766 [ Mac11 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]
  1838. crbug.com/585766 [ Mac11-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]
  1839. crbug.com/585766 [ Mac12 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]
  1840. crbug.com/585766 [ Mac12-arm64 ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-option-arbitrary-content-displayed.tentative.html [ Failure Pass Timeout ]
  1841. crbug.com/520736 [ Linux ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]
  1842. crbug.com/909095 [ Mac ] media/W3C/video/networkState/networkState_during_progress.html [ Failure Pass ]
  1843. # Hiding video::-webkit-media-controls breaks --force-overlay-fullscreen-video.
  1844. crbug.com/1093447 virtual/android/fullscreen/rendering/backdrop-video.html [ Failure ]
  1845. # gpuBenchmarking.pinchBy is busted on desktops for touchscreen pinch
  1846. crbug.com/787615 [ Win ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]
  1847. crbug.com/787615 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Failure Pass ]
  1848. # gpuBenchmarking.pinchBy is not implemented on Mac for touchscreen pinch
  1849. crbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Skip ]
  1850. crbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-out-slow.html [ Skip ]
  1851. crbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]
  1852. crbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow-desktop.html [ Skip ]
  1853. crbug.com/613672 [ Mac ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-desktop.html [ Skip ]
  1854. crbug.com/520188 [ Win ] http/tests/local/fileapi/file-last-modified-after-delete.html [ Failure Pass ]
  1855. crbug.com/520611 [ Debug ] fast/filesystem/workers/file-writer-events-shared-worker.html [ Failure Pass ]
  1856. crbug.com/520194 http/tests/xmlhttprequest/timeout/xmlhttprequest-timeout-worker-overridesexpires.html [ Failure Pass ]
  1857. crbug.com/1051136 fast/forms/select/listbox-overlay-scrollbar.html [ Failure ]
  1858. # These performance-sensitive user-timing tests are flaky in debug on all platforms, and flaky on all configurations of windows.
  1859. # See: crbug.com/567965, crbug.com/518992, and crbug.com/518993
  1860. crbug.com/432129 html/marquee/marquee-scroll.html [ Failure Pass ]
  1861. crbug.com/326139 crbug.com/390125 media/video-frame-accurate-seek.html [ Failure Pass ]
  1862. crbug.com/421283 html/marquee/marquee-scrollamount.html [ Failure Pass ]
  1863. # TODO(oshima): Move the event scaling code to eventSender and remove this.
  1864. crbug.com/567837 virtual/scalefactor200/fast/hidpi/static/gesture-scroll-amount.html [ Failure Timeout ]
  1865. crbug.com/567837 virtual/scalefactor200/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]
  1866. crbug.com/567837 [ Linux ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]
  1867. crbug.com/567837 [ Win ] virtual/scalefactor150/fast/hidpi/static/popup-menu-with-scrollbar-appearance.html [ Failure Timeout ]
  1868. # Only virtual/threaded version of these tests pass (or running them with --enable-threaded-compositing).
  1869. crbug.com/936891 fast/scrolling/document-level-touchmove-event-listener-passive-by-default.html [ Failure ]
  1870. crbug.com/498539 http/tests/devtools/tracing/timeline-misc/timeline-bound-function.js [ Failure Pass ]
  1871. crbug.com/498539 crbug.com/794869 crbug.com/798548 crbug.com/946716 http/tests/devtools/elements/styles-4/styles-update-from-js.js [ Crash Failure Pass Timeout ]
  1872. crbug.com/889952 fast/selectors/selection-window-inactive.html [ Failure Pass ]
  1873. crbug.com/1107923 inspector-protocol/debugger/wasm-streaming-url.js [ Failure Pass Timeout ]
  1874. # Script let/const redeclaration errors
  1875. crbug.com/1042162 http/tests/inspector-protocol/console/console-let-const-with-api.js [ Failure Pass ]
  1876. # Will be re-enabled and rebaselined once we remove the '--enable-file-cookies' flag.
  1877. crbug.com/470482 fast/cookies/local-file-can-set-cookies.html [ Skip ]
  1878. # Text::inDocument() returns false but should not.
  1879. crbug.com/264138 dom/legacy_dom_conformance/xhtml/level3/core/nodecomparedocumentposition38.xhtml [ Failure ]
  1880. crbug.com/411164 [ Win ] http/tests/security/powerfulFeatureRestrictions/serviceworker-on-insecure-origin.html [ Pass ]
  1881. crbug.com/686118 http/tests/security/setDomainRelaxationForbiddenForURLScheme.html [ Crash Pass ]
  1882. # Flaky tests on Mac after enabling scroll animations in web_tests
  1883. crbug.com/944583 [ Mac ] fast/events/keyboard-scroll-by-page.html [ Failure Pass ]
  1884. crbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-div.html [ Failure Pass ]
  1885. crbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-xy-in-scrolling-page.html [ Failure Pass ]
  1886. crbug.com/944583 [ Mac ] fast/events/space-scroll-textinput-canceled.html [ Failure Pass ]
  1887. crbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll-on-iframe.html [ Failure Pass ]
  1888. crbug.com/944583 [ Mac ] fast/scrolling/percentage-mousewheel-scroll.html [ Failure Pass ]
  1889. crbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-x-in-scrolling-page.html [ Failure Pass Timeout ]
  1890. crbug.com/944583 [ Mac ] fast/events/platform-wheelevent-paging-y-in-scrolling-page.html [ Failure Pass Timeout ]
  1891. # Sheriff: 2020-05-18
  1892. crbug.com/1083820 [ Mac ] fast/scrolling/document-level-wheel-event-listener-passive-by-default.html [ Failure Pass ]
  1893. # In external/wpt/html/, we prefer checking in failure
  1894. # expectation files. The following tests with [ Failure ] don't have failure
  1895. # expectation files because they contain local path names.
  1896. # Use crbug.com/490511 for untriaged failures.
  1897. crbug.com/108417 external/wpt/html/rendering/non-replaced-elements/tables/table-border-1.html [ Failure ]
  1898. crbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/color.html [ Failure ]
  1899. crbug.com/490511 external/wpt/html/rendering/non-replaced-elements/the-hr-element-0/width.html [ Failure ]
  1900. crbug.com/692560 external/wpt/html/semantics/document-metadata/styling/LinkStyle.html [ Failure Pass ]
  1901. crbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins.html [ Failure ]
  1902. crbug.com/895846 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-block-margins-2.html [ Failure ]
  1903. crbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-painting-order.html [ Failure ]
  1904. crbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-display-rendering.html [ Failure ]
  1905. crbug.com/1223214 external/wpt/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-tall.html [ Failure ]
  1906. crbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3s.html [ Failure ]
  1907. crbug.com/1172023 external/wpt/html/rendering/non-replaced-elements/tables/table-border-3q.html [ Failure ]
  1908. crbug.com/962936 external/wpt/html/rendering/widgets/button-layout/anonymous-button-content-box.html [ Failure ]
  1909. crbug.com/962936 external/wpt/html/rendering/widgets/button-layout/inline-level.html [ Failure ]
  1910. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1i.html [ Failure ]
  1911. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1j.html [ Failure ]
  1912. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1k.html [ Failure ]
  1913. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-1l.html [ Failure ]
  1914. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2i.html [ Failure ]
  1915. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2j.html [ Failure ]
  1916. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2k.html [ Failure ]
  1917. crbug.com/707210 external/wpt/html/rendering/non-replaced-elements/the-page/body-margin-2l.html [ Failure ]
  1918. crbug.com/821455 editing/pasteboard/drag-files-to-editable-element.html [ Failure ]
  1919. crbug.com/1170052 external/wpt/mediacapture-streams/MediaStreamTrack-MediaElement-disabled-audio-is-silence.https.html [ Pass Timeout ]
  1920. crbug.com/1174937 [ Mac10.15 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]
  1921. crbug.com/1174937 [ Mac11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]
  1922. crbug.com/1174937 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]
  1923. crbug.com/1174937 external/wpt/mediacapture-streams/MediaStream-clone.https.html [ Crash ]
  1924. crbug.com/766135 fast/dom/Window/redirect-with-timer.html [ Pass Timeout ]
  1925. # Ref tests that needs investigation.
  1926. crbug.com/404597 fast/forms/long-text-in-input.html [ Skip ]
  1927. crbug.com/552494 virtual/prefer_compositing_to_lcd_text/scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]
  1928. crbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-018.html [ Failure ]
  1929. crbug.com/305376 external/wpt/css/css-overflow/webkit-line-clamp-024.html [ Failure ]
  1930. crbug.com/1134483 [ Mac ] external/wpt/css/css-overflow/webkit-line-clamp-036.html [ Failure ]
  1931. crbug.com/745905 external/wpt/css/css-ui/text-overflow-021.html [ Failure ]
  1932. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-001.html [ Failure ]
  1933. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-rtl-001.html [ Failure ]
  1934. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-001.html [ Failure ]
  1935. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-lr-rtl-001.html [ Failure ]
  1936. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-001.html [ Failure ]
  1937. crbug.com/745905 external/wpt/css/css-overflow/text-overflow-scroll-vertical-rl-rtl-001.html [ Failure ]
  1938. crbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-002.html [ Failure ]
  1939. crbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-lr-002.html [ Failure ]
  1940. crbug.com/710214 [ Mac ] external/wpt/css/css-overflow/scrollbar-gutter-vertical-rl-002.html [ Crash Failure ]
  1941. crbug.com/1067031 external/wpt/css/css-overflow/webkit-line-clamp-035.html [ Failure ]
  1942. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-margin-001.html [ Failure Pass ]
  1943. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-004.html [ Failure Pass ]
  1944. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-circle-005.html [ Failure Pass ]
  1945. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-004.html [ Failure Pass ]
  1946. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-ellipse-005.html [ Failure Pass ]
  1947. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-inset-003.html [ Failure Pass ]
  1948. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-polygon-004.html [ Failure Pass ]
  1949. crbug.com/1339525 [ Win ] external/wpt/css/css-shapes/shape-outside/values/shape-outside-shape-arguments-000.html [ Failure Pass ]
  1950. crbug.com/1339541 [ Linux ] compositing/framesets/composited-frame-alignment.html [ Failure Pass ]
  1951. crbug.com/424365 external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-024.html [ Failure ]
  1952. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-008.html [ Failure ]
  1953. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-006.html [ Failure ]
  1954. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-005.html [ Failure ]
  1955. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-016.html [ Failure ]
  1956. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-013.html [ Failure ]
  1957. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-011.html [ Failure ]
  1958. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-014.html [ Failure ]
  1959. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-012.html [ Failure ]
  1960. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-015.html [ Failure ]
  1961. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-010.html [ Failure ]
  1962. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-009.html [ Failure ]
  1963. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-043.html [ Failure ]
  1964. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-048.html [ Failure ]
  1965. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-023.html [ Failure ]
  1966. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-027.html [ Failure ]
  1967. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-022.html [ Failure ]
  1968. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-008.html [ Failure ]
  1969. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-024.html [ Failure ]
  1970. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-011.html [ Failure ]
  1971. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-046.html [ Failure ]
  1972. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-052.html [ Failure ]
  1973. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-051.html [ Failure ]
  1974. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-010.html [ Failure ]
  1975. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-026.html [ Failure ]
  1976. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-012.html [ Failure ]
  1977. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-049.html [ Failure ]
  1978. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-047.html [ Failure ]
  1979. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-009.html [ Failure ]
  1980. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-053.html [ Failure ]
  1981. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-050.html [ Failure ]
  1982. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-006.html [ Failure ]
  1983. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-037.html [ Failure ]
  1984. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-025.html [ Failure ]
  1985. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-007.html [ Failure ]
  1986. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-box/shape-outside-border-box-border-radius-005.html [ Failure ]
  1987. crbug.com/1129522 external/wpt/css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-007.html [ Failure ]
  1988. crbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-001.html [ Failure ]
  1989. crbug.com/1024331 external/wpt/css/css-text/hyphens/hyphens-out-of-flow-002.html [ Failure ]
  1990. crbug.com/1140728 external/wpt/css/css-text/hyphens/hyphens-span-002.html [ Failure ]
  1991. crbug.com/1139693 virtual/text-antialias/hyphens/midword-break-priority.html [ Failure ]
  1992. crbug.com/1250257 external/wpt/css/css-text/tab-size/tab-size-block-ancestor.html [ Failure ]
  1993. crbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-001.html [ Failure ]
  1994. crbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-002.html [ Failure ]
  1995. crbug.com/921318 external/wpt/css/css-text/tab-size/tab-size-spacing-003.html [ Failure ]
  1996. crbug.com/970200 external/wpt/css/css-text/text-indent/text-indent-tab-positions-001.html [ Failure ]
  1997. crbug.com/1030452 external/wpt/css/css-text/text-transform/text-transform-upperlower-016.html [ Failure ]
  1998. crbug.com/1008029 [ Mac ] external/wpt/css/css-text/white-space/pre-wrap-018.html [ Failure ]
  1999. crbug.com/1008029 external/wpt/css/css-text/white-space/pre-wrap-019.html [ Failure ]
  2000. crbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-012.html [ Failure ]
  2001. crbug.com/1008029 external/wpt/css/css-text/white-space/textarea-pre-wrap-013.html [ Failure ]
  2002. # Handling of trailing other space separator
  2003. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-001.html [ Failure ]
  2004. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-002.html [ Failure ]
  2005. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-003.html [ Failure ]
  2006. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-other-space-separators-004.html [ Failure ]
  2007. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-001.html [ Failure ]
  2008. crbug.com/1129834 external/wpt/css/css-text/white-space/trailing-ideographic-space-002.html [ Failure ]
  2009. crbug.com/1162836 external/wpt/css/css-text/white-space/full-width-leading-spaces-004.html [ Failure ]
  2010. # Follow up the spec change for U+2010, U+2013
  2011. crbug.com/1052717 external/wpt/css/css-text/line-break/line-break-loose-hyphens-001.html [ Failure ]
  2012. crbug.com/1052717 external/wpt/css/css-text/line-break/line-break-normal-hyphens-002.html [ Failure ]
  2013. crbug.com/1052717 external/wpt/css/css-text/line-break/line-break-strict-hyphens-002.html [ Failure ]
  2014. # Inseparable characters
  2015. crbug.com/1091631 external/wpt/css/css-text/line-break/line-break-normal-015a.xht [ Failure ]
  2016. crbug.com/1091631 external/wpt/css/css-text/line-break/line-break-strict-015a.xht [ Failure ]
  2017. # Link event firing
  2018. crbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-error-events.html [ Timeout ]
  2019. crbug.com/922618 external/wpt/html/semantics/document-metadata/the-link-element/link-multiple-load-events.html [ Timeout ]
  2020. # crbug.com/1095379: These are flaky-slow, but are already present in SlowTests
  2021. crbug.com/73609 http/tests/media/video-play-stall.html [ Failure Pass Timeout ]
  2022. crbug.com/518987 http/tests/xmlhttprequest/navigation-abort-detaches-frame.html [ Pass Timeout ]
  2023. crbug.com/538717 [ Win ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]
  2024. crbug.com/829740 fast/history/history-back-twice-with-subframes-assert.html [ Pass Timeout ]
  2025. crbug.com/836783 fast/peerconnection/RTCRtpSender-setParameters.html [ Pass Timeout ]
  2026. # crbug.com/1218715 This fails when PartitionConnectionsByNetworkIsolationKey is enabled.
  2027. crbug.com/1218715 external/wpt/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]
  2028. crbug.com/1218715 wpt_internal/content-security-policy/reporting-api/reporting-api-works-on-frame-ancestors.https.sub.html [ Failure ]
  2029. # Sheriff 2021-05-25
  2030. crbug.com/1209900 fast/peerconnection/RTCPeerConnection-reload-sctptransport.html [ Failure Pass ]
  2031. # This test is currently failing everywhere
  2032. crbug.com/846981 fast/webgl/texImage-imageBitmap-from-imageData-resize.html [ Skip ]
  2033. # crbug.com/1095379: These fail with a timeout, even when they're given extra time (via SlowTests)
  2034. crbug.com/1135405 http/tests/devtools/sources/debugger-pause/debugger-pause-infinite-loop.js [ Pass Timeout ]
  2035. crbug.com/1072022 [ Mac ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]
  2036. crbug.com/1072022 [ Linux ] http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change-async.html [ Pass Timeout ]
  2037. crbug.com/915903 http/tests/security/inactive-document-with-empty-security-origin.html [ Pass Timeout ]
  2038. crbug.com/987138 [ Linux ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]
  2039. crbug.com/987138 [ Win ] media/controls/doubletap-to-jump-forwards.html [ Pass Timeout ]
  2040. crbug.com/1122742 http/tests/devtools/sources/debugger/source-frame-inline-breakpoint-decorations.js [ Pass Timeout ]
  2041. crbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck.https.html [ Pass Timeout ]
  2042. crbug.com/1002377 external/wpt/service-workers/service-worker/update-bytecheck-cors-import.https.html [ Pass Timeout ]
  2043. crbug.com/805756 external/wpt/html/semantics/tabular-data/processing-model-1/span-limits.html [ Pass Timeout ]
  2044. # crbug.com/1218716: These fail when TrustTokenOriginTrial is enabled.
  2045. crbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation-xhr.tentative.https.html [ Failure ]
  2046. crbug.com/1218716 external/wpt/trust-tokens/trust-token-parameter-validation.tentative.https.html [ Failure ]
  2047. crbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-default-feature-policy.tentative.https.sub.html [ Failure ]
  2048. crbug.com/1218716 external/wpt/feature-policy/experimental-features/trust-token-redemption-supported-by-feature-policy.tentative.html [ Failure ]
  2049. crbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-default-permissions-policy.tentative.https.sub.html [ Failure ]
  2050. crbug.com/1218716 external/wpt/permissions-policy/experimental-features/trust-token-redemption-supported-by-permissions-policy.tentative.html [ Failure ]
  2051. # Sheriff 2020-02-06
  2052. # These are added to W3CImportExpectations as Skip, remove when next import is done.
  2053. crbug.com/666657 external/wpt/css/css-text/hanging-punctuation/* [ Skip ]
  2054. crbug.com/909597 external/wpt/css/css-ui/text-overflow-ruby.html [ Failure ]
  2055. crbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-001.html [ Failure ]
  2056. crbug.com/1005518 external/wpt/css/css-writing-modes/direction-upright-002.html [ Failure ]
  2057. # crbug.com/1218721: These tests fail when libvpx_for_vp8 is enabled.
  2058. crbug.com/1218721 fast/borders/border-radius-mask-video-shadow.html [ Failure ]
  2059. crbug.com/1218721 fast/borders/border-radius-mask-video.html [ Failure ]
  2060. crbug.com/1218721 [ Mac ] http/tests/media/video-frame-size-change.html [ Failure ]
  2061. crbug.com/637055 fast/css/outline-offset-large.html [ Skip ]
  2062. # Either "combo" or split should run: http://testthewebforward.org/docs/css-naming.html
  2063. crbug.com/410320 external/wpt/css/css-writing-modes/orthogonal-parent-shrink-to-fit-001.html [ Skip ]
  2064. # These tests pass but images do not match because of wrong half-leading in vertical-lr
  2065. # These tests pass but images do not match because of position: absolute in vertical flow bug
  2066. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-003.xht [ Failure ]
  2067. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-005.xht [ Failure ]
  2068. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-007.xht [ Failure ]
  2069. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vlr-009.xht [ Failure ]
  2070. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-002.xht [ Failure ]
  2071. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-004.xht [ Failure ]
  2072. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-006.xht [ Failure ]
  2073. crbug.com/492664 external/wpt/css/css-writing-modes/clip-rect-vrl-008.xht [ Failure ]
  2074. # These tests pass but images do not match because tests are stricter than the spec.
  2075. crbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-001.html [ Failure ]
  2076. crbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-002.html [ Failure ]
  2077. crbug.com/492664 external/wpt/css/css-writing-modes/text-combine-upright-value-all-003.html [ Failure ]
  2078. # We're experimenting with changing the behavior of the 'nonce' attribute
  2079. # These CSS Writing Modes Level 3 tests pass but causes 1px diff on images, notified to the submitter.
  2080. crbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-008.xht [ Failure ]
  2081. crbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vlr-020.xht [ Failure ]
  2082. crbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-008.xht [ Failure ]
  2083. crbug.com/492664 [ Mac ] external/wpt/css/css-writing-modes/sizing-orthog-htb-in-vrl-020.xht [ Failure ]
  2084. crbug.com/381684 [ Mac ] fonts/family-fallback-gardiner.html [ Skip ]
  2085. crbug.com/381684 [ Win ] fonts/family-fallback-gardiner.html [ Skip ]
  2086. crbug.com/377696 printing/setPrinting.html [ Failure ]
  2087. crbug.com/1311165 printing/fixed-positioned-but-static-headers-and-footers.html [ Failure ]
  2088. crbug.com/1204498 external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass ]
  2089. crbug.com/1223681 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/client-navigate.https.html [ Failure Pass Timeout ]
  2090. # crbug.com/1218723 This test fails when SplitCacheByNetworkIsolationKey is enabled.
  2091. crbug.com/1218723 http/tests/devtools/network/network-prefetch.js [ Failure ]
  2092. crbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-001.html [ Failure Pass ]
  2093. crbug.com/1051044 external/wpt/css/filter-effects/effect-reference-feimage-003.html [ Failure Pass ]
  2094. crbug.com/524160 [ Debug ] http/tests/media/media-source/stream_memory_tests/mediasource-appendbuffer-quota-exceeded-default-buffers.html [ Timeout ]
  2095. # based on Builder Win7 Tests (1) and flakyness dashboard
  2096. crbug.com/1325545 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.html [ Failure Pass ]
  2097. crbug.com/1325515 [ Win ] external/wpt/cookie-store/cookieListItem_attributes.https.any.serviceworker.html [ Failure Pass ]
  2098. crbug.com/1325518 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.html [ Failure Pass ]
  2099. crbug.com/1325538 [ Win ] external/wpt/cookie-store/cookieStore_set_arguments.https.any.serviceworker.html [ Failure Pass ]
  2100. # On all platforms media tests don't currently use gpu-accelerated (proprietary)
  2101. # codecs, so no benefit to running them again with gpu acceleration enabled.
  2102. crbug.com/555703 virtual/media-gpu-accelerated/* [ Skip ]
  2103. crbug.com/400841 media/video-canvas-draw.html [ Failure ]
  2104. # switching to apache-win32: needs triaging.
  2105. crbug.com/528062 [ Win ] http/tests/css/missing-repaint-after-slow-style-sheet.pl [ Failure ]
  2106. crbug.com/528062 [ Win ] http/tests/local/blob/send-data-blob.html [ Failure Timeout ]
  2107. crbug.com/528062 [ Win ] http/tests/local/blob/send-hybrid-blob.html [ Failure Timeout ]
  2108. crbug.com/528062 [ Win ] http/tests/security/XFrameOptions/x-frame-options-cached.html [ Failure ]
  2109. crbug.com/528062 [ Win ] http/tests/security/contentSecurityPolicy/cached-frame-csp.html [ Failure ]
  2110. # When drawing subpixel smoothed glyphs, CoreGraphics will fake bold the glyphs.
  2111. # In this configuration, the pixel smoothed glyphs will be created from subpixel smoothed glyphs.
  2112. # This means that CoreGraphics may draw outside the reported glyph bounds, and in this case does.
  2113. # By about a quarter or less of a pixel.
  2114. crbug.com/997202 [ Mac ] virtual/text-antialias/international/bdo-bidi-width.html [ Failure ]
  2115. crbug.com/574283 [ Mac ] fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-anchors.html [ Skip ]
  2116. crbug.com/599670 [ Win ] http/tests/devtools/resource-parameters-ipv6.js [ Crash Failure Pass ]
  2117. crbug.com/472330 fast/borders/border-image-outset-split-inline-vertical-lr.html [ Failure ]
  2118. crbug.com/472330 fast/writing-mode/box-shadow-vertical-lr.html [ Failure ]
  2119. crbug.com/472330 fast/writing-mode/box-shadow-vertical-rl.html [ Failure ]
  2120. crbug.com/346473 fast/events/drag-on-mouse-move-cancelled.html [ Failure ]
  2121. # These tests are skipped as there is no touch support on Mac.
  2122. crbug.com/613672 [ Mac ] fast/events/pointerevents/multi-pointer-event-in-slop-region.html [ Skip ]
  2123. # In addition to having no support on Mac, the following test times out
  2124. # regularly on Windows.
  2125. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll.html [ Skip ]
  2126. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scroll-by-page.html [ Skip ]
  2127. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchpad-fling.html [ Skip ]
  2128. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-touchscreen-fling.html [ Skip ]
  2129. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar-mainframe.html [ Skip ]
  2130. crbug.com/613672 [ Mac ] fast/events/touch/gesture/gesture-scrollbar.html [ Skip ]
  2131. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-xhidden.html [ Skip ]
  2132. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-noscroll-body-yhidden.html [ Skip ]
  2133. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-diagonally.html [ Skip ]
  2134. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div-zoomed.html [ Skip ]
  2135. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-div.html [ Skip ]
  2136. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe-editable.html [ Skip ]
  2137. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-iframe.html [ Skip ]
  2138. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-input-field.html [ Skip ]
  2139. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-past-extent.html [ Skip ]
  2140. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page-zoomed.html [ Skip ]
  2141. crbug.com/613672 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-page.html [ Skip ]
  2142. # Since there is no compositor thread when running tests then there is no main thread event queue. Hence the
  2143. # logic for this test will be skipped when running Layout tests.
  2144. crbug.com/770028 external/wpt/pointerevents/pointerlock/pointerevent_getPredictedEvents_when_pointerlocked-manual.html [ Skip ]
  2145. crbug.com/770028 external/wpt/pointerevents/pointerevent_predicted_events_attributes-manual.html [ Skip ]
  2146. # This test relies on racy should_send_resource_timing_info_to_parent() flag being sent between processes.
  2147. crbug.com/957181 external/wpt/resource-timing/nested-context-navigations-iframe.html [ Failure Pass ]
  2148. # During work on crbug.com/1171767, we discovered a bug demonstrable through
  2149. # WPT. Marking as a failing test until we update our implementation.
  2150. crbug.com/1223118 external/wpt/resource-timing/initiator-type/link.html [ Failure ]
  2151. # Chrome touch-action computation ignores div transforms.
  2152. crbug.com/715148 external/wpt/pointerevents/pointerevent_touch-action-rotated-divs_touch-manual.html [ Skip ]
  2153. crbug.com/658304 [ Win ] fast/forms/select/input-select-after-resize.html [ Crash Failure Pass Timeout ]
  2154. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-001.html [ Failure ]
  2155. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-002.html [ Failure ]
  2156. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-003.html [ Failure ]
  2157. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-004.html [ Failure ]
  2158. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005.html [ Failure ]
  2159. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-005a.html [ Failure ]
  2160. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006.html [ Failure ]
  2161. crbug.com/736319 external/wpt/css/css-writing-modes/text-combine-upright-compression-006a.html [ Failure ]
  2162. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-11.html [ Failure ]
  2163. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-12.html [ Failure ]
  2164. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-13.html [ Failure ]
  2165. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-14.html [ Failure ]
  2166. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-15.html [ Failure ]
  2167. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-16.html [ Failure ]
  2168. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-19.html [ Failure ]
  2169. crbug.com/1029069 external/wpt/css/css-fonts/standard-font-family-20.html [ Failure ]
  2170. crbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-2.html [ Failure ]
  2171. crbug.com/1058772 external/wpt/css/css-fonts/test-synthetic-italic-3.html [ Failure ]
  2172. crbug.com/1191718 external/wpt/css/css-text-decor/text-decoration-thickness-percent-001.html [ Failure ]
  2173. crbug.com/752449 [ Mac10.14 ] external/wpt/css/css-fonts/matching/fixed-stretch-style-over-weight.html [ Failure ]
  2174. crbug.com/1191718 external/wpt/css/css-fonts/size-adjust-text-decoration.tentative.html [ Failure ]
  2175. # CSS Font Feature Resolution is not implemented yet
  2176. crbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-001.html [ Failure ]
  2177. crbug.com/450619 external/wpt/css/css-fonts/font-feature-resolution-002.html [ Failure ]
  2178. # Disabled briefly until test runner support lands.
  2179. crbug.com/479533 accessibility/show-context-menu.html [ Skip ]
  2180. crbug.com/479533 accessibility/show-context-menu-shadowdom.html [ Skip ]
  2181. crbug.com/483653 accessibility/scroll-containers.html [ Skip ]
  2182. # Temporarily disabled until document marker serialization is enabled for AXInlineTextBox
  2183. crbug.com/1227485 accessibility/spelling-markers.html [ Failure ]
  2184. # Bugs caused by enabling DMSAA on OOPR-Canvas
  2185. crbug.com/1229463 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-largedraws.html [ Crash ]
  2186. crbug.com/1229486 virtual/oopr-canvas2d/fast/canvas/canvas-incremental-repaint.html [ Failure ]
  2187. # Temporarily disabled after chromium change
  2188. crbug.com/492511 [ Mac ] virtual/text-antialias/atsui-negative-spacing-features.html [ Failure ]
  2189. crbug.com/492511 [ Mac ] virtual/text-antialias/international/arabic-justify.html [ Failure ]
  2190. crbug.com/501659 fast/xsl/xslt-missing-namespace-in-xslt.xml [ Failure ]
  2191. crbug.com/501659 http/tests/security/xss-DENIED-xml-external-entity.xhtml [ Failure ]
  2192. crbug.com/501659 fast/css/stylesheet-candidate-nodes-crash.xhtml [ Failure ]
  2193. # TODO(chrishtr) uncomment ones marked crbug.com/591500 after fixing crbug.com/665259.
  2194. crbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-but-static-headers-and-footers.html [ Failure Pass ]
  2195. crbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/fixed-positioned-headers-and-footers-larger-than-page.html [ Failure Pass ]
  2196. crbug.com/591500 [ Win10.20h2 ] virtual/threaded/printing/list-item-with-empty-first-line.html [ Failure ]
  2197. crbug.com/353746 virtual/android/fullscreen/video-specified-size.html [ Failure Pass ]
  2198. crbug.com/525296 fast/css/font-load-while-styleresolver-missing.html [ Crash Failure Pass ]
  2199. crbug.com/538717 http/tests/permissions/chromium/test-request-multiple-window.html [ Failure Pass Timeout ]
  2200. crbug.com/538717 http/tests/permissions/chromium/test-request-multiple-worker.html [ Failure Pass Timeout ]
  2201. crbug.com/538717 http/tests/permissions/chromium/test-request-multiple-sharedworker.html [ Failure Pass Timeout ]
  2202. crbug.com/548765 http/tests/devtools/console-fetch-logging.js [ Failure Pass ]
  2203. crbug.com/399951 http/tests/mime/javascript-mimetype-usecounters.html [ Failure Pass ]
  2204. crbug.com/663847 fast/events/context-no-deselect.html [ Failure Pass ]
  2205. crbug.com/611658 [ Win ] virtual/text-antialias/emphasis-combined-text.html [ Failure ]
  2206. crbug.com/654477 [ Win ] compositing/video/video-controls-layer-creation.html [ Failure Pass ]
  2207. crbug.com/654477 fast/hidpi/video-controls-in-hidpi.html [ Failure ]
  2208. crbug.com/654477 fast/layers/video-layer.html [ Failure ]
  2209. # These could likely be removed - see https://chromium-review.googlesource.com/c/chromium/src/+/1252141
  2210. crbug.com/654477 media/controls-focus-ring.html [ Failure ]
  2211. crbug.com/637930 http/tests/media/video-buffered.html [ Failure Pass ]
  2212. crbug.com/613659 external/wpt/quirks/percentage-height-calculation.html [ Failure ]
  2213. # Note: this test was previously marked as slow on Debug builds. Skipping until crash is fixed
  2214. crbug.com/619978 fast/css/giant-stylesheet-crash.html [ Skip ]
  2215. crbug.com/624430 [ Win10.20h2 ] virtual/text-antialias/font-features/caps-casemapping.html [ Failure ]
  2216. crbug.com/399507 virtual/threaded/http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]
  2217. # These tests have test harness errors and PASS lines that have a
  2218. # non-deterministic order.
  2219. crbug.com/705125 fast/mediacapturefromelement/CanvasCaptureMediaStream-capture-out-of-DOM-element.html [ Failure ]
  2220. # Working on getting the CSP tests going:
  2221. crbug.com/694525 external/wpt/content-security-policy/navigation/to-javascript-parent-initiated-child-csp.html [ Skip ]
  2222. # These tests will be added back soon:
  2223. crbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-aux-frame-navigation.sub.html [ Skip ]
  2224. crbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-main-frame-navigation.sub.html [ Skip ]
  2225. crbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-cross-origin-sub-frame-navigation.sub.html [ Skip ]
  2226. crbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-aux-frame-navigation.sub.html [ Skip ]
  2227. crbug.com/706350 external/wpt/html/browsers/browsing-the-web/history-traversal/window-name-after-same-origin-sub-frame-navigation.sub.html [ Skip ]
  2228. crbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-cross-document-traversal.html [ Timeout ]
  2229. crbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-hashchange.html [ Timeout ]
  2230. crbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-traversal-pushstate.html [ Timeout ]
  2231. # These two are like the above but some bots seem to give timeouts that count as failures according to the -expected.txt,
  2232. # while other bots give actual timeouts.
  2233. crbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/cross-document-traversal-same-document-nav.html [ Failure Timeout ]
  2234. crbug.com/1236768 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-same-document-nav.html [ Failure Timeout ]
  2235. crbug.com/876485 fast/performance/performance-measure-null-exception.html [ Failure ]
  2236. crbug.com/713587 external/wpt/css/css-ui/caret-color-006.html [ Skip ]
  2237. # Unprefixed image-set() not supported
  2238. crbug.com/630597 external/wpt/css/css-images/image-set/image-set-rendering.html [ Failure ]
  2239. crbug.com/630597 external/wpt/css/css-images/image-set/image-set-content-rendering.html [ Failure ]
  2240. crbug.com/604875 external/wpt/css/css-images/tiled-gradients.html [ Failure ]
  2241. crbug.com/1347068 external/wpt/css/css-images/gradient/gradient-eval-004.html [ Failure ]
  2242. crbug.com/808834 [ Linux ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]
  2243. crbug.com/808834 [ Win ] external/wpt/css/css-pseudo/first-letter-001.html [ Failure ]
  2244. crbug.com/723741 virtual/threaded/http/tests/devtools/tracing/idle-callback.js [ Crash Failure Pass Timeout ]
  2245. # Untriaged failures after https://crrev.com/c/543695/.
  2246. # These need to be updated but appear not to be related to that change.
  2247. crbug.com/626703 http/tests/devtools/indexeddb/database-refresh-view.js [ Failure Pass ]
  2248. crbug.com/626703 crbug.com/946710 http/tests/devtools/extensions/extensions-sidebar.js [ Crash Failure Pass Timeout ]
  2249. crbug.com/805463 external/wpt/acid/acid3/numbered-tests.html [ Skip ]
  2250. crbug.com/828506 [ Win ] fast/events/touch/scroll-without-mouse-lacks-mousemove-events.html [ Failure Pass ]
  2251. # Failure messages are unstable so we cannot create baselines.
  2252. crbug.com/832071 external/wpt/service-workers/service-worker/worker-client-id.https.html [ Failure ]
  2253. # failures in external/wpt/css/css-animations/ and web-animations/ from Mozilla tests
  2254. crbug.com/849859 external/wpt/css/css-animations/Element-getAnimations-dynamic-changes.tentative.html [ Failure ]
  2255. # Some control characters still not visible
  2256. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-001.html [ Failure ]
  2257. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-002.html [ Failure ]
  2258. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-003.html [ Failure ]
  2259. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-004.html [ Failure ]
  2260. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-005.html [ Failure ]
  2261. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-006.html [ Failure ]
  2262. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-007.html [ Failure ]
  2263. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-008.html [ Failure ]
  2264. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00B.html [ Failure ]
  2265. crbug.com/893490 external/wpt/css/css-text/white-space/control-chars-00D.html [ Failure ]
  2266. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00E.html [ Failure ]
  2267. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-00F.html [ Failure ]
  2268. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-010.html [ Failure ]
  2269. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-011.html [ Failure ]
  2270. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-012.html [ Failure ]
  2271. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-013.html [ Failure ]
  2272. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-014.html [ Failure ]
  2273. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-015.html [ Failure ]
  2274. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-016.html [ Failure ]
  2275. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-017.html [ Failure ]
  2276. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-018.html [ Failure ]
  2277. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-019.html [ Failure ]
  2278. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01A.html [ Failure ]
  2279. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01B.html [ Failure ]
  2280. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01C.html [ Failure ]
  2281. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01D.html [ Failure ]
  2282. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01E.html [ Failure ]
  2283. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-01F.html [ Failure ]
  2284. crbug.com/893490 external/wpt/css/css-text/white-space/control-chars-07F.html [ Failure ]
  2285. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-080.html [ Failure ]
  2286. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]
  2287. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-081.html [ Failure ]
  2288. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]
  2289. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-082.html [ Failure ]
  2290. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]
  2291. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-083.html [ Failure ]
  2292. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]
  2293. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-084.html [ Failure ]
  2294. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]
  2295. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-085.html [ Failure ]
  2296. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]
  2297. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-086.html [ Failure ]
  2298. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]
  2299. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-087.html [ Failure ]
  2300. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]
  2301. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-088.html [ Failure ]
  2302. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]
  2303. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-089.html [ Failure ]
  2304. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]
  2305. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08A.html [ Failure ]
  2306. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]
  2307. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08B.html [ Failure ]
  2308. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]
  2309. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08C.html [ Failure ]
  2310. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]
  2311. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08D.html [ Failure ]
  2312. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]
  2313. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08E.html [ Failure ]
  2314. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]
  2315. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-08F.html [ Failure ]
  2316. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]
  2317. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-090.html [ Failure ]
  2318. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]
  2319. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-091.html [ Failure ]
  2320. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]
  2321. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-092.html [ Failure ]
  2322. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]
  2323. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-093.html [ Failure ]
  2324. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]
  2325. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-094.html [ Failure ]
  2326. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]
  2327. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-095.html [ Failure ]
  2328. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]
  2329. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-096.html [ Failure ]
  2330. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]
  2331. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-097.html [ Failure ]
  2332. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]
  2333. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-098.html [ Failure ]
  2334. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]
  2335. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-099.html [ Failure ]
  2336. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]
  2337. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09A.html [ Failure ]
  2338. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]
  2339. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09B.html [ Failure ]
  2340. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]
  2341. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09C.html [ Failure ]
  2342. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]
  2343. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09D.html [ Failure ]
  2344. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]
  2345. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09E.html [ Failure ]
  2346. crbug.com/893490 [ Linux ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]
  2347. crbug.com/893490 [ Mac ] external/wpt/css/css-text/white-space/control-chars-09F.html [ Failure ]
  2348. # needs implementation of test_driver_internal.action_sequence
  2349. # tests in this group need implementation of keyDown/keyUp
  2350. crbug.com/893480 [ Mac ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]
  2351. crbug.com/893480 [ Win ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]
  2352. crbug.com/893480 [ Mac ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]
  2353. crbug.com/893480 [ Win ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]
  2354. crbug.com/893480 external/wpt/infrastructure/testdriver/actions/multiDevice.html [ Failure Timeout ]
  2355. crbug.com/893480 external/wpt/infrastructure/testdriver/actions/actionsWithKeyPressed.html [ Failure Timeout ]
  2356. crbug.com/893480 external/wpt/infrastructure/testdriver/actions/textEditCommands.html [ Failure Timeout ]
  2357. crbug.com/893480 [ Mac ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]
  2358. crbug.com/893480 [ Win ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]
  2359. crbug.com/893480 [ Mac ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]
  2360. crbug.com/893480 [ Win ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]
  2361. crbug.com/893480 external/wpt/html/semantics/forms/the-input-element/checkable-active-onblur.html [ Failure Timeout ]
  2362. crbug.com/893480 external/wpt/html/semantics/forms/the-button-element/active-onblur.html [ Failure Timeout ]
  2363. crbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/dialog-canceling.html [ Failure ]
  2364. crbug.com/893480 external/wpt/html/semantics/interactive-elements/the-dialog-element/inert-node-is-uneditable.html [ Failure ]
  2365. # tests in this group need implementation of focus navigation forward/backward
  2366. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/delegatesFocus-highlight-sibling.html [ Failure ]
  2367. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation.html [ Failure ]
  2368. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback.html [ Failure ]
  2369. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-fallback-default-tabindex.html [ Failure ]
  2370. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested.html [ Failure ]
  2371. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-2levels.html [ Failure ]
  2372. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-delegatesFocus.html [ Failure ]
  2373. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-nested-fallback.html [ Failure ]
  2374. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-fallback.html [ Failure ]
  2375. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-shadow-in-slot.html [ Failure ]
  2376. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slot-with-tabindex.html [ Failure ]
  2377. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots.html [ Failure ]
  2378. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-slots-in-slot.html [ Failure ]
  2379. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-navigation-with-delegatesFocus.html [ Failure ]
  2380. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-nested-slots.html [ Failure ]
  2381. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassignable-slot.html [ Failure ]
  2382. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-reverse-unassigned-slot.html [ Failure ]
  2383. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-unassignable-slot.html [ Failure ]
  2384. crbug.com/893480 external/wpt/shadow-dom/focus-navigation/focus-with-negative-index.html [ Failure ]
  2385. # needs implementation of test_driver_internal.action_sequence
  2386. # for these tests there is an exception when scrolling: element click intercepted error
  2387. crbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-basic.html [ Failure Timeout ]
  2388. crbug.com/1040611 external/wpt/uievents/order-of-events/mouse-events/wheel-scrolling.html [ Failure Timeout ]
  2389. # crbug.com/1298321: "element click intercepted error" when <body style="zoom:2">.
  2390. crbug.com/1298321 fast/forms/calendar-picker/calendar-picker-appearance-zoom200.html [ Failure Pass Timeout ]
  2391. crbug.com/1298321 fast/forms/calendar-picker/date-picker-appearance-zoom150.html [ Failure Pass Timeout ]
  2392. crbug.com/1298321 fast/forms/select-popup/popup-menu-appearance-zoom.html [ Failure Pass Timeout ]
  2393. crbug.com/1298321 fast/forms/suggestion-picker/date-suggestion-picker-appearance-zoom200.html [ Failure Pass Timeout ]
  2394. crbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]
  2395. crbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]
  2396. crbug.com/1298321 virtual/scalefactor200/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]
  2397. crbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/calendar-picker-appearance.html [ Failure Pass Timeout ]
  2398. crbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/data-suggestion-picker-appearance.html [ Failure Pass Timeout ]
  2399. crbug.com/1298321 virtual/scalefactor150/fast/hidpi/static/popup-menu-appearance.html [ Failure Pass Timeout ]
  2400. # crbug.com/1299212: These need more work after the revamp of picker-common.js
  2401. crbug.com/1299212 fast/forms/select-popup/popup-menu-appearance-coarse.html [ Failure Pass Timeout ]
  2402. crbug.com/1299212 fast/forms/select-popup/popup-menu-position.html [ Failure Pass Timeout ]
  2403. crbug.com/1299212 http/tests/webfont/popup-menu-load-webfont-after-open.html [ Failure Pass Timeout ]
  2404. crbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/date-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]
  2405. crbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/week-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]
  2406. crbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/month-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]
  2407. crbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/time-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]
  2408. crbug.com/1299212 crbug.com/1047176 fast/forms/suggestion-picker/datetimelocal-suggestion-picker-mouse-operations.html [ Failure Pass Timeout ]
  2409. crbug.com/1299212 fast/forms/color-scheme/select/select-appearance-after-closing-popup.html [ Failure Pass Timeout ]
  2410. crbug.com/1299212 fast/forms/color-scheme/select/select-popup-appearance-basic.html [ Failure Pass Timeout ]
  2411. crbug.com/1299212 fast/forms/select/menulist-popup-type-ahead-style-change.html [ Failure Pass Timeout ]
  2412. crbug.com/1299212 fast/forms/calendar-picker/date-picker-choose-default-value-after-set-value.html [ Failure Pass ]
  2413. crbug.com/1299212 fast/forms/calendar-picker/date-picker-input-change-events.html [ Crash Pass Timeout ]
  2414. crbug.com/1299212 fast/forms/datetimelocal/datetimelocal-picker-input-change-events.html [ Crash Pass Timeout ]
  2415. crbug.com/1299212 fast/forms/month/month-picker-input-change-events.html [ Pass Timeout ]
  2416. crbug.com/1299212 fast/forms/time/time-picker-input-change-events.html [ Pass Timeout ]
  2417. crbug.com/1299212 fast/forms/week/week-picker-input-change-events.html [ Crash Pass Timeout ]
  2418. # This might be just flaky on Windows:
  2419. crbug.com/1299212 virtual/scroll-unification/fast/forms/suggestion-picker/* [ Failure Pass Timeout ]
  2420. crbug.com/1299212 [ Linux ] fast/forms/select/menulist-popup-mutation-crash.html [ Failure Pass Timeout ]
  2421. # These appear to be flaky at least on Linux:
  2422. crbug.com/1299212 [ Linux ] fast/forms/week/week-picker-ax.html [ Failure Pass ]
  2423. crbug.com/1299212 [ Linux ] fast/forms/select-popup/popup-menu-ax.html [ Failure Pass ]
  2424. # isInputPending requires threaded compositing and layerized iframes
  2425. crbug.com/910421 external/wpt/is-input-pending/* [ Skip ]
  2426. crbug.com/910421 virtual/threaded-composited-iframes/external/wpt/is-input-pending/* [ Pass ]
  2427. # requestIdleCallback requires threaded compositing
  2428. crbug.com/1259718 external/wpt/requestidlecallback/* [ Skip ]
  2429. crbug.com/1259718 virtual/threaded/external/wpt/requestidlecallback/* [ Pass ]
  2430. crbug.com/1259718 http/tests/devtools/isolated-code-cache/* [ Skip ]
  2431. crbug.com/1259718 virtual/threaded/http/tests/devtools/isolated-code-cache/* [ Pass ]
  2432. # WebVTT is off because additional padding
  2433. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_completely_move_up.html [ Failure ]
  2434. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_down.html [ Failure ]
  2435. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_cues_overlapping_partially_move_up.html [ Failure ]
  2436. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end.html [ Failure ]
  2437. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_end_wrapped.html [ Failure ]
  2438. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start.html [ Failure ]
  2439. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_start_wrapped.html [ Failure ]
  2440. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/basic.html [ Failure ]
  2441. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/bidi_ruby.html [ Failure ]
  2442. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_LF_u05D0.html [ Failure ]
  2443. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2028_u05D0.html [ Failure ]
  2444. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u002E_u2029_u05D0.html [ Failure ]
  2445. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0041_first.html [ Failure ]
  2446. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u05D0_first.html [ Failure ]
  2447. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u0628_first.html [ Failure ]
  2448. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/u06E9_no_strong_dir.html [ Failure ]
  2449. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/cue_too_long.html [ Failure ]
  2450. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/decode_escaped_entities.html [ Failure ]
  2451. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/disable_controls_reposition.html [ Failure ]
  2452. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size.html [ Failure ]
  2453. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_align_position_line_size_while_paused.html [ Failure ]
  2454. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_line.html [ Failure ]
  2455. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text.html [ Failure ]
  2456. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/dom_override_cue_text_while_paused.html [ Failure ]
  2457. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/enable_controls_reposition.html [ Failure ]
  2458. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely_all_cues_have_same_timestamp.html [ Failure ]
  2459. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/9_cues_overlapping_completely.html [ Failure ]
  2460. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_height_19.html [ Failure ]
  2461. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/single_quote.html [ Failure ]
  2462. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_90.html [ Failure ]
  2463. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/size_99.html [ Failure ]
  2464. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_0_is_top.html [ Failure ]
  2465. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_1_wrapped_cue_grow_downwards.html [ Failure ]
  2466. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_-2_wrapped_cue_grow_upwards.html [ Failure ]
  2467. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_50_percent.html [ Failure ]
  2468. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap.html [ Failure ]
  2469. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_integer_and_percent_mixed_overlap_move_up.html [ Failure ]
  2470. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap.html [ Failure ]
  2471. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/line_percent_and_integer_mixed_overlap_move_up.html [ Failure ]
  2472. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_height400_with_controls.html [ Failure ]
  2473. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/media_with_controls.html [ Failure ]
  2474. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/navigate_cue_position.html [ Failure ]
  2475. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/one_line_cue_plus_wrapped_cue.html [ Failure ]
  2476. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/repaint.html [ Failure ]
  2477. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_properties.html [ Failure ]
  2478. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand_css_relative_url.html [ Failure ]
  2479. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/background_shorthand.html [ Failure ]
  2480. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hex.html [ Failure ]
  2481. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_hsla.html [ Failure ]
  2482. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/color_rgba.html [ Failure ]
  2483. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/cue_selector_single_colon.html [ Failure ]
  2484. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_properties.html [ Failure ]
  2485. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/font_shorthand.html [ Failure ]
  2486. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_box.html [ Failure ]
  2487. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_properties.html [ Failure ]
  2488. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand_css_relative_url.html [ Failure ]
  2489. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/background_shorthand.html [ Failure ]
  2490. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_animation_with_timestamp.html [ Failure ]
  2491. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_properties.html [ Failure ]
  2492. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_background_shorthand.html [ Failure ]
  2493. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_color.html [ Failure ]
  2494. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_properties.html [ Failure ]
  2495. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_font_shorthand.html [ Failure ]
  2496. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_namespace.html [ Failure ]
  2497. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_properties.html [ Failure ]
  2498. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_outline_shorthand.html [ Failure ]
  2499. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-decoration_line-through.html [ Failure ]
  2500. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_text-shadow.html [ Failure ]
  2501. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_future.html [ Failure ]
  2502. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_timestamp_past.html [ Failure ]
  2503. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_transition_with_timestamp.html [ Failure ]
  2504. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_normal_wrapped.html [ Failure ]
  2505. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_nowrap.html [ Failure ]
  2506. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-line_wrapped.html [ Failure ]
  2507. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre_wrapped.html [ Failure ]
  2508. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_white-space_pre-wrap_wrapped.html [ Failure ]
  2509. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class.html [ Failure ]
  2510. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/bold_object/bold_with_class_object_specific_selector.html [ Failure ]
  2511. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_animation_with_timestamp.html [ Failure ]
  2512. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_properties.html [ Failure ]
  2513. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_background_shorthand.html [ Failure ]
  2514. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_color.html [ Failure ]
  2515. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_properties.html [ Failure ]
  2516. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_font_shorthand.html [ Failure ]
  2517. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_namespace.html [ Failure ]
  2518. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_properties.html [ Failure ]
  2519. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_outline_shorthand.html [ Failure ]
  2520. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-decoration_line-through.html [ Failure ]
  2521. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_text-shadow.html [ Failure ]
  2522. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_future.html [ Failure ]
  2523. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_timestamp_past.html [ Failure ]
  2524. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_transition_with_timestamp.html [ Failure ]
  2525. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_nowrap.html [ Failure ]
  2526. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre_wrapped.html [ Failure ]
  2527. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-wrap_wrapped.html [ Failure ]
  2528. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class.html [ Failure ]
  2529. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_with_class_object_specific_selector.html [ Failure ]
  2530. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hex.html [ Failure ]
  2531. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_hsla.html [ Failure ]
  2532. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/color_rgba.html [ Failure ]
  2533. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/cue_func_selector_single_colon.html [ Failure ]
  2534. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_properties.html [ Failure ]
  2535. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/font_shorthand.html [ Failure ]
  2536. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/id_color.html [ Failure ]
  2537. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/inherit_values_from_media_element.html [ Failure ]
  2538. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_animation_with_timestamp.html [ Failure ]
  2539. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_properties.html [ Failure ]
  2540. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_background_shorthand.html [ Failure ]
  2541. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_color.html [ Failure ]
  2542. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_properties.html [ Failure ]
  2543. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_font_shorthand.html [ Failure ]
  2544. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_namespace.html [ Failure ]
  2545. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_properties.html [ Failure ]
  2546. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_outline_shorthand.html [ Failure ]
  2547. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-decoration_line-through.html [ Failure ]
  2548. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_text-shadow.html [ Failure ]
  2549. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_future.html [ Failure ]
  2550. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_timestamp_past.html [ Failure ]
  2551. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_transition_with_timestamp.html [ Failure ]
  2552. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_normal_wrapped.html [ Failure ]
  2553. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_nowrap.html [ Failure ]
  2554. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-line_wrapped.html [ Failure ]
  2555. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre_wrapped.html [ Failure ]
  2556. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_white-space_pre-wrap_wrapped.html [ Failure ]
  2557. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class.html [ Failure ]
  2558. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/italic_object/italic_with_class_object_specific_selector.html [ Failure ]
  2559. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_allowed_properties.html [ Failure ]
  2560. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/not_root_selector.html [ Failure ]
  2561. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_properties.html [ Failure ]
  2562. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/outline_shorthand.html [ Failure ]
  2563. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_namespace.html [ Failure ]
  2564. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/root_selector.html [ Failure ]
  2565. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_line-through.html [ Failure ]
  2566. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline.html [ Failure ]
  2567. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_overline_underline_line-through.html [ Failure ]
  2568. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-decoration_underline.html [ Failure ]
  2569. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/text-shadow.html [ Failure ]
  2570. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/type_selector_root.html [ Failure ]
  2571. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_animation_with_timestamp.html [ Failure ]
  2572. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_properties.html [ Failure ]
  2573. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_background_shorthand.html [ Failure ]
  2574. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_color.html [ Failure ]
  2575. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_properties.html [ Failure ]
  2576. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_font_shorthand.html [ Failure ]
  2577. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_namespace.html [ Failure ]
  2578. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_properties.html [ Failure ]
  2579. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_outline_shorthand.html [ Failure ]
  2580. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-decoration_line-through.html [ Failure ]
  2581. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_text-shadow.html [ Failure ]
  2582. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_future.html [ Failure ]
  2583. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_timestamp_past.html [ Failure ]
  2584. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_transition_with_timestamp.html [ Failure ]
  2585. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_normal_wrapped.html [ Failure ]
  2586. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_nowrap.html [ Failure ]
  2587. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-line_wrapped.html [ Failure ]
  2588. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre_wrapped.html [ Failure ]
  2589. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_white-space_pre-wrap_wrapped.html [ Failure ]
  2590. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class.html [ Failure ]
  2591. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/underline_object/underline_with_class_object_specific_selector.html [ Failure ]
  2592. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_animation_with_timestamp.html [ Failure ]
  2593. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_properties.html [ Failure ]
  2594. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_background_shorthand.html [ Failure ]
  2595. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_color.html [ Failure ]
  2596. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_properties.html [ Failure ]
  2597. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_font_shorthand.html [ Failure ]
  2598. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_namespace.html [ Failure ]
  2599. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_properties.html [ Failure ]
  2600. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_outline_shorthand.html [ Failure ]
  2601. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-decoration_line-through.html [ Failure ]
  2602. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_text-shadow.html [ Failure ]
  2603. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_future.html [ Failure ]
  2604. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_timestamp_past.html [ Failure ]
  2605. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_transition_with_timestamp.html [ Failure ]
  2606. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_voice_attribute.html [ Failure ]
  2607. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_normal_wrapped.html [ Failure ]
  2608. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_nowrap.html [ Failure ]
  2609. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-line_wrapped.html [ Failure ]
  2610. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre_wrapped.html [ Failure ]
  2611. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_white-space_pre-wrap_wrapped.html [ Failure ]
  2612. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class.html [ Failure ]
  2613. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/voice_object/voice_with_class_object_specific_selector.html [ Failure ]
  2614. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_normal_wrapped.html [ Failure ]
  2615. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_nowrap_wrapped.html [ Failure ]
  2616. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre.html [ Failure ]
  2617. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-line_wrapped.html [ Failure ]
  2618. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre_wrapped.html [ Failure ]
  2619. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/white-space_pre-wrap_wrapped.html [ Failure ]
  2620. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/inherit_values_from_media_element.html [ Failure ]
  2621. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_properties.html [ Failure ]
  2622. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/outline_shorthand.html [ Failure ]
  2623. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region/font_properties.html [ Failure ]
  2624. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue-region_function/font_properties.html [ Failure ]
  2625. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_line-through.html [ Failure ]
  2626. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline.html [ Failure ]
  2627. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_overline_underline_line-through.html [ Failure ]
  2628. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-decoration_underline.html [ Failure ]
  2629. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/text-shadow.html [ Failure ]
  2630. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_normal_wrapped.html [ Failure ]
  2631. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_nowrap_wrapped.html [ Failure ]
  2632. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre.html [ Failure ]
  2633. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-line_wrapped.html [ Failure ]
  2634. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre_wrapped.html [ Failure ]
  2635. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/white-space_pre-wrap_wrapped.html [ Failure ]
  2636. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/bold_object_default_font-style.html [ Failure ]
  2637. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/inherit_as_default_value_inherits_values_from_media_element.html [ Failure ]
  2638. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/italic_object_default_font-style.html [ Failure ]
  2639. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/default_styles/underline_object_default_font-style.html [ Failure ]
  2640. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/size_50.html [ Failure ]
  2641. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues.html [ Failure ]
  2642. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/too_many_cues_wrapped.html [ Failure ]
  2643. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center.html [ Failure ]
  2644. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_50.html [ Failure ]
  2645. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50.html [ Failure ]
  2646. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50.html [ Failure ]
  2647. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_lt_50_size_gt_maximum_size.html [ Failure ]
  2648. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_wrapped.html [ Failure ]
  2649. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/basic.html [ Failure ]
  2650. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_x_50_percent.html [ Failure ]
  2651. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/regionanchor_y_50_percent.html [ Failure ]
  2652. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/scroll_up.html [ Failure ]
  2653. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/single_line_top_left.html [ Failure ]
  2654. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_x_50_percent.html [ Failure ]
  2655. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/viewportanchor_y_50_percent.html [ Failure ]
  2656. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/regions/width_50_percent.html [ Failure ]
  2657. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/align_center_position_gt_50_size_gt_maximum_size.html [ Failure ]
  2658. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/start_alignment.html [ Failure ]
  2659. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_rl.html [ Failure ]
  2660. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_ruby-position.html [ Failure ]
  2661. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_vertical_text-combine-upright.html [ Failure ]
  2662. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/bidi/vertical_lr.html [ Failure ]
  2663. crbug.com/1012242 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue/vertical_text-combine-upright.html [ Failure ]
  2664. # Flaky test
  2665. crbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]
  2666. crbug.com/1126649 [ Mac ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]
  2667. # FontFace object failures detected by WPT test
  2668. crbug.com/965409 external/wpt/css/css-font-loading/fontface-descriptor-updates.html [ Failure ]
  2669. crbug.com/1002514 external/wpt/web-share/share-sharePromise-internal-slot.https.html [ Crash Failure ]
  2670. crbug.com/1029514 external/wpt/html/semantics/embedded-content/the-video-element/resize-during-playback.html [ Failure Pass ]
  2671. # ::first-line issues
  2672. crbug.com/1085772 external/wpt/css/css-pseudo/first-line-opacity-001.html [ Failure ]
  2673. crbug.com/798257 external/wpt/css/css-pseudo/first-line-line-height-002.html [ Failure ]
  2674. # motion-1 issues
  2675. crbug.com/641245 external/wpt/css/motion/offset-path-ray-002.html [ Failure ]
  2676. crbug.com/641245 external/wpt/css/motion/offset-path-ray-003.html [ Failure ]
  2677. crbug.com/641245 external/wpt/css/motion/offset-path-ray-004.html [ Failure ]
  2678. crbug.com/641245 external/wpt/css/motion/offset-path-ray-005.html [ Failure ]
  2679. crbug.com/641245 external/wpt/css/motion/offset-path-ray-006.html [ Failure ]
  2680. crbug.com/641245 external/wpt/css/motion/offset-path-ray-007.html [ Failure ]
  2681. crbug.com/641245 external/wpt/css/motion/offset-path-ray-009.html [ Failure ]
  2682. crbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-001.html [ Failure ]
  2683. crbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-002.html [ Failure ]
  2684. crbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-003.html [ Failure ]
  2685. crbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-004.html [ Failure ]
  2686. crbug.com/641245 external/wpt/css/motion/offset-path-ray-contain-005.html [ Failure ]
  2687. crbug.com/654669 external/wpt/css/motion/offset-path-shape.html [ Failure ]
  2688. crbug.com/654666 external/wpt/css/motion/offset-path-url.html [ Failure ]
  2689. # Various css-values WPT failures
  2690. crbug.com/1053965 external/wpt/css/css-values/ex-unit-004.html [ Failure ]
  2691. crbug.com/759914 external/wpt/css/css-values/ch-unit-011.html [ Failure ]
  2692. crbug.com/965366 external/wpt/css/css-values/ch-unit-017.html [ Failure ]
  2693. crbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-002.html [ Failure ]
  2694. crbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-003.html [ Failure ]
  2695. crbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-009.html [ Failure ]
  2696. crbug.com/1350027 [ Mac ] external/wpt/css/css-values/ic-unit-010.html [ Failure ]
  2697. crbug.com/937104 external/wpt/css/css-values/lh-unit-002.html [ Failure ]
  2698. crbug.com/937104 external/wpt/css/css-values/lh-unit-001.html [ Failure ]
  2699. crbug.com/1069300 external/wpt/css/css-pseudo/active-selection-063.html [ Failure ]
  2700. crbug.com/1108711 external/wpt/css/css-pseudo/active-selection-057.html [ Failure ]
  2701. crbug.com/1110399 external/wpt/css/css-pseudo/active-selection-031.html [ Failure ]
  2702. crbug.com/1110401 external/wpt/css/css-pseudo/active-selection-045.html [ Failure ]
  2703. crbug.com/1024156 external/wpt/css/css-pseudo/active-selection-027.html [ Failure ]
  2704. crbug.com/1024156 external/wpt/css/css-pseudo/active-selection-025.html [ Failure ]
  2705. crbug.com/27659 external/wpt/css/css-ruby/block-ruby-001.html [ Failure ]
  2706. crbug.com/27659 external/wpt/css/css-ruby/block-ruby-002.html [ Failure ]
  2707. crbug.com/27659 external/wpt/css/css-ruby/block-ruby-005.html [ Failure ]
  2708. crbug.com/27659 external/wpt/css/css-ruby/empty-ruby-base-container.html [ Failure ]
  2709. crbug.com/27659 external/wpt/css/css-ruby/empty-ruby-text-container-float.html [ Failure ]
  2710. crbug.com/27659 external/wpt/css/css-ruby/improperly-contained-annotation-001.html [ Failure ]
  2711. crbug.com/27659 external/wpt/css/css-ruby/rb-display-001.html [ Failure ]
  2712. crbug.com/27659 external/wpt/css/css-ruby/root-block-ruby.xhtml [ Failure ]
  2713. crbug.com/27659 external/wpt/css/css-ruby/root-ruby.xhtml [ Failure ]
  2714. crbug.com/27659 external/wpt/css/css-ruby/rt-display-001.html [ Failure ]
  2715. crbug.com/27659 external/wpt/css/css-ruby/ruby-align-001.html [ Failure ]
  2716. crbug.com/27659 external/wpt/css/css-ruby/ruby-align-001a.html [ Failure ]
  2717. crbug.com/27659 external/wpt/css/css-ruby/ruby-align-002.html [ Failure ]
  2718. crbug.com/27659 external/wpt/css/css-ruby/ruby-align-002a.html [ Failure ]
  2719. crbug.com/27659 external/wpt/css/css-ruby/ruby-annotation-pairing-001.html [ Failure ]
  2720. crbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-abs.html [ Failure ]
  2721. crbug.com/27659 external/wpt/css/css-ruby/ruby-base-container-float.html [ Failure ]
  2722. crbug.com/27659 external/wpt/css/css-ruby/ruby-base-different-size.html [ Failure ]
  2723. crbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-002.html [ Failure ]
  2724. crbug.com/27659 external/wpt/css/css-ruby/ruby-bidi-003.html [ Failure ]
  2725. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-001.html [ Failure ]
  2726. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-002.html [ Failure ]
  2727. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-003.html [ Failure ]
  2728. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-004.html [ Failure ]
  2729. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-generation-005.html [ Failure ]
  2730. crbug.com/27659 external/wpt/css/css-ruby/ruby-box-model-001.html [ Failure ]
  2731. crbug.com/27659 external/wpt/css/css-ruby/ruby-float-handling-001.html [ Failure ]
  2732. crbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-001.html [ Failure ]
  2733. crbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-002.html [ Failure ]
  2734. crbug.com/27659 external/wpt/css/css-ruby/ruby-intrinsic-isize-003.html [ Failure ]
  2735. crbug.com/27659 external/wpt/css/css-ruby/ruby-justification-001.html [ Failure ]
  2736. crbug.com/27659 external/wpt/css/css-ruby/ruby-justification-002.html [ Failure ]
  2737. crbug.com/27659 external/wpt/css/css-ruby/ruby-lang-specific-style-001.html [ Failure ]
  2738. crbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-001.html [ Failure ]
  2739. crbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-002.html [ Failure ]
  2740. crbug.com/27659 external/wpt/css/css-ruby/ruby-line-break-suppression-003.html [ Failure ]
  2741. crbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-001.html [ Failure ]
  2742. crbug.com/27659 external/wpt/css/css-ruby/ruby-line-breaking-003.html [ Failure ]
  2743. crbug.com/27659 external/wpt/css/css-ruby/ruby-text-collapse.html [ Failure ]
  2744. crbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-001.html [ Failure ]
  2745. crbug.com/27659 external/wpt/css/css-ruby/ruby-whitespace-002.html [ Failure ]
  2746. crbug.com/27659 external/wpt/css/css-ruby/rbc-rtc-basic-001.html [ Failure ]
  2747. crbug.com/1223955 external/wpt/css/css-ruby/nested-ruby-pairing-001.html [ Failure ]
  2748. crbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-001.html [ Failure ]
  2749. crbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-002.html [ Failure ]
  2750. crbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-003.html [ Failure ]
  2751. crbug.com/1223955 external/wpt/css/css-ruby/ruby-autohide-004.html [ Failure ]
  2752. crbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-001.html [ Failure ]
  2753. crbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-002.html [ Failure ]
  2754. crbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-003.html [ Failure ]
  2755. crbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-004.html [ Failure ]
  2756. crbug.com/1223955 external/wpt/css/css-ruby/ruby-inlinize-blocks-005.html [ Failure ]
  2757. crbug.com/1333451 external/wpt/css/css-ruby/intra-base-white-space-001.html [ Failure ]
  2758. # WebRTC: Perfect Negotiation times out in Plan B. This is expected.
  2759. crbug.com/980872 virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-perfect-negotiation.https.html [ Skip Timeout ]
  2760. # WebRTC: there's an open bug with some capture scenarios not working.
  2761. crbug.com/1156408 external/wpt/webrtc/RTCPeerConnection-relay-canvas.https.html [ Failure Pass Timeout ]
  2762. crbug.com/1074547 external/wpt/css/css-transitions/transitioncancel-002.html [ Timeout ]
  2763. crbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-004.html [ Failure ]
  2764. crbug.com/1024156 external/wpt/css/css-pseudo/cascade-highlight-005.html [ Failure ]
  2765. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-001.html [ Failure ]
  2766. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-cascade-002.html [ Failure ]
  2767. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Failure ]
  2768. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Failure ]
  2769. crbug.com/1024156 external/wpt/css/css-pseudo/highlight-styling-002.html [ Failure ]
  2770. crbug.com/1113004 external/wpt/css/css-pseudo/active-selection-043.html [ Failure ]
  2771. crbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-051.html [ Failure ]
  2772. crbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-052.html [ Failure ]
  2773. crbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-053.html [ Failure ]
  2774. crbug.com/1100119 [ Mac ] external/wpt/css/css-pseudo/active-selection-054.html [ Failure ]
  2775. crbug.com/1018465 external/wpt/css/css-pseudo/active-selection-056.html [ Failure ]
  2776. crbug.com/932343 external/wpt/css/css-pseudo/active-selection-014.html [ Failure ]
  2777. # virtual/css-highlight-inheritance/
  2778. crbug.com/1217745 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/active-selection-018.html [ Failure ]
  2779. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-004.html [ Pass ]
  2780. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/cascade-highlight-005.html [ Pass ]
  2781. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-001.html [ Pass ]
  2782. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-cascade-002.html [ Pass ]
  2783. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-003.html [ Pass ]
  2784. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-paired-cascade-006.html [ Pass ]
  2785. crbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-001.html [ Pass ]
  2786. crbug.com/1295264 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-002.html [ Pass ]
  2787. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-inheritance-computed-003.html [ Pass ]
  2788. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-currentcolor-visited-computed-001.html [ Pass ]
  2789. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-002.html [ Pass ]
  2790. crbug.com/1024156 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-styling-004.html [ Pass ]
  2791. crbug.com/1309822 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/highlight-pseudos-inheritance-computed-001.html [ Pass ]
  2792. crbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-001.html [ Failure ]
  2793. crbug.com/1035708 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-002.html [ Failure ]
  2794. crbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-003.html [ Failure ]
  2795. crbug.com/1179938 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/target-text-dynamic-004.html [ Failure ]
  2796. crbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-001.html [ Pass ]
  2797. crbug.com/1314629 virtual/css-highlight-inheritance/external/wpt/css/css-pseudo/selection-link-002.html [ Pass ]
  2798. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-001.html [ Pass ]
  2799. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-002.html [ Pass ]
  2800. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-003.html [ Pass ]
  2801. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/grammar-error-color-dynamic-004.html [ Pass ]
  2802. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-001.html [ Pass ]
  2803. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-002.html [ Pass ]
  2804. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-003.html [ Pass ]
  2805. crbug.com/1035708 virtual/css-highlight-inheritance/wpt_internal/css/css-pseudo/spelling-error-color-dynamic-004.html [ Pass ]
  2806. crbug.com/825270 external/wpt/payment-request/delegate-request.https.sub.html [ Failure ]
  2807. crbug.com/1105958 external/wpt/payment-request/payment-is-showing.https.html [ Failure Timeout ]
  2808. ### external/wpt/css/CSS2/tables/
  2809. crbug.com/958381 external/wpt/css/CSS2/tables/column-visibility-004.xht [ Failure ]
  2810. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-079.xht [ Skip ]
  2811. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-080.xht [ Skip ]
  2812. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-081.xht [ Skip ]
  2813. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-082.xht [ Skip ]
  2814. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-083.xht [ Skip ]
  2815. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-084.xht [ Skip ]
  2816. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-085.xht [ Skip ]
  2817. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-086.xht [ Skip ]
  2818. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-093.xht [ Skip ]
  2819. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-094.xht [ Skip ]
  2820. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-095.xht [ Skip ]
  2821. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-096.xht [ Skip ]
  2822. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-097.xht [ Skip ]
  2823. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-098.xht [ Skip ]
  2824. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-103.xht [ Skip ]
  2825. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-104.xht [ Skip ]
  2826. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-125.xht [ Skip ]
  2827. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-126.xht [ Skip ]
  2828. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-127.xht [ Skip ]
  2829. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-128.xht [ Skip ]
  2830. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-129.xht [ Skip ]
  2831. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-130.xht [ Skip ]
  2832. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-131.xht [ Skip ]
  2833. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-132.xht [ Skip ]
  2834. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-155.xht [ Skip ]
  2835. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-156.xht [ Skip ]
  2836. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-157.xht [ Skip ]
  2837. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-158.xht [ Skip ]
  2838. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-167.xht [ Skip ]
  2839. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-168.xht [ Skip ]
  2840. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-171.xht [ Skip ]
  2841. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-172.xht [ Skip ]
  2842. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-181.xht [ Skip ]
  2843. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-182.xht [ Skip ]
  2844. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-183.xht [ Skip ]
  2845. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-184.xht [ Skip ]
  2846. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-185.xht [ Skip ]
  2847. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-186.xht [ Skip ]
  2848. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-187.xht [ Skip ]
  2849. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-188.xht [ Skip ]
  2850. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-199.xht [ Skip ]
  2851. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-200.xht [ Skip ]
  2852. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-201.xht [ Skip ]
  2853. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-202.xht [ Skip ]
  2854. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-203.xht [ Skip ]
  2855. crbug.com/958381 external/wpt/css/CSS2/tables/table-anonymous-objects-204.xht [ Skip ]
  2856. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/anonymous-table-box-width-001.xht [ Failure ]
  2857. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-009.xht [ Failure ]
  2858. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-010.xht [ Failure ]
  2859. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-011.xht [ Failure ]
  2860. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-012.xht [ Failure ]
  2861. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-015.xht [ Failure ]
  2862. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-016.xht [ Failure ]
  2863. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-017.xht [ Failure ]
  2864. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-019.xht [ Failure ]
  2865. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-020.xht [ Failure ]
  2866. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-177.xht [ Failure ]
  2867. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-178.xht [ Failure ]
  2868. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-179.xht [ Failure ]
  2869. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-180.xht [ Failure ]
  2870. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-189.xht [ Failure ]
  2871. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-190.xht [ Failure ]
  2872. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-191.xht [ Failure ]
  2873. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-192.xht [ Failure ]
  2874. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-193.xht [ Failure ]
  2875. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-194.xht [ Failure ]
  2876. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-195.xht [ Failure ]
  2877. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-196.xht [ Failure ]
  2878. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-197.xht [ Failure ]
  2879. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-198.xht [ Failure ]
  2880. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-205.xht [ Failure ]
  2881. crbug.com/958381 [ Mac ] external/wpt/css/CSS2/tables/table-anonymous-objects-206.xht [ Failure ]
  2882. # unblock roll wpt
  2883. crbug.com/626703 external/wpt/service-workers/service-worker/worker-interception.https.html [ Failure ]
  2884. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/worker-interception.https.html [ Pass ]
  2885. # ====== Test expectations added to unblock wpt-importer ======
  2886. crbug.com/626703 external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]
  2887. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/worker-dedicated-constructor.sub.html [ Failure ]
  2888. crbug.com/626703 [ Linux ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]
  2889. crbug.com/626703 [ Mac ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]
  2890. crbug.com/626703 virtual/threaded/external/wpt/requestidlecallback/deadline-max-timeout-dynamic.html [ Failure ]
  2891. crbug.com/626703 external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]
  2892. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/service-worker/navigation-timing-extended.https.html [ Failure ]
  2893. crbug.com/626703 external/wpt/preload/preload-resource-match.https.html [ Failure ]
  2894. crbug.com/626703 virtual/prerender/external/wpt/speculation-rules/prerender/workers.html [ Failure ]
  2895. crbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/restriction-presentation-request.https.html [ Failure ]
  2896. crbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/storage-foundation.https.html [ Failure ]
  2897. crbug.com/626703 [ Win ] virtual/partitioned-cookies/http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Failure ]
  2898. # ====== New tests from wpt-importer added here ======
  2899. crbug.com/626703 external/wpt/html/browsers/windows/clear-window-name.https.html [ Skip Timeout ]
  2900. crbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/cross-partition.https.tentative.html [ Skip Timeout ]
  2901. crbug.com/626703 [ Mac11 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]
  2902. crbug.com/626703 external/wpt/custom-elements/form-associated/ElementInternals-target-element-is-held-strongly.html [ Timeout ]
  2903. crbug.com/626703 external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml [ Crash ]
  2904. crbug.com/626703 [ Linux ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2905. crbug.com/626703 [ Mac10.15 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2906. crbug.com/626703 [ Mac11 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2907. crbug.com/626703 [ Mac11-arm64 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2908. crbug.com/626703 [ Mac12 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2909. crbug.com/626703 [ Mac12-arm64 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2910. crbug.com/626703 [ Win11 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash ]
  2911. crbug.com/626703 [ Win10.20h2 ] external/wpt/custom-elements/throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml [ Crash Timeout ]
  2912. crbug.com/626703 [ Linux ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]
  2913. crbug.com/626703 [ Mac11 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]
  2914. crbug.com/626703 [ Mac11 ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/background-sync.https.html [ Timeout ]
  2915. crbug.com/626703 [ Mac10.15 ] external/wpt/fullscreen/api/document-fullscreen-enabled-cross-origin.sub.html [ Timeout ]
  2916. crbug.com/626703 [ Mac11-arm64 ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/key-scrolling.https.html [ Failure Timeout ]
  2917. crbug.com/626703 [ Mac11 ] virtual/document-transition/wpt_internal/document-transition/commit-timeout-crash.html [ Timeout ]
  2918. crbug.com/626703 [ Win10.20h2 ] wpt_internal/geolocation-api/watchPosition-page-visibility.https.html [ Timeout ]
  2919. crbug.com/626703 [ Mac10.14 ] external/wpt/fetch/api/response/response-clone.any.serviceworker.html [ Timeout ]
  2920. crbug.com/626703 [ Linux ] external/wpt/WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.worker.html [ Crash Failure ]
  2921. crbug.com/626703 [ Linux ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2922. crbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2923. crbug.com/626703 [ Mac11 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2924. crbug.com/626703 [ Mac11-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2925. crbug.com/626703 [ Mac12 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2926. crbug.com/626703 [ Mac12-arm64 ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2927. crbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2928. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/service-workers/cache-storage/crashtests/cache-response-clone.https.html [ Timeout ]
  2929. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/api/basic/request-upload.h2.any.worker.html [ Timeout ]
  2930. crbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/coep-early-hints-none-final-require-corp.h2.window.html [ Timeout ]
  2931. crbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/iframe-pdf.h2.window.html [ Timeout ]
  2932. crbug.com/626703 [ Mac11-arm64 ] external/wpt/loading/early-hints/preconnect-in-early-hints.h2.window.html [ Timeout ]
  2933. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Timeout ]
  2934. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Timeout ]
  2935. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Close-delayed.any.html?wpt_flags=h2 [ Timeout ]
  2936. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Timeout ]
  2937. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Timeout ]
  2938. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Timeout ]
  2939. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Timeout ]
  2940. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/cookies/003.html?wpt_flags=h2 [ Timeout ]
  2941. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Timeout ]
  2942. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/interfaces/WebSocket/send/009.html?wpt_flags=h2 [ Timeout ]
  2943. crbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]
  2944. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/private-network-access/fetch.window.html [ Timeout ]
  2945. crbug.com/626703 [ Linux ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2946. crbug.com/626703 [ Mac10.15 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2947. crbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2948. crbug.com/626703 [ Mac11-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2949. crbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2950. crbug.com/626703 [ Mac12-arm64 ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2951. crbug.com/626703 [ Win ] external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2952. crbug.com/626703 [ Linux ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2953. crbug.com/626703 [ Mac10.15 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2954. crbug.com/626703 [ Mac11 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2955. crbug.com/626703 [ Mac11-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2956. crbug.com/626703 [ Mac12 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2957. crbug.com/626703 [ Mac12-arm64 ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2958. crbug.com/626703 [ Win ] virtual/wasm-csp/external/wpt/content-security-policy/wasm-unsafe-eval/postMessage-wasm-module.html [ Timeout ]
  2959. crbug.com/626703 [ Win11 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]
  2960. crbug.com/626703 [ Win11 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]
  2961. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Failure Timeout ]
  2962. crbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2963. crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2964. crbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2965. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2966. crbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2967. crbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2968. crbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2969. crbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2970. crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2971. crbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2972. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2973. crbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2974. crbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2975. crbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2976. crbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2977. crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2978. crbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2979. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2980. crbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2981. crbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2982. crbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  2983. crbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2984. crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2985. crbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2986. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2987. crbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2988. crbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2989. crbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  2990. crbug.com/626703 [ Linux ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2991. crbug.com/626703 [ Mac10.15 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2992. crbug.com/626703 [ Mac11 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2993. crbug.com/626703 [ Mac11-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2994. crbug.com/626703 [ Mac12 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2995. crbug.com/626703 [ Mac12-arm64 ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2996. crbug.com/626703 [ Win ] external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  2997. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.https.sub.tentative.html [ Skip Timeout ]
  2998. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/css-images.sub.tentative.html [ Skip Timeout ]
  2999. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.https.sub.html [ Skip Timeout ]
  3000. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-link-icon.sub.html [ Skip Timeout ]
  3001. crbug.com/626703 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/element-video-poster.https.sub.html [ Timeout ]
  3002. crbug.com/626703 [ Win10.20h2 ] external/wpt/permissions-policy/reporting/xr-report-only.https.html [ Crash ]
  3003. crbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-classic.http-rp/opt-in/websocket.https.html [ Skip Timeout ]
  3004. crbug.com/626703 [ Mac11-arm64 ] external/wpt/mixed-content/gen/worker-module-data.meta/opt-in/websocket.https.html [ Skip Timeout ]
  3005. crbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-classic-data.meta/upgrade/websocket.https.html [ Skip Timeout ]
  3006. crbug.com/626703 [ Mac11-arm64 ] external/wpt/upgrade-insecure-requests/gen/worker-module-data.http-rp/upgrade/websocket.https.html [ Skip Timeout ]
  3007. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/binary/002.html?wss [ Skip Timeout ]
  3008. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss [ Skip Timeout ]
  3009. crbug.com/626703 virtual/document-transition/wpt_internal/document-transition/content-with-transform-old-image.html [ Failure ]
  3010. crbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Timeout ]
  3011. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Skip Timeout ]
  3012. crbug.com/626703 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment.html [ Failure Skip Timeout ]
  3013. crbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-cross-origin-subframe-navigation.html [ Skip ]
  3014. crbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-main-frame-navigation.html [ Skip ]
  3015. crbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-remove-subframe.html [ Skip ]
  3016. crbug.com/626703 virtual/prerender/wpt_internal/prerender/unload-on-prerender-same-origin-subframe-navigation.html [ Skip ]
  3017. crbug.com/626703 [ Mac ] external/wpt/webrtc-encoded-transform/RTCPeerConnection-insertable-streams-simulcast.https.html [ Failure Pass Timeout ]
  3018. # TODO(crbug.com/1315625): Re-enable this test
  3019. crbug.com/626703 external/wpt/webrtc-encoded-transform/sframe-keys.https.html [ Skip ]
  3020. crbug.com/626703 external/wpt/geolocation-API/getCurrentPosition_permission_allow.https.html [ Timeout ]
  3021. crbug.com/626703 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]
  3022. crbug.com/626703 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/media-autoplay.html [ Skip Timeout ]
  3023. crbug.com/626703 external/wpt/geolocation-API/idlharness.https.window.html [ Skip Timeout ]
  3024. crbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Timeout ]
  3025. crbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy-attribute.https.sub.html [ Timeout ]
  3026. crbug.com/626703 external/wpt/geolocation-API/enabled-by-feature-policy.https.sub.html [ Timeout ]
  3027. crbug.com/626703 external/wpt/geolocation-API/enabled-on-self-origin-by-feature-policy.https.sub.html [ Timeout ]
  3028. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/exported-names.tentative.html [ Timeout ]
  3029. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/js-wasm-cycle.tentative.html [ Timeout ]
  3030. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-import-wasm-export.tentative.html [ Timeout ]
  3031. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/wasm-js-cycle.tentative.html [ Timeout ]
  3032. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker-import.tentative.html [ Timeout ]
  3033. crbug.com/626703 external/wpt/wasm/webapi/esm-integration/worker.tentative.html [ Timeout ]
  3034. crbug.com/626703 [ Linux ] external/wpt/resource-timing/object-not-found-adds-entry.html [ Timeout ]
  3035. crbug.com/626703 external/wpt/webrtc/RTCConfiguration-iceTransportPolicy.html [ Skip Timeout ]
  3036. crbug.com/626703 [ Win10.20h2 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Crash ]
  3037. crbug.com/626703 [ Win10.20h2 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Crash ]
  3038. crbug.com/626703 [ Mac11 ] external/wpt/webaudio/the-audio-api/the-pannernode-interface/ctor-panner.html [ Crash ]
  3039. crbug.com/626703 [ Mac11 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]
  3040. crbug.com/626703 [ Mac12 ] external/wpt/mediacapture-record/MediaRecorder-mimetype.html [ Failure Timeout ]
  3041. crbug.com/626703 [ Mac10.14 ] virtual/portals/external/wpt/portals/no-portal-in-sandboxed-popup.html [ Timeout ]
  3042. crbug.com/626703 [ Mac11-arm64 ] external/wpt/websockets/unload-a-document/005.html?wpt_flags=h2 [ Skip Timeout ]
  3043. crbug.com/626703 external/wpt/css/css-values/cap-unit-001.html [ Failure ]
  3044. crbug.com/626703 external/wpt/selection/textcontrols/onselectionchange-content-attribute.html [ Timeout ]
  3045. crbug.com/626703 external/wpt/infrastructure/channels/test_call.html [ Timeout ]
  3046. crbug.com/626703 external/wpt/infrastructure/channels/test_postMessage.html [ Timeout ]
  3047. crbug.com/626703 external/wpt/infrastructure/channels/test_serialize.html [ Timeout ]
  3048. crbug.com/626703 [ Win10.20h2 ] external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]
  3049. crbug.com/626703 [ Win10.20h2 ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaDevices-enumerateDevices-per-origin-ids.sub.https.html [ Failure Timeout ]
  3050. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]
  3051. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-capture-video.https.html [ Skip Timeout ]
  3052. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState.https.html [ Skip Timeout ]
  3053. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]
  3054. crbug.com/626703 [ Mac11-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]
  3055. crbug.com/626703 [ Mac12-arm64 ] external/wpt/navigation-timing/nav2_test_response_end_and_duration_before_during_and_after_load_event.html [ Skip Timeout ]
  3056. crbug.com/1270841 [ Mac ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
  3057. crbug.com/626703 [ Mac11 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-19.html [ Timeout ]
  3058. crbug.com/626703 [ Mac11 ] virtual/scroll-unification-unified-autoplay/external/wpt/feature-policy/feature-policy-header-policy-declined.https.sub.html [ Timeout ]
  3059. crbug.com/626703 [ Win10.20h2 ] external/wpt/web-locks/bfcache/abort.tentative.https.html [ Failure Timeout ]
  3060. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]
  3061. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]
  3062. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]
  3063. crbug.com/626703 [ Mac10.14 ] external/wpt/workers/modules/shared-worker-import-csp.html [ Skip Timeout ]
  3064. crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_AES-CTR.https.any.html [ Skip Timeout ]
  3065. crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.html?1-10 [ Skip Timeout ]
  3066. crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/generateKey/successes_RSA-OAEP.https.any.worker.html?141-150 [ Skip Timeout ]
  3067. crbug.com/626703 [ Mac10.15 ] external/wpt/WebCryptoAPI/import_export/ec_importKey.https.any.html [ Skip Timeout ]
  3068. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]
  3069. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]
  3070. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]
  3071. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]
  3072. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]
  3073. crbug.com/626703 [ Linux ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
  3074. crbug.com/626703 [ Win10.20h2 ] external/wpt/media-capabilities/encodingInfo.any.worker.html [ Crash ]
  3075. crbug.com/626703 [ Mac11-arm64 ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/backplate/forced-colors-mode-backplate-01.html [ Crash ]
  3076. crbug.com/626703 external/wpt/workers/interfaces/WorkerUtils/importScripts/blob-url.worker.html [ Failure ]
  3077. crbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges.html [ Failure Timeout ]
  3078. crbug.com/626703 [ Linux ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Skip Timeout ]
  3079. crbug.com/626703 [ Linux ] external/wpt/input-events/input-events-typing.html [ Failure Timeout ]
  3080. crbug.com/626703 [ Linux ] external/wpt/infrastructure/testdriver/actions/eventOrder.html [ Timeout ]
  3081. crbug.com/626703 [ Linux ] external/wpt/input-events/input-events-cut-paste.html [ Failure Timeout ]
  3082. crbug.com/626703 external/wpt/css/CSS2/tables/table-anonymous-objects-211.xht [ Failure ]
  3083. crbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3084. crbug.com/626703 [ Mac10.15 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3085. crbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3086. crbug.com/626703 [ Mac11-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3087. crbug.com/626703 [ Mac12 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3088. crbug.com/626703 [ Mac12-arm64 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Timeout ]
  3089. crbug.com/626703 external/wpt/editing/run/forwarddelete.html?6001-last [ Failure ]
  3090. crbug.com/626703 external/wpt/selection/contenteditable/initial-selection-on-focus.tentative.html?div [ Failure ]
  3091. crbug.com/626703 external/wpt/geolocation-API/non-fully-active.https.html [ Timeout ]
  3092. crbug.com/626703 external/wpt/selection/textcontrols/selectionchange-bubble.html [ Timeout ]
  3093. crbug.com/626703 external/wpt/density-size-correction/density-corrected-image-svg-aspect-ratio-cross-origin.sub.html [ Failure ]
  3094. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]
  3095. crbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html [ Failure ]
  3096. crbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html [ Failure ]
  3097. crbug.com/626703 external/wpt/css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html [ Failure ]
  3098. crbug.com/626703 external/wpt/density-size-correction/image-set-003.html [ Failure ]
  3099. crbug.com/626703 external/wpt/infrastructure/assumptions/non-local-ports.sub.window.html [ Timeout ]
  3100. crbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel-service-worker.https.html [ Timeout ]
  3101. crbug.com/626703 external/wpt/webrtc-extensions/transfer-datachannel.html [ Timeout ]
  3102. crbug.com/626703 [ Win ] external/wpt/websockets/Create-blocked-port.any.worker.html?wpt_flags=h2 [ Failure Timeout ]
  3103. crbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.html [ Pass Timeout ]
  3104. crbug.com/626703 external/wpt/FileAPI/file/send-file-formdata-controls.any.worker.html [ Pass Timeout ]
  3105. crbug.com/626703 [ Mac10.14 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]
  3106. crbug.com/626703 [ Mac11 ] external/wpt/pointerevents/pointerevent_pointercapture_in_frame.html?pen [ Timeout ]
  3107. crbug.com/626703 [ Mac11 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]
  3108. crbug.com/626703 [ Mac12 ] virtual/restrict-gamepad/external/wpt/gamepad/idlharness-extensions.https.window.html [ Failure Timeout ]
  3109. crbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html?wss [ Failure Timeout ]
  3110. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.serviceworker.html?wss [ Failure Timeout ]
  3111. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.worker.html?wss [ Failure Timeout ]
  3112. crbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.sharedworker.html?wss [ Failure Timeout ]
  3113. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wss [ Failure Timeout ]
  3114. crbug.com/626703 [ Win ] external/wpt/service-workers/cache-storage/serviceworker/cache-abort.https.html [ Failure Timeout ]
  3115. crbug.com/626703 [ Win ] external/wpt/websockets/remove-own-iframe-during-onerror.window.html [ Failure Timeout ]
  3116. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.sharedworker.html?wss [ Failure Timeout ]
  3117. crbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html [ Failure Timeout ]
  3118. crbug.com/626703 [ Win ] external/wpt/websockets/constructor/010.html?wss [ Failure Timeout ]
  3119. crbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.html?wss [ Failure Timeout ]
  3120. crbug.com/626703 [ Win ] external/wpt/websockets/basic-auth.any.serviceworker.html?wss [ Failure Timeout ]
  3121. crbug.com/626703 [ Win ] external/wpt/websockets/opening-handshake/005.html [ Failure Timeout ]
  3122. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCSctpTransport-maxChannels.html [ Timeout ]
  3123. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]
  3124. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]
  3125. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]
  3126. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]
  3127. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/simplecall.https.html [ Timeout ]
  3128. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3129. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3130. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3131. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]
  3132. crbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]
  3133. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-captureTimestamp.html [ Skip Timeout ]
  3134. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]
  3135. crbug.com/626703 [ Mac11 ] external/wpt/webrtc-extensions/RTCRtpSynchronizationSource-senderCaptureTimeOffset.html [ Skip Timeout ]
  3136. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]
  3137. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]
  3138. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]
  3139. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-send.html [ Skip Timeout ]
  3140. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]
  3141. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]
  3142. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]
  3143. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]
  3144. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]
  3145. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]
  3146. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]
  3147. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]
  3148. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]
  3149. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]
  3150. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-track-stats.https.html [ Skip Timeout ]
  3151. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]
  3152. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]
  3153. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]
  3154. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-videoDetectorTest.html [ Skip Timeout ]
  3155. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]
  3156. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]
  3157. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]
  3158. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]
  3159. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-iceConnectionState-disconnected.https.html [ Skip Timeout ]
  3160. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]
  3161. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-iceRestart.html [ Skip Timeout ]
  3162. crbug.com/626703 [ Mac10.14 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]
  3163. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDtlsTransport-state.html [ Timeout ]
  3164. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]
  3165. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/ice-state.https.html [ Skip Timeout ]
  3166. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Skip Timeout ]
  3167. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Skip Timeout ]
  3168. crbug.com/626703 [ Mac10.14 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3169. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3170. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/rtp-clockrate.html [ Skip Timeout ]
  3171. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/simplecall.https.html [ Timeout ]
  3172. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]
  3173. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/candidate-exchange.https.html [ Skip Timeout ]
  3174. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/bundle.https.html [ Timeout ]
  3175. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]
  3176. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-bufferedAmount.html [ Skip Timeout ]
  3177. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]
  3178. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-ondatachannel.html [ Skip Timeout ]
  3179. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]
  3180. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDataChannel-close.html [ Skip Timeout ]
  3181. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-createDataChannel.html [ Skip Timeout ]
  3182. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]
  3183. crbug.com/626703 [ Mac11-arm64 ] external/wpt/webrtc/RTCPeerConnection-addIceCandidate-connectionSetup.html [ Skip Timeout ]
  3184. crbug.com/626703 [ Mac11 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]
  3185. crbug.com/626703 [ Mac11-arm64 ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-getStats.https.html [ Skip Timeout ]
  3186. crbug.com/626703 [ Mac11 ] external/wpt/video-rvfc/request-video-frame-callback-webrtc.https.html [ Timeout ]
  3187. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/protocol/rtp-demuxing.html [ Skip Timeout ]
  3188. crbug.com/626703 [ Mac11 ] external/wpt/webrtc/RTCIceConnectionState-candidate-pair.https.html [ Skip Timeout ]
  3189. crbug.com/1209223 external/wpt/html/syntax/xmldecl/xmldecl-2.html [ Failure ]
  3190. crbug.com/626703 [ Mac ] editing/pasteboard/drag-selected-image-to-contenteditable.html [ Failure ]
  3191. crbug.com/626703 [ Mac ] external/wpt/webxr/xrSession_requestReferenceSpace_features.https.html [ Pass Timeout ]
  3192. crbug.com/626703 [ Mac10.15 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]
  3193. crbug.com/626703 [ Mac11 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure Timeout ]
  3194. crbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-same-site.html [ Crash Timeout ]
  3195. crbug.com/626703 external/wpt/focus/focus-already-focused-iframe-different-site.html [ Timeout ]
  3196. crbug.com/626703 external/wpt/focus/focus-already-focused-iframe-same-site.html [ Timeout ]
  3197. crbug.com/626703 external/wpt/focus/focus-already-focused-iframe-deep-different-site.html [ Timeout ]
  3198. crbug.com/626703 [ Mac11 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]
  3199. crbug.com/626703 [ Mac12 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure Timeout ]
  3200. crbug.com/626703 [ Mac11 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure Timeout ]
  3201. crbug.com/626703 [ Mac12 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure Timeout ]
  3202. crbug.com/626703 [ Mac11 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]
  3203. crbug.com/626703 [ Mac12 ] external/wpt/editing/other/editing-around-select-element.tentative.html?insertText [ Failure Timeout ]
  3204. crbug.com/626703 [ Mac11 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]
  3205. crbug.com/626703 [ Mac12 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure Timeout ]
  3206. crbug.com/626703 [ Mac11 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]
  3207. crbug.com/626703 [ Mac12 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]
  3208. crbug.com/626703 [ Mac10.15 ] external/wpt/websockets/stream/tentative/backpressure-receive.any.html?wpt_flags=h2 [ Failure Pass ]
  3209. crbug.com/626703 [ Mac ] external/wpt/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker.html?wpt_flags=h2 [ Failure Pass ]
  3210. crbug.com/626703 [ Mac ] external/wpt/websockets/basic-auth.any.html?wpt_flags=h2 [ Failure Pass ]
  3211. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/constructor.any.html?wpt_flags=h2 [ Failure Timeout ]
  3212. crbug.com/626703 [ Win ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]
  3213. crbug.com/626703 [ Mac ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Crash Pass Timeout ]
  3214. crbug.com/626703 [ Win ] external/wpt/custom-elements/form-associated/ElementInternals-setFormValue.html [ Pass Timeout ]
  3215. crbug.com/626703 [ Win10.20h2 ] external/wpt/websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]
  3216. crbug.com/626703 external/wpt/websockets/stream/tentative/close.any.worker.html?wpt_flags=h2 [ Failure Timeout ]
  3217. crbug.com/626703 [ Mac ] external/wpt/websockets/stream/tentative/abort.any.serviceworker.html?wpt_flags=h2 [ Crash Failure Pass ]
  3218. crbug.com/626703 [ Mac10.13 ] external/wpt/websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2 [ Failure Timeout ]
  3219. crbug.com/626703 external/wpt/websockets/stream/tentative/close.any.html?wpt_flags=h2 [ Failure Timeout ]
  3220. crbug.com/626703 external/wpt/websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2 [ Failure Timeout ]
  3221. crbug.com/626703 external/wpt/websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2 [ Failure Timeout ]
  3222. crbug.com/1191547 external/wpt/html/semantics/forms/the-label-element/proxy-modifier-click-to-associated-element.tentative.html [ Timeout ]
  3223. crbug.com/626703 external/wpt/websockets/cookies/001.html?wss&wpt_flags=https [ Failure ]
  3224. crbug.com/626703 external/wpt/websockets/cookies/002.html?wss&wpt_flags=https [ Failure ]
  3225. crbug.com/626703 external/wpt/websockets/cookies/003.html?wss&wpt_flags=https [ Failure ]
  3226. crbug.com/626703 external/wpt/websockets/cookies/005.html?wss&wpt_flags=https [ Failure ]
  3227. crbug.com/626703 external/wpt/websockets/cookies/007.html?wss&wpt_flags=https [ Failure ]
  3228. crbug.com/626703 [ Mac ] virtual/threaded/external/wpt/css/css-scroll-snap/input/keyboard.html [ Timeout ]
  3229. crbug.com/626703 [ Mac ] external/wpt/preload/download-resources.html [ Failure Pass Timeout ]
  3230. crbug.com/626703 external/wpt/uievents/keyboard/modifier-keys-combinations.html [ Timeout ]
  3231. crbug.com/626703 external/wpt/uievents/keyboard/modifier-keys.html [ Timeout ]
  3232. crbug.com/626703 [ Mac10.13 ] virtual/threaded/external/wpt/web-animations/timing-model/animations/updating-the-finished-state.html [ Skip Timeout ]
  3233. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]
  3234. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]
  3235. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b [ Failure Timeout ]
  3236. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]
  3237. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]
  3238. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&child=b [ Failure Timeout ]
  3239. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-non-collapsed-selection.tentative.html?target=ContentEditable [ Failure Timeout ]
  3240. crbug.com/626703 external/wpt/editing/other/typing-around-link-element-at-collapsed-selection.tentative.html?target=ContentEditable&parent=b&child=i [ Failure Timeout ]
  3241. crbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection-no-sink.https.html [ Skip Timeout ]
  3242. crbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-peerconnection.https.html [ Skip Timeout ]
  3243. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Backspace [ Failure Timeout ]
  3244. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ul [ Failure Timeout ]
  3245. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Backspace [ Failure Timeout ]
  3246. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ul [ Failure Timeout ]
  3247. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-elements.tentative.html?Delete [ Failure Timeout ]
  3248. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-joining-dl-element-and-another-list.tentative.html?Delete [ Failure Timeout ]
  3249. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol [ Failure Timeout ]
  3250. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Delete,ol [ Failure Timeout ]
  3251. crbug.com/626703 external/wpt/mediacapture-record/MediaRecorder-stop.html [ Timeout ]
  3252. crbug.com/626703 [ Mac ] external/wpt/webxr/xr_viewport_scale.https.html [ Timeout ]
  3253. crbug.com/626703 external/wpt/editing/other/select-all-and-delete-in-html-element-having-contenteditable.html [ Failure Timeout ]
  3254. crbug.com/626703 external/wpt/infrastructure/testdriver/actions/iframe.html [ Failure Timeout ]
  3255. crbug.com/626703 external/wpt/infrastructure/testdriver/actions/crossOrigin.sub.html [ Timeout ]
  3256. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-during-and-after-dispatch.tentative.html [ Failure Timeout ]
  3257. crbug.com/626703 [ Mac11 ] external/wpt/scroll-to-text-fragment/redirects.html [ Skip Timeout ]
  3258. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Backspace [ Failure Timeout ]
  3259. crbug.com/626703 [ Mac ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]
  3260. crbug.com/626703 [ Win ] external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?TypingA [ Failure Timeout ]
  3261. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-non-collapsed-selection.tentative.html?Delete [ Failure Timeout ]
  3262. crbug.com/626703 [ Mac ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]
  3263. crbug.com/626703 external/wpt/fetch/connection-pool/network-partition-key.html [ Failure Timeout ]
  3264. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-backspace.tentative.html [ Failure Timeout ]
  3265. crbug.com/626703 external/wpt/input-events/input-events-get-target-ranges-forwarddelete.tentative.html [ Failure Timeout ]
  3266. crbug.com/626703 [ Mac ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]
  3267. crbug.com/626703 [ Win ] external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Failure Timeout ]
  3268. crbug.com/626703 external/wpt/workers/postMessage_block.https.html [ Timeout ]
  3269. crbug.com/626703 external/wpt/uievents/order-of-events/focus-events/focus-management-expectations.html [ Timeout ]
  3270. crbug.com/626703 [ Mac10.14 ] external/wpt/preload/onload-event.html [ Skip Timeout ]
  3271. crbug.com/626703 external/wpt/workers/shared-worker-parse-error-failure.html [ Timeout ]
  3272. crbug.com/626703 external/wpt/webrtc/RTCPeerConnection-operations.https.html [ Timeout ]
  3273. crbug.com/626703 external/wpt/content-dpr/content-dpr-various-elements.html [ Failure ]
  3274. crbug.com/626703 external/wpt/workers/abrupt-completion.html [ Timeout ]
  3275. crbug.com/626703 external/wpt/service-workers/service-worker/ready.https.window.html [ Timeout ]
  3276. crbug.com/626703 external/wpt/fetch/corb/script-resource-with-nonsniffable-types.tentative.sub.html [ Timeout ]
  3277. crbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure ]
  3278. crbug.com/626703 [ Win ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure ]
  3279. crbug.com/626703 [ Win ] external/wpt/web-animations/timing-model/animation-effects/phases-and-states.html [ Crash ]
  3280. crbug.com/626703 external/wpt/webvtt/rendering/cues-with-video/processing-model/snap-to-line.html [ Failure ]
  3281. crbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-offer.html [ Timeout ]
  3282. crbug.com/626703 external/wpt/webauthn/idlharness-manual.https.window.js [ Skip ]
  3283. crbug.com/1004760 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/ready-states/autoplay-hidden.optional.html [ Timeout ]
  3284. crbug.com/626703 external/wpt/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html [ Timeout ]
  3285. crbug.com/626703 external/wpt/speech-api/SpeechSynthesisUtterance-volume-manual.html [ Skip ]
  3286. crbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-pan-x-pan-y-pan-y_touch.html [ Failure Pass Timeout ]
  3287. crbug.com/626703 crbug.com/606367 external/wpt/pointerevents/pointerevent_touch-action-none-css_touch.html [ Failure Pass Timeout ]
  3288. crbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.worker.html [ Failure Timeout ]
  3289. crbug.com/626703 external/wpt/xhr/event-readystatechange-loaded.any.html [ Failure Timeout ]
  3290. crbug.com/626703 external/wpt/media-source/mediasource-correct-frames-after-reappend.html [ Failure Pass Timeout ]
  3291. crbug.com/626703 external/wpt/media-source/mediasource-correct-frames.html [ Failure Pass Timeout ]
  3292. crbug.com/626703 external/wpt/payment-method-basic-card/steps_for_selecting_the_payment_handler.html [ Timeout ]
  3293. crbug.com/626703 external/wpt/payment-method-basic-card/apply_the_modifiers.html [ Timeout ]
  3294. crbug.com/626703 external/wpt/screen-orientation/onchange-event.html [ Timeout ]
  3295. crbug.com/626703 external/wpt/webrtc/RTCPeerConnection-setRemoteDescription-tracks.https.html [ Skip Timeout ]
  3296. crbug.com/626703 external/wpt/webrtc/RTCPeerConnection-remote-track-mute.https.html [ Skip Timeout ]
  3297. crbug.com/626703 external/wpt/fetch/content-type/response.window.html [ Timeout ]
  3298. crbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-dynamic-001.html [ Failure ]
  3299. crbug.com/626703 external/wpt/css/css-will-change/will-change-abspos-cb-001.html [ Failure ]
  3300. crbug.com/626703 [ Linux ] external/wpt/url/a-element.html [ Failure ]
  3301. crbug.com/626703 [ Win ] external/wpt/websockets/Create-url-with-space.any.html [ Failure ]
  3302. crbug.com/626703 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange-long.https.html [ Failure Pass ]
  3303. crbug.com/626703 [ Mac ] virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCDTMFSender-ontonechange-long.https.html [ Failure Pass ]
  3304. ### virtual/prerender/external/wpt/speculation-rules/prerender
  3305. crbug.com/1126305 [ Mac10.15 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]
  3306. crbug.com/1126305 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Skip Timeout ]
  3307. crbug.com/1126305 virtual/prerender/external/wpt/speculation-rules/prerender/restrictions.html [ Skip Timeout ]
  3308. ### See crbug.com/891427 comment near the top of this file:
  3309. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-004.svg [ Failure ]
  3310. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-001.svg [ Failure ]
  3311. # Tests pass under virtual/webrtc-wpt-plan-b
  3312. virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-operations.https.html [ Pass ]
  3313. crbug.com/1131471 external/wpt/web-locks/clientids.tentative.https.html [ Failure ]
  3314. # See also crbug.com/920100 (sheriff 2019-01-09).
  3315. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/external-stylesheet.html [ Failure Timeout ]
  3316. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style.html [ Failure Timeout ]
  3317. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/inline-style-with-differentorigin-base-tag.tentative.html [ Failure Timeout ]
  3318. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/internal-stylesheet.html [ Failure Timeout ]
  3319. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/presentation-attribute.html [ Failure Timeout ]
  3320. crbug.com/626703 external/wpt/referrer-policy/css-integration/svg/processing-instruction.html [ Failure Timeout ]
  3321. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-complex-001.svg [ Failure ]
  3322. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-bicubic-001.svg [ Failure ]
  3323. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-005.svg [ Failure ]
  3324. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-002.svg [ Failure ]
  3325. crbug.com/367760 external/wpt/svg/pservers/reftests/meshgradient-basic-003.svg [ Failure ]
  3326. crbug.com/626703 external/wpt/speech-api/SpeechSynthesis-pause-resume.tentative.html [ Timeout ]
  3327. crbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-9.html [ Failure ]
  3328. crbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-8.html [ Failure ]
  3329. crbug.com/626703 external/wpt/css/CSS2/floats/float-nowrap-7.html [ Failure ]
  3330. crbug.com/626703 external/wpt/quirks/text-decoration-doesnt-propagate-into-tables/quirks.html [ Failure ]
  3331. crbug.com/875411 external/wpt/svg/text/reftests/text-complex-002.svg [ Failure ]
  3332. crbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-001.svg [ Failure ]
  3333. crbug.com/875411 external/wpt/svg/text/reftests/text-complex-001.svg [ Failure ]
  3334. crbug.com/875411 external/wpt/svg/text/reftests/text-shape-inside-002.svg [ Failure ]
  3335. crbug.com/626703 external/wpt/speech-api/SpeechSynthesis-speak-without-activation-fails.tentative.html [ Failure ]
  3336. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-007.svg [ Failure ]
  3337. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-005.svg [ Failure ]
  3338. crbug.com/366558 external/wpt/svg/text/reftests/text-multiline-002.svg [ Failure ]
  3339. crbug.com/366558 external/wpt/svg/text/reftests/text-multiline-003.svg [ Failure ]
  3340. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-201.svg [ Failure ]
  3341. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-001.svg [ Failure ]
  3342. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-002.svg [ Failure ]
  3343. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-006.svg [ Failure ]
  3344. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-003.svg [ Failure ]
  3345. crbug.com/366558 external/wpt/svg/text/reftests/text-multiline-001.svg [ Failure ]
  3346. crbug.com/366553 external/wpt/svg/text/reftests/text-inline-size-101.svg [ Failure ]
  3347. crbug.com/626703 external/wpt/clear-site-data/executionContexts.sub.html [ Timeout ]
  3348. crbug.com/626703 external/wpt/content-security-policy/securitypolicyviolation/targeting.html [ Timeout ]
  3349. crbug.com/626703 external/wpt/web-animations/timing-model/timelines/update-and-send-events.html [ Failure ]
  3350. crbug.com/626703 external/wpt/screen-orientation/orientation-reading.html [ Timeout ]
  3351. # Tests that rely on a non-exposed test-only API. Tested in virtual/task-tracking
  3352. wpt_internal/task-tracking/* [ Failure Skip ]
  3353. virtual/task-tracking/* [ Pass ]
  3354. crbug.com/1326491 [ Mac ] virtual/task-tracking/wpt_internal/task-tracking/soft-navigation-heuristics/detached-iframe-container.html [ Timeout ]
  3355. crbug.com/626703 external/wpt/fetch/security/redirect-to-url-with-credentials.https.html [ Timeout ]
  3356. crbug.com/981970 external/wpt/fetch/http-cache/split-cache.html [ Skip ]
  3357. crbug.com/626703 external/wpt/fetch/http-cache/basic-auth-cache-test.html [ Timeout ]
  3358. crbug.com/626703 external/wpt/css/css-ui/text-overflow-026.html [ Failure ]
  3359. crbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html [ Failure ]
  3360. crbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-table-001.html [ Failure ]
  3361. crbug.com/626703 external/wpt/css/css-tables/fixup-dynamic-anonymous-inline-table-001.html [ Failure ]
  3362. crbug.com/626703 external/wpt/acid/acid2/reftest.html [ Failure Pass ]
  3363. crbug.com/626703 external/wpt/acid/acid3/test.html [ Failure ]
  3364. crbug.com/626703 external/wpt/css/css-ui/cursor-auto-006.html [ Skip ]
  3365. crbug.com/626703 external/wpt/css/css-ui/cursor-auto-007.html [ Skip ]
  3366. crbug.com/626703 external/wpt/compat/webkit-text-fill-color-property-005.html [ Failure ]
  3367. crbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-001.xht [ Failure ]
  3368. crbug.com/626703 external/wpt/css/CSS2/text/text-decoration-va-length-002.xht [ Failure ]
  3369. crbug.com/626703 external/wpt/css/CSS2/text/white-space-collapsing-bidi-001.xht [ Failure ]
  3370. crbug.com/626703 external/wpt/css/CSS2/text/white-space-mixed-001.xht [ Failure ]
  3371. crbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006b.xht [ Failure ]
  3372. crbug.com/626703 external/wpt/css/css-tables/floats/floats-wrap-bfc-006c.xht [ Failure ]
  3373. crbug.com/626703 external/wpt/media-source/mediasource-avtracks.html [ Crash Failure ]
  3374. crbug.com/626703 external/wpt/media-source/mediasource-getvideoplaybackquality.html [ Failure Timeout ]
  3375. crbug.com/958104 external/wpt/presentation-api/controlling-ua/getAvailability.https.html [ Failure ]
  3376. crbug.com/626703 external/wpt/screen-orientation/onchange-event-subframe.html [ Timeout ]
  3377. # Synthetic modules report the wrong location in errors
  3378. crbug.com/994315 virtual/json-modules/external/wpt/html/semantics/scripting-1/the-script-element/json-module/parse-error.html [ Skip ]
  3379. # These tests pass on the blink_rel bots but fail on the other builders
  3380. crbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-3-ref.html [ Crash ]
  3381. crbug.com/1051773 external/wpt/css/CSS2/floats/float-nowrap-4.html [ Crash Timeout ]
  3382. # Moved from NeverFixTests. These may be relevant again now that
  3383. # overlay scrollbars have been fixed (crrev.com/c/3455024).
  3384. crbug.com/1296816 [ Win ] virtual/overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure ]
  3385. crbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-002.html [ Failure ]
  3386. crbug.com/964181 external/wpt/css/css-text/overflow-wrap/overflow-wrap-anywhere-inline-003.html [ Failure ]
  3387. crbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-004.html [ Failure ]
  3388. crbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-007.html [ Failure ]
  3389. crbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-009.html [ Failure ]
  3390. crbug.com/964181 external/wpt/css/css-text/word-break/word-break-break-all-inline-010.html [ Failure ]
  3391. crbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-006.html [ Failure ]
  3392. crbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-007.html [ Failure ]
  3393. crbug.com/1017164 external/wpt/css/css-text/word-break/word-break-break-all-008.html [ Failure ]
  3394. crbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-km-000.html [ Failure ]
  3395. crbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-my-000.html [ Failure ]
  3396. crbug.com/1017164 [ Linux ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]
  3397. crbug.com/1017164 [ Win ] external/wpt/css/css-text/word-break/word-break-normal-lo-000.html [ Failure ]
  3398. crbug.com/1017164 external/wpt/css/css-text/word-break/word-break-normal-tdd-000.html [ Failure ]
  3399. crbug.com/1015331 external/wpt/css/css-text/white-space/eol-spaces-bidi-001.html [ Failure ]
  3400. crbug.com/899264 external/wpt/css/css-text/letter-spacing/letter-spacing-control-chars-001.html [ Failure ]
  3401. crbug.com/1290460 [ Mac ] external/wpt/css/css-text/letter-spacing/letter-spacing-bengali-yaphala-001.html [ Failure ]
  3402. crbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-002.html [ Failure ]
  3403. crbug.com/1281208 external/wpt/css/css-text/hyphens/hyphenate-character-005.html [ Failure ]
  3404. crbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-001.html [ Failure ]
  3405. crbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-002.html [ Failure ]
  3406. crbug.com/1281208 external/wpt/css/css-text/hyphens/hyphens-vertical-003.html [ Failure ]
  3407. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-1.html [ Failure ]
  3408. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-2.html [ Failure ]
  3409. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-3.html [ Failure ]
  3410. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-removable-4.html [ Failure ]
  3411. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-001.html [ Failure ]
  3412. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-002.html [ Failure ]
  3413. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-003.html [ Failure ]
  3414. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-008.html [ Failure ]
  3415. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-009.html [ Failure ]
  3416. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-010.html [ Failure ]
  3417. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-015.html [ Failure ]
  3418. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-016.html [ Failure ]
  3419. crbug.com/1223979 external/wpt/css/css-text/line-breaking/segment-break-transformation-rules-017.html [ Failure ]
  3420. crbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-01.html [ Failure ]
  3421. crbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-02.html [ Failure ]
  3422. crbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-03.html [ Failure ]
  3423. crbug.com/1223979 external/wpt/css/css-text/text-align/text-align-match-parent-04.html [ Failure ]
  3424. crbug.com/1223979 external/wpt/css/css-text/text-justify/text-justify-distribute-001.html [ Failure ]
  3425. crbug.com/1223979 external/wpt/css/css-text/text-justify/text-justify-inter-character-001.html [ Failure ]
  3426. crbug.com/1223979 external/wpt/css/css-text/word-spacing/word-spacing-001.html [ Failure ]
  3427. crbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-001.html [ Failure ]
  3428. crbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-002.html [ Failure ]
  3429. crbug.com/481431 external/wpt/css/css-break/box-decoration-break-clone-004.html [ Failure ]
  3430. crbug.com/614667 external/wpt/css/css-break/grid/grid-item-fragmentation-039.html [ Failure ]
  3431. crbug.com/1058792 external/wpt/css/css-break/transform-007.html [ Failure ]
  3432. crbug.com/1224888 external/wpt/css/css-break/transform-009.html [ Failure ]
  3433. crbug.com/1156312 external/wpt/css/css-break/widows-orphans-017.html [ Failure ]
  3434. crbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-001.html [ Failure ]
  3435. crbug.com/967329 external/wpt/css/css-multicol/columnfill-auto-max-height-002.html [ Failure ]
  3436. crbug.com/1225630 external/wpt/css/css-multicol/large-actual-column-count.html [ Skip ]
  3437. crbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-000.html [ Failure ]
  3438. crbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-001.html [ Failure ]
  3439. crbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-004.html [ Failure ]
  3440. crbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-005.html [ Failure ]
  3441. crbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-000.html [ Failure ]
  3442. crbug.com/990240 external/wpt/css/css-multicol/multicol-breaking-nobackground-001.html [ Failure ]
  3443. crbug.com/481431 external/wpt/css/css-multicol/multicol-breaking-nobackground-004.html [ Failure ]
  3444. crbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-004.html [ Failure ]
  3445. crbug.com/829028 [ Mac ] external/wpt/css/css-multicol/multicol-list-item-005.html [ Failure ]
  3446. crbug.com/792435 external/wpt/css/css-multicol/multicol-rule-004.xht [ Failure ]
  3447. crbug.com/792437 external/wpt/css/css-multicol/multicol-rule-inset-000.xht [ Failure ]
  3448. crbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-001.html [ Failure ]
  3449. crbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-002.html [ Failure ]
  3450. crbug.com/990240 external/wpt/css/css-multicol/multicol-rule-nested-balancing-003.html [ Failure ]
  3451. crbug.com/792437 external/wpt/css/css-multicol/multicol-rule-outset-000.xht [ Failure ]
  3452. crbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-001.html [ Failure ]
  3453. crbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-002.html [ Failure ]
  3454. crbug.com/963109 external/wpt/css/css-multicol/multicol-span-all-button-003.html [ Failure ]
  3455. crbug.com/636055 external/wpt/css/css-multicol/multicol-span-all-margin-nested-002.xht [ Failure ]
  3456. crbug.com/990240 external/wpt/css/css-multicol/multicol-span-all-rule-001.html [ Failure ]
  3457. crbug.com/964183 external/wpt/css/css-multicol/multicol-width-005.html [ Failure ]
  3458. crbug.com/481431 external/wpt/css/css-multicol/multicol-zero-height-003.html [ Failure ]
  3459. crbug.com/1191124 external/wpt/css/css-multicol/spanner-fragmentation-012.html [ Failure ]
  3460. crbug.com/1224888 external/wpt/css/css-multicol/spanner-in-opacity.html [ Failure ]
  3461. crbug.com/1031667 external/wpt/css/css-pseudo/marker-content-007.tentative.html [ Failure ]
  3462. crbug.com/1031667 external/wpt/css/css-pseudo/marker-content-009.tentative.html [ Failure ]
  3463. crbug.com/1031667 external/wpt/css/css-pseudo/marker-content-011.tentative.html [ Failure ]
  3464. crbug.com/1097992 external/wpt/css/css-pseudo/marker-font-variant-numeric-normal.html [ Failure ]
  3465. crbug.com/1060007 external/wpt/css/css-pseudo/marker-text-combine-upright.html [ Failure ]
  3466. # iframe tests time out if the request is blocked as mixed content.
  3467. crbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]
  3468. crbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/iframe-tag.https.html [ Skip Timeout ]
  3469. crbug.com/1001374 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/iframe-tag.https.html [ Skip Timeout ]
  3470. # Different results on try bots and CQ, skipped to unblock wpt import.
  3471. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-default-css.html [ Skip ]
  3472. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-element.html [ Skip ]
  3473. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-root.html [ Skip ]
  3474. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-main-frame-window.html [ Skip ]
  3475. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-scrollintoview-nested.html [ Skip ]
  3476. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-smooth-positions.html [ Skip ]
  3477. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-root.html [ Skip ]
  3478. crbug.com/888443 external/wpt/css/cssom-view/scroll-behavior-subframe-window.html [ Skip ]
  3479. crbug.com/1289222 external/wpt/css/cssom-view/scroll-behavior-smooth-navigation.html [ Skip Timeout ]
  3480. # Crashes with DCHECK enabled, but not on normal Release builds.
  3481. crbug.com/809935 external/wpt/css/css-fonts/variations/font-style-interpolation.html [ Skip Timeout ]
  3482. crbug.com/626703 external/wpt/css/css-ui/text-overflow-011.html [ Crash Failure Pass ]
  3483. # <input disabled> does not fire click events after dispatchEvent
  3484. crbug.com/1115661 external/wpt/dom/events/Event-dispatch-click.html [ Timeout ]
  3485. # Implement text-decoration correctly for vertical text
  3486. crbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-thickness-vertical-002.html [ Failure ]
  3487. crbug.com/1133806 external/wpt/css/css-text-decor/text-underline-offset-vertical-002.html [ Failure ]
  3488. crbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-002.html [ Failure ]
  3489. crbug.com/1133806 external/wpt/css/css-text-decor/text-decoration-skip-ink-upright-001.html [ Failure ]
  3490. crbug.com/912362 external/wpt/web-animations/timing-model/timelines/timelines.html [ Failure ]
  3491. # crbug.com/1315717: Deprecating <object><param>
  3492. crbug.com/1315717 external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Failure ]
  3493. crbug.com/1315717 virtual/object-param-url/external/wpt/html/semantics/embedded-content/the-object-element/object-param-url.html [ Pass ]
  3494. # Unclear if XHR events should still be fired after its frame is discarded.
  3495. crbug.com/881180 external/wpt/xhr/open-url-multi-window-4.htm [ Timeout ]
  3496. crbug.com/910709 navigator_language/worker_navigator_language.html [ Timeout ]
  3497. crbug.com/435547 http/tests/cachestorage/serviceworker/ignore-search-with-credentials.html [ Skip ]
  3498. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]
  3499. crbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-left-radius-010.xht [ Failure Pass ]
  3500. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]
  3501. crbug.com/1160916 external/wpt/css/css-backgrounds/border-bottom-right-radius-010.xht [ Failure Pass ]
  3502. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]
  3503. crbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-001.html [ Failure Pass ]
  3504. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]
  3505. crbug.com/1160916 external/wpt/css/css-backgrounds/border-radius-clip-002.htm [ Failure Pass ]
  3506. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]
  3507. crbug.com/1160916 external/wpt/css/css-backgrounds/border-top-left-radius-010.xht [ Failure Pass ]
  3508. crbug.com/1160916 virtual/threaded/external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]
  3509. crbug.com/1160916 external/wpt/css/css-backgrounds/border-top-right-radius-010.xht [ Failure Pass ]
  3510. # [css-grid]
  3511. crbug.com/1045599 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001.html [ Failure ]
  3512. crbug.com/1045599 external/wpt/css/css-grid/alignment/grid-row-axis-self-baseline-synthesized-004.html [ Failure ]
  3513. crbug.com/1045599 external/wpt/css/css-grid/alignment/grid-self-baseline-not-applied-if-sizing-cyclic-dependency-003.html [ Failure ]
  3514. crbug.com/1045599 external/wpt/css/css-grid/grid-definition/grid-repeat-max-width-001.html [ Failure ]
  3515. crbug.com/1335889 external/wpt/css/css-grid/grid-model/grid-areas-overflowing-grid-container-009.html [ Failure ]
  3516. # Simple to fix - but blocked on performance regression requiring cache logic change.
  3517. crbug.com/1272533 external/wpt/css/css-grid/layout-algorithm/grid-intrinsic-size-dynamic-block-size.html [ Failure ]
  3518. # The 'last baseline' keyword is not implemented yet
  3519. crbug.com/885175 external/wpt/css/css-grid/alignment/grid-item-self-baseline-001.html [ Skip ]
  3520. crbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001.html [ Skip ]
  3521. crbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-002.html [ Skip ]
  3522. crbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-004.html [ Skip ]
  3523. crbug.com/885175 external/wpt/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-003.html [ Skip ]
  3524. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001.html [ Failure ]
  3525. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002.html [ Failure ]
  3526. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001.html [ Failure ]
  3527. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002.html [ Failure ]
  3528. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001.html [ Failure ]
  3529. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002.html [ Failure ]
  3530. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003.html [ Failure ]
  3531. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004.html [ Failure ]
  3532. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html [ Failure ]
  3533. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html [ Failure ]
  3534. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html [ Failure ]
  3535. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html [ Failure ]
  3536. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001.html [ Failure ]
  3537. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002.html [ Failure ]
  3538. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001.html [ Failure ]
  3539. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002.html [ Failure ]
  3540. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html [ Failure ]
  3541. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html [ Failure ]
  3542. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html [ Failure ]
  3543. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html [ Failure ]
  3544. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html [ Failure ]
  3545. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html [ Failure ]
  3546. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html [ Failure ]
  3547. crbug.com/885175 external/wpt/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html [ Failure ]
  3548. # Baseline Content-Alignment is not implemented yet for CSS Grid Layout
  3549. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-001.html [ Skip ]
  3550. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-002.html [ Skip ]
  3551. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-003.html [ Skip ]
  3552. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-content-baseline-004.html [ Skip ]
  3553. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-001.html [ Skip ]
  3554. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-002.html [ Skip ]
  3555. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-003.html [ Skip ]
  3556. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-item-mixed-baseline-004.html [ Skip ]
  3557. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-align-001.html [ Failure ]
  3558. crbug.com/764235 external/wpt/css/css-grid/alignment/grid-baseline-justify-001.html [ Failure ]
  3559. # [css-subgrid]
  3560. crbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-001.html [ Failure ]
  3561. crbug.com/618969 external/wpt/css/css-grid/subgrid/auto-track-sizing-002.html [ Failure ]
  3562. crbug.com/618969 external/wpt/css/css-grid/subgrid/baseline-001.html [ Failure ]
  3563. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-001.html [ Failure ]
  3564. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-002.html [ Failure ]
  3565. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-003.html [ Failure ]
  3566. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-004.html [ Failure ]
  3567. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-005.html [ Failure ]
  3568. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-006.html [ Failure ]
  3569. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-007.html [ Failure ]
  3570. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-008.html [ Failure ]
  3571. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-009.html [ Failure ]
  3572. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-001.html [ Failure ]
  3573. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-larger-002.html [ Failure ]
  3574. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-gap-smaller-001.html [ Failure ]
  3575. crbug.com/618969 external/wpt/css/css-grid/subgrid/grid-template-computed-nogrid.html [ Failure ]
  3576. crbug.com/618969 external/wpt/css/css-grid/subgrid/independent-formatting-context.html [ Failure ]
  3577. crbug.com/618969 external/wpt/css/css-grid/subgrid/item-percentage-height-001.html [ Failure ]
  3578. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-001.html [ Failure ]
  3579. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-002.html [ Failure ]
  3580. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-003.html [ Failure ]
  3581. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-004.html [ Failure ]
  3582. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-005.html [ Failure ]
  3583. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-006.html [ Failure ]
  3584. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-007.html [ Failure ]
  3585. crbug.com/618969 external/wpt/css/css-grid/subgrid/line-names-008.html [ Failure ]
  3586. crbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-001.html [ Failure ]
  3587. crbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-002.html [ Failure ]
  3588. crbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-003.html [ Failure ]
  3589. crbug.com/618969 external/wpt/css/css-grid/subgrid/orthogonal-writing-mode-004.html [ Failure ]
  3590. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-001.html [ Failure ]
  3591. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-002.html [ Failure ]
  3592. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-003.html [ Failure ]
  3593. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-004.html [ Failure ]
  3594. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-005.html [ Failure ]
  3595. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-006.html [ Failure ]
  3596. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-007.html [ Failure ]
  3597. crbug.com/618969 external/wpt/css/css-grid/subgrid/repeat-auto-fill-008.html [ Failure ]
  3598. crbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-001.html [ Failure ]
  3599. crbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-baseline-002.html [ Crash Failure Timeout ]
  3600. crbug.com/618969 external/wpt/css/css-grid/subgrid/subgrid-stretch.html [ Failure ]
  3601. crbug.com/1236992 svg/dom/SVGListPropertyTearOff-gccrash.html [ Failure Pass ]
  3602. # [css-animations]
  3603. crbug.com/816956 [ Win ] external/wpt/css/css-animations/KeyframeEffect-getKeyframes.tentative.html [ Failure ]
  3604. crbug.com/664450 http/tests/devtools/console/console-on-animation-worklet.js [ Failure Pass Timeout ]
  3605. # [css-transitions]
  3606. crbug.com/1289685 external/wpt/css/css-transitions/properties-value-inherit-001.html [ Failure Pass ]
  3607. crbug.com/826419 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-remove-track-inband.html [ Skip ]
  3608. crbug.com/825798 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-non-snap-to-lines.html [ Failure ]
  3609. # This test requires a special browser flag and seems not suitable for a wpt test, see bug.
  3610. crbug.com/691944 external/wpt/service-workers/service-worker/update-after-oneday.https.html [ Skip ]
  3611. # These tests (erroneously) see a platform-specific User-Agent header
  3612. crbug.com/595993 external/wpt/service-workers/service-worker/fetch-header-visibility.https.html [ Failure ]
  3613. crbug.com/619427 [ Mac ] fast/overflow/overflow-height-float-not-removed-crash3.html [ Failure Pass ]
  3614. crbug.com/660384 external/wpt/webmessaging/with-ports/001.html [ Failure ]
  3615. crbug.com/660384 external/wpt/webmessaging/without-ports/001.html [ Failure ]
  3616. crbug.com/660384 external/wpt/webmessaging/with-options/broken-origin.html [ Failure ]
  3617. # Added 2016-12-12
  3618. crbug.com/610835 http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html [ Failure Pass ]
  3619. crbug.com/892212 http/tests/wasm/wasm_remote_postMessage_test.https.html [ Failure Pass Timeout ]
  3620. # ====== Random order flaky tests from here ======
  3621. # These tests are flaky when run in random order, which is the default on Linux & Mac since since 2016-12-16.
  3622. crbug.com/702837 virtual/text-antialias/aat-morx.html [ Skip ]
  3623. crbug.com/688670 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-removed.html [ Failure Pass ]
  3624. crbug.com/849670 http/tests/devtools/service-workers/service-worker-v8-cache.js [ Failure Pass Timeout ]
  3625. # ====== Random order flaky tests end here ======
  3626. # ====== Tests from enabling .any.js/.worker.js tests begin here ======
  3627. crbug.com/709227 external/wpt/html/browsers/history/the-location-interface/per-global.window.html [ Failure ]
  3628. crbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.arc.worker.html [ Failure ]
  3629. crbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.closed.worker.html [ Failure ]
  3630. crbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.curve.worker.html [ Failure ]
  3631. crbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.line.worker.html [ Failure ]
  3632. crbug.com/709227 external/wpt/html/canvas/offscreen/path-objects/2d.path.stroke.prune.rect.worker.html [ Failure ]
  3633. # ====== Tests from enabling .any.js/.worker.js tests end here ========
  3634. crbug.com/789139 http/tests/devtools/sources/debugger/live-edit-no-reveal.js [ Crash Failure Pass Timeout ]
  3635. # ====== Begin of display: contents tests ======
  3636. crbug.com/181374 external/wpt/css/css-display/display-contents-dynamic-table-001-inline.html [ Failure ]
  3637. # ====== End of display: contents tests ======
  3638. # ====== Begin of other css-display tests ======
  3639. crbug.com/995106 external/wpt/css/css-display/display-flow-root-list-item-001.html [ Failure ]
  3640. # ====== End of other css-display tests ======
  3641. crbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16be.html?include=workers [ Skip Timeout ]
  3642. crbug.com/930297 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/utf-16le.html?include=workers [ Skip Timeout ]
  3643. crbug.com/676229 plugins/mouse-click-plugin-clears-selection.html [ Failure Pass ]
  3644. crbug.com/742670 plugins/iframe-plugin-bgcolor.html [ Failure Pass ]
  3645. crbug.com/780398 [ Mac ] plugins/mouse-capture-inside-shadow.html [ Failure Pass ]
  3646. crbug.com/1331239 [ Mac ] plugins/plugin-remove-subframe.html [ Crash Pass ]
  3647. crbug.com/678493 http/tests/permissions/chromium/test-request-window.html [ Pass Timeout ]
  3648. crbug.com/689781 external/wpt/media-source/mediasource-duration.html [ Failure Pass ]
  3649. crbug.com/689781 [ Win ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]
  3650. crbug.com/689781 [ Mac ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]
  3651. crbug.com/1157857 virtual/percent-based-scrolling/max-percent-delta-cross-origin-iframes.html [ Failure Pass Timeout ]
  3652. crbug.com/716320 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success-and-failure.https.html [ Failure Timeout ]
  3653. # Test timing out when SharedArrayBuffer is disabled by default.
  3654. # See https://crbug.com/1194557
  3655. crbug.com/1194557 http/tests/devtools/sources/debugger-breakpoints/set-breakpoint-while-blocking-main-thread.js [ Skip Timeout ]
  3656. # Test output varies depending on the bot. A single expectation file doesn't
  3657. # work.
  3658. crbug.com/1194557 fast/beacon/beacon-basic.html [ Failure Pass ]
  3659. # Tests are failing on CodeMirror 6 update, temporarily disable to re-open the tree.
  3660. # Restore set-breakpoint-while-blocking-main-thread.js test to previous state [ Pass ] with
  3661. # crbug.com/1194557 annotation as soon as crbug.com/1270207 has been fixed.
  3662. crbug.com/1270207 virtual/portals/http/tests/devtools/portals/portals-sources-activate.js [ Skip ]
  3663. crbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success-and-failure.html [ Timeout ]
  3664. crbug.com/874302 external/wpt/wasm/serialization/module/broadcastchannel-success.html [ Timeout ]
  3665. crbug.com/831509 external/wpt/service-workers/service-worker/skip-waiting-installed.https.html [ Failure Pass ]
  3666. # Fullscreen tests are failed because of consuming user activation on fullscreen
  3667. crbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-twice-manual.html [ Failure ]
  3668. crbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-elements-manual.html [ Failure ]
  3669. crbug.com/852645 external/wpt/fullscreen/api/element-request-fullscreen-two-iframes-manual.html [ Failure Timeout ]
  3670. # snav tests fail because of a DCHECK
  3671. crbug.com/985520 virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-enter-from-interest.html [ Crash ]
  3672. # User-Agent is not able to be set on XHR/fetch
  3673. crbug.com/571722 external/wpt/xhr/preserve-ua-header-on-redirect.htm [ Failure ]
  3674. # Sheriff failures 2017-03-21
  3675. crbug.com/703518 http/tests/devtools/tracing/worker-js-frames.js [ Failure Pass ]
  3676. crbug.com/674720 http/tests/loading/preload-img-test.html [ Failure Pass ]
  3677. # Sheriff failures 2017-05-11
  3678. crbug.com/724027 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]
  3679. crbug.com/724027 http/tests/security/contentSecurityPolicy/source-list-parsing-04.html [ Skip ]
  3680. # Sheriff failures 2017-05-16
  3681. crbug.com/722212 fast/events/pointerevents/mouse-pointer-event-properties.html [ Failure Pass Timeout ]
  3682. # Crashes on win
  3683. crbug.com/722943 [ Win ] media/audio-repaint.html [ Crash ]
  3684. # Sheriff failures 2018-08-15
  3685. crbug.com/874837 [ Win ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]
  3686. crbug.com/874837 [ Linux ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure Pass ]
  3687. # Sheiff failures 2021-04-09
  3688. crbug.com/1197444 [ Linux ] virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/overlay-scrollbar-over-child-layer-nested-2.html [ Crash Failure Pass ]
  3689. crbug.com/715718 external/wpt/media-source/mediasource-remove.html [ Failure Pass ]
  3690. # Temporarily disabled since tests don't make window key on Mac
  3691. crbug.com/1267867 [ Mac ] external/wpt/pointerevents/pointerlock/* [ Skip ]
  3692. crbug.com/1267867 [ Mac ] external/wpt/pointerlock/* [ Skip ]
  3693. crbug.com/1267867 [ Mac ] http/tests/pointer-lock/* [ Skip ]
  3694. crbug.com/1267867 [ Mac ] pointer-lock/* [ Skip ]
  3695. # Feature Policy changes fullscreen behaviour, tests need updating
  3696. crbug.com/718155 fullscreen/full-screen-restrictions.html [ Failure Timeout ]
  3697. crbug.com/852645 gamepad/full-screen-gamepad.html [ Timeout ]
  3698. crbug.com/1191123 gamepad/gamepad-polling-access.html [ Failure Pass ]
  3699. # Feature Policy changes same-origin allowpaymentrequest behaviour, tests need updating
  3700. crbug.com/718155 payments/payment-request-in-iframe.html [ Failure ]
  3701. crbug.com/718155 payments/payment-request-in-iframe-nested-not-allowed.html [ Failure ]
  3702. # Expect to fail. The test is applicable only when DigitalGoods flag is disabled.
  3703. crbug.com/1080870 http/tests/payments/payment-request-app-store-billing-mandatory-total.html [ Failure ]
  3704. # Layout Tests on Swarming (Windows) - https://crbug.com/717347
  3705. crbug.com/713094 [ Win ] fast/css/fontfaceset-check-platform-fonts.html [ Failure Pass ]
  3706. # Image decode failures due to document destruction.
  3707. crbug.com/721435 external/wpt/html/semantics/embedded-content/the-img-element/decode/image-decode-iframe.html [ Skip ]
  3708. # Test times out for unknown reasons on chromium-based browsers and Safari.
  3709. crbug.com/1328330 external/wpt/html/semantics/embedded-content/the-img-element/image-loading-lazy-move-into-script-disabled-iframe.html [ Timeout ]
  3710. # Sheriff failures 2017-05-23
  3711. crbug.com/725470 editing/shadow/doubleclick-on-meter-in-shadow-crash.html [ Crash Failure Pass ]
  3712. # Sheriff failures 2017-06-14
  3713. crbug.com/737959 http/tests/misc/object-image-load-outlives-gc-without-crashing.html [ Failure Pass ]
  3714. crbug.com/737959 http/tests/misc/video-poster-image-load-outlives-gc-without-crashing.html [ Crash Failure Pass ]
  3715. # module script lacks XHTML support
  3716. crbug.com/717643 external/wpt/html/semantics/scripting-1/the-script-element/module/module-in-xhtml.xhtml [ Failure ]
  3717. # known bug: import() inside set{Timeout,Interval}
  3718. # Service worker updates need to handle redirect appropriately.
  3719. crbug.com/889798 external/wpt/service-workers/service-worker/import-scripts-redirect.https.html [ Skip ]
  3720. # Service workers need to handle Clear-Site-Data appropriately.
  3721. crbug.com/1052641 external/wpt/service-workers/service-worker/unregister-immediately-before-installed.https.html [ Skip ]
  3722. crbug.com/1052642 external/wpt/service-workers/service-worker/unregister-immediately-during-extendable-events.https.html [ Skip ]
  3723. # Sheriff failures 2017-07-03
  3724. crbug.com/708994 http/tests/security/cross-frame-mouse-source-capabilities.html [ Pass Timeout ]
  3725. crbug.com/746128 [ Mac ] media/controls/video-enter-exit-fullscreen-without-hovering-doesnt-show-controls.html [ Failure Pass ]
  3726. # Tests failing when enabling new modern media controls
  3727. crbug.com/831942 media/webkit-media-controls-webkit-appearance.html [ Failure Pass ]
  3728. crbug.com/832157 external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-after-controls-added.html [ Skip ]
  3729. crbug.com/832169 media/media-controls-fit-properly-while-zoomed.html [ Failure Pass ]
  3730. crbug.com/849694 [ Mac ] http/tests/media/controls/toggle-class-with-state-source-buffer.html [ Failure Pass ]
  3731. # Tests currently failing on Windows when run on Swarming
  3732. crbug.com/757165 [ Win ] compositing/culling/filter-occlusion-blur.html [ Skip ]
  3733. crbug.com/757165 [ Win ] css3/blending/mix-blend-mode-with-filters.html [ Skip ]
  3734. crbug.com/757165 [ Win ] external/wpt/preload/download-resources.html [ Skip ]
  3735. crbug.com/757165 [ Win ] external/wpt/preload/preload-default-csp.sub.html [ Skip ]
  3736. crbug.com/757165 [ Win ] fast/forms/file/recover-file-input-in-unposted-form.html [ Skip ]
  3737. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-aligned-not-aligned.html [ Crash Failure Pass Timeout ]
  3738. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-clipped-overflowed-content.html [ Crash Failure Pass Timeout ]
  3739. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-only-white-space.html [ Crash Failure Pass Timeout ]
  3740. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-container-white-space.html [ Crash Failure Pass Timeout ]
  3741. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-date.html [ Crash Failure Pass Timeout ]
  3742. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-div-scrollable-but-without-focusable-content.html [ Crash Failure Pass Timeout ]
  3743. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-horizontally.html [ Crash Failure Pass Timeout ]
  3744. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-fully-aligned-vertically.html [ Crash Failure Pass Timeout ]
  3745. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-iframe-recursive-offset-parent.html [ Crash Failure Pass Timeout ]
  3746. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-not-focusable.html [ Crash Failure Pass Timeout ]
  3747. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-area-without-image.html [ Crash Failure Pass Timeout ]
  3748. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-overlapped-areas.html [ Crash Failure Pass Timeout ]
  3749. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-imagemap-simple.html [ Crash Failure Pass Timeout ]
  3750. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-input.html [ Crash Failure Pass Timeout ]
  3751. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-multiple-select.html [ Crash Failure Pass Timeout ]
  3752. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-below.html [ Crash Failure Pass Timeout ]
  3753. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-not-rightof.html [ Crash Failure Pass Timeout ]
  3754. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-overlapping-elements.html [ Crash Failure Pass Timeout ]
  3755. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio-group.html [ Crash Failure Pass Timeout ]
  3756. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-radio.html [ Crash Failure Pass Timeout ]
  3757. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-single-select.html [ Crash Failure Pass Timeout ]
  3758. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-symmetrically-positioned.html [ Crash Failure Pass Timeout ]
  3759. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-table-traversal.html [ Crash Failure Pass Timeout ]
  3760. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-textarea.html [ Crash Failure Pass Timeout ]
  3761. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Crash Failure Pass Timeout ]
  3762. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-two-elements-one-line.html [ Crash Failure Pass Timeout ]
  3763. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html [ Crash Failure Pass Timeout ]
  3764. crbug.com/757165 [ Win ] fast/spatial-navigation/snav-z-index.html [ Crash Failure Pass Timeout ]
  3765. crbug.com/757165 [ Win ] http/tests/devtools/sources/ui-source-code-metadata.js [ Failure Pass Timeout ]
  3766. crbug.com/757165 [ Win ] http/tests/misc/client-hints-accept-meta-preloader.html [ Skip ]
  3767. crbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-accelerated-child-with-filter-child.html [ Skip ]
  3768. crbug.com/757165 [ Win ] paint/invalidation/filters/filter-repaint-on-accelerated-layer.html [ Skip ]
  3769. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified-save-restore.html [ Skip ]
  3770. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-filter-modified.html [ Skip ]
  3771. crbug.com/757165 [ Win ] virtual/threaded-no-composited-antialiasing/animations/svg/animated-filter-svg-element.html [ Skip ]
  3772. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-clipping.html [ Skip ]
  3773. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-color.html [ Skip ]
  3774. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-gradient.html [ Skip ]
  3775. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-color-over-image.html [ Skip ]
  3776. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-fill-style.html [ Skip ]
  3777. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-global-alpha.html [ Skip ]
  3778. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-gradient.html [ Skip ]
  3779. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-gradient-over-image.html [ Skip ]
  3780. # This is timing out on non-windows platforms, marked as skip on all platforms.
  3781. crbug.com/757165 virtual/gpu/fast/canvas/canvas-blending-gradient-over-pattern.html [ Skip ]
  3782. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-color.html [ Skip ]
  3783. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-gradient.html [ Skip ]
  3784. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-image.html [ Skip ]
  3785. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-image-over-pattern.html [ Skip ]
  3786. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-color.html [ Skip ]
  3787. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-pattern-over-pattern.html [ Skip ]
  3788. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-shadow.html [ Skip ]
  3789. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-text.html [ Skip ]
  3790. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-blending-transforms.html [ Skip ]
  3791. # This is currently skipped on all OSes due to crbug.com/775957
  3792. #crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]
  3793. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-scale-drawImage-shadow.html [ Skip ]
  3794. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/canvas-strokeRect-alpha-shadow.html [ Skip ]
  3795. crbug.com/757165 [ Win ] virtual/gpu/fast/canvas/image-object-in-canvas.html [ Skip ]
  3796. # We cannot yet launch Canvas2D staying GPU on readback
  3797. crbug.com/1288118 fast/canvas/bug382588.html [ Skip ]
  3798. crbug.com/1288118 fast/canvas/canvas-gpu-consistency.html [ Skip ]
  3799. # Antialiasing error
  3800. crbug.com/845973 virtual/display-compositor-pixel-dump/fast/canvas/display-compositor-pixel-dump/OffscreenCanvas-opaque-background-compositing.html [ Failure Pass ]
  3801. # Tests occasionaly timing out (flaky) on WebKit Win7 dbg builder
  3802. crbug.com/757955 http/tests/devtools/tracing/timeline-paint/layer-tree.js [ Failure Pass Timeout ]
  3803. # This test has a fixed number of time which can depend on performance.
  3804. crbug.com/669329 http/tests/devtools/tracing/timeline-js/timeline-runtime-stats.js [ Crash Failure Pass Timeout ]
  3805. crbug.com/769347 [ Mac ] fast/dom/inert/inert-node-is-uneditable.html [ Failure ]
  3806. crbug.com/769056 virtual/text-antialias/emoji-web-font.html [ Failure ]
  3807. crbug.com/1159689 [ Mac ] virtual/text-antialias/emoticons.html [ Failure Pass ]
  3808. crbug.com/770232 [ Win ] virtual/text-antialias/hyphenate-character.html [ Failure ]
  3809. # Editing commands incorrectly assume no plain text length change after formatting text.
  3810. crbug.com/764489 editing/execCommand/format-block-multiple-paragraphs.html [ Failure ]
  3811. crbug.com/764489 editing/execCommand/format-block-multiple-paragraphs-in-pre.html [ Failure ]
  3812. # Previous/NextWordPosition crossing editing boundaries.
  3813. crbug.com/900060 editing/selection/mixed-editability-8.html [ Failure ]
  3814. # WPT for the missing caretPositionFromPoint implementation
  3815. crbug.com/388976 external/wpt/css/cssom/caretPositionFromPoint-with-transformation.html [ Timeout ]
  3816. # Sheriff failure 2017-09-18
  3817. crbug.com/766404 [ Mac ] plugins/keyboard-events.html [ Failure Pass ]
  3818. # Layout test corrupted after Skia rect tessellation change due to apparent SwiftShader bug.
  3819. # This was previously skipped on Windows in the section for crbug.com/757165
  3820. crbug.com/775957 virtual/gpu/fast/canvas/canvas-incremental-repaint.html [ Skip ]
  3821. # Sheriff failures 2017-09-21
  3822. crbug.com/767469 http/tests/navigation/start-load-during-provisional-loader-detach.html [ Failure Pass ]
  3823. # Sheriff failures 2017-10-02
  3824. crbug.com/771492 external/wpt/css/css-tables/table-model-fixup-2.html [ Failure ]
  3825. crbug.com/807191 fast/media/mq-color-gamut-picture.html [ Failure Pass Timeout ]
  3826. # Sheriff failures 2017-10-23
  3827. crbug.com/772411 http/tests/media/autoplay-crossorigin.html [ Failure Pass Timeout ]
  3828. # Sheriff failures 2017-10-24
  3829. crbug.com/773122 crbug.com/777813 [ Win ] virtual/text-antialias/font-ascent-mac.html [ Failure Pass ]
  3830. # The "Lax+POST" or lax-allowing-unsafe intervention for SameSite-by-default
  3831. # cookies causes POST tests to fail.
  3832. crbug.com/990439 external/wpt/cookies/samesite/form-post-blank.https.html [ Failure ]
  3833. crbug.com/843945 external/wpt/cookies/samesite/form-post-blank-reload.https.html [ Failure ]
  3834. crbug.com/990439 http/tests/cookies/same-site/popup-cross-site-post.https.html [ Failure ]
  3835. # Flaky Windows-only content_shell crash
  3836. crbug.com/1162205 [ Win ] virtual/schemeful-same-site/external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]
  3837. crbug.com/1162205 [ Win ] external/wpt/cookies/attributes/path-redirect.html [ Crash Pass ]
  3838. # Temporarily disable failing cookie control character tests until we implement
  3839. # the latest spec changes. Specifically, 0x00, 0x0d and 0x0a should cause
  3840. # cookie rejection instead of truncation, and the tab character should be
  3841. # treated as a valid character.
  3842. crbug.com/1233602 external/wpt/cookies/attributes/attributes-ctl.sub.html [ Failure ]
  3843. crbug.com/1233602 external/wpt/cookies/name/name-ctl.html [ Failure ]
  3844. crbug.com/1233602 external/wpt/cookies/value/value-ctl.html [ Failure ]
  3845. # The virtual tests run with Schemeful Same-Site disabled. These should fail to ensure the disabled feature code paths work.
  3846. crbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-websockets.sub.tentative.html [ Failure ]
  3847. crbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-iframe-subresource.tentative.html [ Failure ]
  3848. crbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-subresource.tentative.html [ Failure ]
  3849. crbug.com/1127348 virtual/schemeful-same-site/external/wpt/cookies/schemeful-same-site/schemeful-navigation.tentative.html [ Failure ]
  3850. # These tests fail with Schemeful Same-Site due to their cross-schemeness. Skip them until there's a more permanent solution.
  3851. crbug.com/1141909 external/wpt/websockets/cookies/001.html?wss [ Skip ]
  3852. crbug.com/1141909 external/wpt/websockets/cookies/002.html?wss [ Skip ]
  3853. crbug.com/1141909 external/wpt/websockets/cookies/003.html?wss [ Skip ]
  3854. crbug.com/1141909 external/wpt/websockets/cookies/005.html?wss [ Skip ]
  3855. crbug.com/1141909 external/wpt/websockets/cookies/007.html?wss [ Skip ]
  3856. # Sheriff failures 2017-12-04
  3857. crbug.com/667560 http/tests/devtools/elements/styles-4/inline-style-sourcemap.js [ Failure Pass ]
  3858. # Double tap on modern media controls is a bit more complicated on Mac but
  3859. # since we are not targeting Mac yet we can come back and fix this later.
  3860. crbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-backwards.html [ Skip ]
  3861. crbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards.html [ Skip ]
  3862. crbug.com/783154 [ Mac ] media/controls/doubletap-to-jump-forwards-too-short.html [ Skip ]
  3863. crbug.com/783154 [ Mac ] media/controls/doubletap-on-play-button.html [ Skip ]
  3864. crbug.com/783154 [ Mac ] media/controls/doubletap-to-toggle-fullscreen.html [ Skip ]
  3865. crbug.com/783154 [ Mac ] media/controls/click-anywhere-to-play-pause.html [ Skip ]
  3866. # Seen flaky on Linux, suppressing on Windows as well
  3867. crbug.com/831720 [ Win ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]
  3868. crbug.com/831720 [ Linux ] media/controls/doubletap-to-jump-forwards-too-short.html [ Failure Pass ]
  3869. crbug.com/831720 media/controls/tap-to-hide-controls.html [ Failure Pass ]
  3870. # These tests require Unified Autoplay.
  3871. crbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-allowed-by-feature-policy-attribute-redirect-on-load.https.sub.html [ Skip ]
  3872. crbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-default-feature-policy.https.sub.html [ Skip ]
  3873. crbug.com/779087 external/wpt/html/semantics/embedded-content/media-elements/autoplay-disabled-by-feature-policy.https.sub.html [ Skip ]
  3874. # Does not work on Mac
  3875. crbug.com/793771 [ Mac ] media/controls/scrubbing.html [ Skip ]
  3876. # Different paths may have different anti-aliasing pixels 2018-02-21
  3877. skbug.com/7641 external/wpt/css/css-paint-api/paint2d-paths.https.html [ Failure Pass ]
  3878. # Sheriff failures 2018-01-25
  3879. # Flaking on Linux Tests, WebKit Linux Trusty (also ASAN, Leak)
  3880. crbug.com/805794 [ Linux ] virtual/android/url-bar/bottom-fixed-adjusted-when-showing-url-bar.html [ Failure Pass ]
  3881. # Sheriff failures 2018-02-05
  3882. crbug.com/809152 netinfo/estimate-multiple-frames.html [ Failure Pass ]
  3883. # Sheriff failures 2018-02-20
  3884. crbug.com/789921 media/controls/repaint-on-resize.html [ Failure Pass ]
  3885. # Sheriff failures 2018-02-21
  3886. crbug.com/814585 [ Linux ] fast/css3-text/css3-text-decoration/text-underline-position/text-underline-position-cjk.html [ Failure Pass ]
  3887. # Sheriff failures 2018-02-22
  3888. crbug.com/814889 idle-callback/test-runner-run-idle-tasks.html [ Crash Pass Timeout ]
  3889. crbug.com/814953 fast/replaced/no-focus-ring-iframe.html [ Failure Pass ]
  3890. crbug.com/814964 virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure Pass ]
  3891. # These pass on bots with proprietary codecs (most CQ bots) while failing on bots without.
  3892. crbug.com/807110 external/wpt/html/semantics/embedded-content/media-elements/mime-types/canPlayType.html [ Failure Pass ]
  3893. crbug.com/807110 external/wpt/media-source/mediasource-addsourcebuffer.html [ Failure Pass ]
  3894. crbug.com/807110 external/wpt/media-source/mediasource-buffered.html [ Failure Pass ]
  3895. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-a-bitrate.html [ Failure Pass ]
  3896. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-audio-bitrate.html [ Failure Pass ]
  3897. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-framesize.html [ Failure Pass ]
  3898. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-av-video-bitrate.html [ Failure Pass ]
  3899. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-bitrate.html [ Failure Pass Timeout ]
  3900. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framerate.html [ Failure Pass Timeout ]
  3901. crbug.com/807110 external/wpt/media-source/mediasource-config-change-mp4-v-framesize.html [ Failure Pass ]
  3902. # Failure and Pass for crbug.com/807110 and Timeout for crbug.com/727252.
  3903. crbug.com/727252 external/wpt/media-source/mediasource-endofstream.html [ Failure Pass Timeout ]
  3904. crbug.com/807110 external/wpt/media-source/mediasource-is-type-supported.html [ Failure Pass ]
  3905. crbug.com/807110 external/wpt/media-source/mediasource-sequencemode-append-buffer.html [ Failure Pass ]
  3906. crbug.com/807110 external/wpt/media-source/mediasource-sourcebuffer-mode-timestamps.html [ Failure Pass ]
  3907. crbug.com/794338 media/video-rotation.html [ Failure Pass ]
  3908. crbug.com/811605 media/video-poster-after-loadedmetadata.html [ Failure Pass ]
  3909. # MHT works only when loaded from local FS (file://..).
  3910. crbug.com/778467 [ Fuchsia ] mhtml/mhtml_in_iframe.html [ Failure ]
  3911. # These tests timeout when using Scenic ozone platform.
  3912. crbug.com/1067477 [ Fuchsia ] fast/media/matchmedium-query-api.html [ Skip ]
  3913. crbug.com/1067477 [ Fuchsia ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen.html [ Skip ]
  3914. ### See crbug.com/891427 comment near the top of this file:
  3915. ###crbug.com/816914 [ Mac ] fast/canvas/canvas-drawImage-live-video.html [ Failure Pass ]
  3916. crbug.com/817167 http/tests/devtools/oopif/oopif-cookies-refresh.js [ Failure Pass Timeout ]
  3917. # Sheriff 2018-03-02
  3918. crbug.com/818076 http/tests/devtools/oopif/oopif-elements-navigate-in.js [ Failure Pass ]
  3919. # Sheriff 2018-03-05
  3920. crbug.com/818650 [ Linux ] wpt_internal/speech/scripted/speechrecognition-restart-onend.html [ Crash Pass ]
  3921. # Prefetching Signed Exchange DevTools tests are flaky.
  3922. crbug.com/851363 http/tests/devtools/sxg/sxg-prefetch-fail.js [ Failure Pass ]
  3923. crbug.com/851363 http/tests/devtools/sxg/sxg-prefetch.js [ Failure Pass ]
  3924. # Sheriff 2018-03-22
  3925. crbug.com/824848 external/wpt/html/semantics/links/following-hyperlinks/activation-behavior.window.html [ Failure Pass ]
  3926. # Sheriff 2018-03-26
  3927. crbug.com/825733 [ Win ] media/color-profile-video-seek-filter.html [ Failure Pass Timeout ]
  3928. crbug.com/754986 media/video-transformed.html [ Failure Pass ]
  3929. # Sheriff 2018-03-29
  3930. crbug.com/827209 [ Win ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]
  3931. crbug.com/827209 [ Linux ] fast/events/middleClickAutoscroll-latching.html [ Failure Pass Timeout ]
  3932. # Utility for manual testing, not intended to be run as part of layout tests.
  3933. crbug.com/785955 http/tests/credentialmanagement/tools/virtual-authenticator-environment-manual.html [ Skip ]
  3934. # Sheriff 2018-04-11
  3935. crbug.com/831796 fast/events/autoscroll-in-textfield.html [ Failure Pass ]
  3936. # Sheriff 2018-04-13
  3937. crbug.com/833655 [ Linux ] media/controls/closed-captions-dynamic-update.html [ Skip ]
  3938. crbug.com/833658 media/video-controls-focus-movement-on-hide.html [ Failure Pass ]
  3939. # Sheriff 2018-05-22
  3940. crbug.com/845610 [ Win ] http/tests/inspector-protocol/target/target-browser-context.js [ Failure Pass ]
  3941. crbug.com/843135 virtual/gpu/fast/canvas/canvas-arc-circumference-fill.html [ Failure Pass ]
  3942. crbug.com/941429 virtual/gpu/fast/canvas/canvas-arc-circumference.html [ Failure ]
  3943. crbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference-fill.html [ Failure ]
  3944. crbug.com/941429 virtual/gpu/fast/canvas/canvas-ellipse-circumference.html [ Failure ]
  3945. # Sheriff 2018-05-31
  3946. crbug.com/848398 http/tests/devtools/oopif/oopif-performance-cpu-profiles.js [ Failure Pass Timeout ]
  3947. # Sheriff 2018-06-07
  3948. crbug.com/850358 http/tests/devtools/editor/text-editor-enter-behaviour.js [ Failure Pass Timeout ]
  3949. crbug.com/849978 http/tests/devtools/elements/styles-4/stylesheet-source-url-comment.js [ Failure Pass Timeout ]
  3950. # User Activation
  3951. crbug.com/736415 crbug.com/1066190 external/wpt/html/user-activation/navigation-state-reset-crossorigin.sub.tentative.html [ Failure Timeout ]
  3952. crbug.com/736415 external/wpt/html/user-activation/navigation-state-reset-sameorigin.tentative.html [ Failure ]
  3953. # S13N Sheriff 2018-7-11
  3954. crbug.com/862643 http/tests/serviceworker/navigation_preload/use-counter.html [ Failure Pass ]
  3955. # Sheriff 2018-07-30
  3956. crbug.com/873873 external/wpt/service-workers/service-worker/fetch-canvas-tainting-video.https.html [ Pass Timeout ]
  3957. crbug.com/873873 external/wpt/service-workers/service-worker/fetch-canvas-tainting-video-cache.https.html [ Pass Timeout ]
  3958. crbug.com/875884 [ Win ] lifecycle/background-change-lifecycle-count.html [ Failure Pass ]
  3959. # Sheriff 2018-08-20
  3960. crbug.com/862589 virtual/threaded/fast/idle-callback/long_idle_periods.html [ Pass Timeout ]
  3961. # fast/events/middleClickAutoscroll-* are failing on Mac
  3962. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click-hyperlink.html [ Skip ]
  3963. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-click.html [ Skip ]
  3964. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-drag.html [ Skip ]
  3965. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-event-fired.html [ Skip ]
  3966. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-in-iframe.html [ Skip ]
  3967. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-latching.html [ Skip ]
  3968. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-modal-scrollable-iframe-div.html [ Skip ]
  3969. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs-forbidden.html [ Skip ]
  3970. # The next also fails due to crbug.com/891427, thus disabled on all platforms.
  3971. crbug.com/874162 [ Mac ] fast/events/middleClickAutoscroll-nested-divs.html [ Skip ]
  3972. crbug.com/874162 [ Mac ] fast/events/selection-autoscroll-borderbelt.html [ Skip ]
  3973. crbug.com/1198842 [ Linux ] virtual/scroll-unification/fast/events/selection-autoscroll-borderbelt.html [ Pass Timeout ]
  3974. # Passes in threaded mode, fails without it. This is a real bug.
  3975. crbug.com/1112183 fast/scrolling/autoscroll-iframe-no-scrolling.html [ Failure ]
  3976. # Sheriff 2018-09-10
  3977. crbug.com/881207 fast/js/regress/splice-to-remove.html [ Pass Timeout ]
  3978. crbug.com/882689 http/tests/security/cookies/third-party-cookie-blocking-worker.html [ Failure Pass ]
  3979. # Sheriff 2018-10-15
  3980. crbug.com/895257 [ Mac ] external/wpt/css/css-fonts/variations/at-font-face-font-matching.html [ Failure Pass ]
  3981. # Test is flaky under load
  3982. crbug.com/904389 http/tests/preload/delaying_onload_link_preload_after_discovery.html [ Failure Pass ]
  3983. # Sheriff 2018-11-26
  3984. crbug.com/908347 media/autoplay/webaudio-audio-context-resume.html [ Failure Pass ]
  3985. #Sheriff 2018-12-04
  3986. crbug.com/911515 [ Mac ] transforms/shadows.html [ Failure Pass ]
  3987. crbug.com/911782 [ Mac ] paint/invalidation/forms/submit-focus-by-mouse-then-keydown.html [ Failure Pass ]
  3988. # Sheriff 2018-12-06
  3989. crbug.com/912793 crbug.com/899087 virtual/android/fullscreen/full-screen-iframe-allowed-video.html [ Crash Failure Pass Timeout ]
  3990. # Sheriff 2018-12-07
  3991. crbug.com/912821 http/tests/devtools/tracing/user-timing.js [ Failure Pass Timeout ]
  3992. # Sheriff 2018-12-13
  3993. crbug.com/910452 media/controls/buttons-after-reset.html [ Failure Pass ]
  3994. crbug.com/919272 external/wpt/resource-timing/resource-timing.html [ Skip ]
  3995. # Some bots are built without H264/AVC1 encoding support.
  3996. crbug.com/719023 fast/mediarecorder/MediaRecorder-isTypeSupported-avc1.html [ Failure Pass ]
  3997. crbug.com/719023 media_capabilities/encodingInfo-avc1.html [ Failure Pass ]
  3998. # Sheriff 2019-01-07
  3999. crbug.com/919587 [ Linux ] virtual/threaded/fast/idle-callback/idle_periods.html [ Failure Pass ]
  4000. # WebRTC Plan B
  4001. crbug.com/920979 virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCTrackEvent-fire.html [ Timeout ]
  4002. # Mac doesn't support lowLatency/desynchronized Canvas Contexts.
  4003. crbug.com/922218 [ Mac ] fast/canvas-api/canvas-lowlatency-getContext.html [ Failure ]
  4004. # Sheriff 2019-01-14
  4005. crbug.com/921583 http/tests/preload/meta-viewport-link-headers.html [ Failure Pass ]
  4006. # These fail (some time out, some are flaky, etc.) when landing valid changes to Mojo bindings
  4007. # dispatch timing. Many of them seem to fail for different reasons, but pretty consistently in most
  4008. # cases it seems like a problem around test expectation timing rather than real bugs affecting
  4009. # production code. Because such timing bugs are relatively common in tests and it would thus be very
  4010. # difficult to land the dispatch change without some temporary breakage, these tests are disabled
  4011. crbug.com/922951 fast/css/pseudo-hover-active-display-none.html [ Crash Failure Pass Timeout ]
  4012. crbug.com/922951 fast/forms/number/number-input-event-composed.html [ Crash Failure Pass Timeout ]
  4013. crbug.com/922951 http/tests/cache/subresource-fragment-identifier.html [ Crash Failure Pass Timeout ]
  4014. crbug.com/922951 http/tests/devtools/tracing/timeline-network-received-data.js [ Crash Failure Pass Timeout ]
  4015. crbug.com/922951 http/tests/history/back-to-post.html [ Crash Failure Pass Timeout ]
  4016. crbug.com/922951 http/tests/security/cookies/basic.html [ Crash Failure Pass Timeout ]
  4017. crbug.com/922951 http/tests/webaudio/autoplay-crossorigin.html [ Crash Failure Pass Timeout ]
  4018. crbug.com/922951 media/controls/overflow-menu-hide-on-click-outside-stoppropagation.html [ Crash Failure Pass Timeout ]
  4019. crbug.com/922951 virtual/prefer_compositing_to_lcd_text/scrollbars/resize-scales-with-dpi-150.html [ Crash Failure Pass Timeout ]
  4020. crbug.com/922951 virtual/threaded/http/tests/devtools/tracing/frame-model-instrumentation.js [ Crash Failure Pass Timeout ]
  4021. crbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-record-reload.js [ Crash Failure Pass Timeout ]
  4022. crbug.com/922951 virtual/threaded/http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Crash Failure Pass Timeout ]
  4023. # Flaky devtools test for recalculating styles.
  4024. crbug.com/1018177 http/tests/devtools/tracing/timeline-style/timeline-recalculate-styles.js [ Failure Pass ]
  4025. # Race: The RTCIceConnectionState can become "connected" before getStats()
  4026. # returns candidate-pair whose state is "succeeded", this sounds like a
  4027. # contradiction.
  4028. # This test is not intended to pass on Plan B.
  4029. crbug.com/740501 virtual/webrtc-wpt-plan-b/external/wpt/webrtc/RTCPeerConnection-onnegotiationneeded.html [ Failure Pass Timeout ]
  4030. crbug.com/910979 http/tests/html/validation-bubble-oopif-clip.html [ Failure Pass ]
  4031. # Sheriff 2019-02-01, 2019-02-19
  4032. # These are crashy on Win10, and seem to leave processes lying around, causing the swarming
  4033. # task to hang.
  4034. # Recently became flaky on multiple platforms (Linux and Windows primarily)
  4035. crbug.com/927769 fast/webgl/OffscreenCanvas-webgl-preserveDrawingBuffer.html [ Skip ]
  4036. # Sheriff 2019-02-12
  4037. crbug.com/1072768 media/video-played-ranges-1.html [ Failure Pass Timeout ]
  4038. # These started failing when network service was enabled by default.
  4039. crbug.com/933880 external/wpt/service-workers/service-worker/request-end-to-end.https.html [ Failure ]
  4040. crbug.com/933880 http/tests/inspector-protocol/network/xhr-interception-auth-fail.js [ Failure ]
  4041. # This passes in content_shell but not in chrome with network service disabled,
  4042. # because content_shell does not add the about: handler. With network service
  4043. # enabled this fails in both content_shell and chrome.
  4044. crbug.com/933880 http/tests/misc/redirect-to-about-blank.html [ Failure Timeout ]
  4045. # Sheriff 2019-02-22
  4046. crbug.com/934636 http/tests/security/cross-origin-indexeddb-allowed.html [ Crash Pass ]
  4047. crbug.com/934818 http/tests/devtools/tracing/decode-resize.js [ Failure Pass ]
  4048. # Sheriff 2019-02-28
  4049. crbug.com/936827 external/wpt/fullscreen/api/element-request-fullscreen-and-remove-manual.html [ Failure Pass ]
  4050. # Contentful First Paint failures
  4051. crbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate.html [ Failure ]
  4052. crbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-3d-rotate-descendant.html [ Failure ]
  4053. crbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale.html [ Failure ]
  4054. crbug.com/1322629 external/wpt/paint-timing/fcp-only/fcp-invisible-scale-transition.html [ Failure ]
  4055. # Also crbug.com/1044535
  4056. crbug.com/937416 http/tests/devtools/resource-tree/resource-tree-frame-navigate.js [ Failure Pass Timeout ]
  4057. # Sheriff 2019-03-04
  4058. # Also crbug.com/1044418
  4059. crbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]
  4060. crbug.com/937811 [ Linux Release ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass ]
  4061. crbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-2.js [ Failure Pass Timeout ]
  4062. # Sheriff 2019-03-05
  4063. crbug.com/938200 http/tests/devtools/network/network-blocked-reason.js [ Pass Timeout ]
  4064. # Caused a revert of a good change.
  4065. crbug.com/931533 media/video-played-collapse.html [ Failure Pass ]
  4066. # Sheriff 2019-03-14
  4067. crbug.com/806357 virtual/threaded/fast/events/pointerevents/pinch/pointerevent_touch-action-pinch_zoom_touch.html [ Crash Failure Pass Timeout ]
  4068. # Trooper 2019-03-19
  4069. crbug.com/943388 [ Win ] http/tests/devtools/network/network-recording-after-reload-with-screenshots-enabled.js [ Failure Pass ]
  4070. # Sheriff 2019-03-25
  4071. crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule-tab.js [ Failure Pass ]
  4072. crbug.com/945665 http/tests/devtools/elements/styles-3/styles-add-new-rule.js [ Failure Pass Timeout ]
  4073. crbug.com/945665 http/tests/devtools/elements/styles-3/styles-change-node-while-editing.js [ Failure Pass ]
  4074. # Tests using testRunner.useUnfortunateSynchronousResizeMode occasionally timeout,
  4075. # but the test coverage is still good.
  4076. crbug.com/919789 fast/dom/Window/window-resize-contents.html [ Pass Timeout ]
  4077. crbug.com/1021627 fast/dom/rtl-scroll-to-leftmost-and-resize.html [ Failure Pass Timeout ]
  4078. # Sheriff 2019-03-28
  4079. crbug.com/946711 http/tests/devtools/editor/text-editor-search-switch-editor.js [ Failure Pass ]
  4080. crbug.com/946712 [ Release ] http/tests/devtools/elements/styles-2/paste-property.js [ Crash Pass Timeout ]
  4081. # Sheriff 2019-04-09
  4082. crbug.com/946335 [ Linux ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]
  4083. crbug.com/946335 [ Mac ] fast/filesystem/file-writer-abort-depth.html [ Crash Pass ]
  4084. # The postMessage() calls intended to complete the test are blocked due to being
  4085. # cross-origin between the portal and the host..
  4086. crbug.com/1220891 virtual/portals/external/wpt/portals/csp/frame-src.sub.html [ Timeout ]
  4087. # Sheriff 2019-04-17
  4088. crbug.com/953591 [ Win ] fast/forms/datalist/input-appearance-range-with-transform.html [ Failure Pass ]
  4089. crbug.com/953591 [ Win ] transforms/matrix-02.html [ Failure Pass ]
  4090. crbug.com/938884 http/tests/devtools/elements/styles-3/styles-add-blank-property.js [ Pass Timeout ]
  4091. # Sheriff 2019-04-30
  4092. crbug.com/948785 fast/events/pointerevents/pointer-event-consumed-touchstart-in-slop-region.html [ Skip ]
  4093. # This test might need to be removed.
  4094. crbug.com/954349 fast/forms/autofocus-in-sandbox-with-allow-scripts.html [ Timeout ]
  4095. # Sheriff 2019-05-13
  4096. crbug.com/865432 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-blob-url.any.worker.html [ Pass Timeout ]
  4097. crbug.com/867532 [ Linux ] external/wpt/workers/modules/dedicated-worker-import-data-url.any.worker.html [ Pass Timeout ]
  4098. # Sheriff 2020-05-18
  4099. crbug.com/988248 media/track/track-cue-rendering-position-auto.html [ Failure Pass ]
  4100. # Flaky test on all platforms.
  4101. crbug.com/988248 media/track/track-cue-rendering-position-auto-rtl.html [ Failure Pass ]
  4102. # Failing because of revert of If931c1faff528a87d8a78808f30225ebe2377072.
  4103. crbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/2_tracks.html [ Failure ]
  4104. crbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/3_tracks.html [ Failure ]
  4105. crbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_normal_wrapped.html [ Failure ]
  4106. crbug.com/966345 external/wpt/webvtt/rendering/cues-with-video/processing-model/selectors/cue_function/class_object/class_white-space_pre-line_wrapped.html [ Failure ]
  4107. # Sheriff 2019-06-04
  4108. crbug.com/970135 [ Mac ] virtual/focusless-spat-nav/fast/spatial-navigation/focusless/snav-focusless-interested-element-indicated.html [ Failure ]
  4109. crbug.com/970334 [ Mac ] fast/spatial-navigation/snav-tiny-table-traversal.html [ Failure ]
  4110. crbug.com/970142 http/tests/security/mixedContent/insecure-css-resources.html [ Failure ]
  4111. # Sheriff 2019-06-05
  4112. crbug.com/971259 media/controls/volumechange-stopimmediatepropagation.html [ Failure Pass ]
  4113. # Expected new failures until crbug.com/535738 is fixed. The failures also vary
  4114. # based on codecs in build config, so just marking failure here instead of
  4115. # specific expected text results.
  4116. crbug.com/535738 external/wpt/media-source/mediasource-changetype-play-implicit.html [ Failure ]
  4117. crbug.com/535738 external/wpt/media-source/mediasource-changetype-play-negative.html [ Failure ]
  4118. crbug.com/535738 external/wpt/media-source/mediasource-changetype-play-without-codecs-parameter.html [ Failure ]
  4119. # Sheriff 2019-06-26
  4120. crbug.com/978966 [ Mac ] paint/markers/ellipsis-mixed-text-in-ltr-flow-with-markers.html [ Failure Pass ]
  4121. # Sheriff 2019-06-27
  4122. crbug.com/979243 [ Mac ] editing/selection/inline-closest-leaf-child.html [ Failure Pass ]
  4123. crbug.com/979336 [ Mac ] fast/dynamic/anonymous-block-orphaned-lines.html [ Failure Pass ]
  4124. # Sheriff 2019-07-04
  4125. crbug.com/981267 http/tests/devtools/persistence/persistence-move-breakpoints-on-reload.js [ Failure Pass Timeout ]
  4126. # TODO(crbug.com/980588): reenable once WPT is fixed
  4127. crbug.com/980588 external/wpt/screen-orientation/lock-unlock-check.html [ Failure Pass ]
  4128. # Sheriff 2019-07-26
  4129. crbug.com/988246 external/wpt/cookie-store/serviceworker_cookiechange_eventhandler_mismatched_subscription.tentative.https.any.serviceworker.html [ Skip ]
  4130. crbug.com/959129 http/tests/devtools/tracing/timeline-script-parse.js [ Failure Pass ]
  4131. # WebRTC tests that fails (by timing out) because `getSynchronizationSources()`
  4132. # on the audio side needs a hardware sink for the returned dictionary entries to
  4133. # get updated.
  4134. #
  4135. # Temporarily replaced by:
  4136. # - WebRtcAudioBrowserTest.EstablishAudioOnlyCallAndVerifyGetSynchronizationSourcesWorks
  4137. # - WebRtcBrowserTest.EstablishVideoOnlyCallAndVerifyGetSynchronizationSourcesWorks
  4138. crbug.com/988432 external/wpt/webrtc/RTCRtpReceiver-getSynchronizationSources.https.html [ Pass Timeout ]
  4139. # Sheriff 2019-07-29
  4140. crbug.com/937811 [ Release Win ] http/tests/devtools/elements/shadow/elements-panel-shadow-selection-on-refresh-3.js [ Failure Pass Timeout ]
  4141. # Sheriff 2019-07-31
  4142. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-shadow.html [ Failure ]
  4143. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-all.html [ Failure ]
  4144. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-padding.html [ Failure ]
  4145. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas.html [ Failure ]
  4146. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-with-mask.html [ Failure ]
  4147. crbug.com/979422 [ Mac ] fast/borders/border-radius-mask-canvas-border.html [ Failure ]
  4148. # Expected failures for forced colors mode tests when the corresponding flags
  4149. # are not enabled.
  4150. crbug.com/970285 external/wpt/forced-colors-mode/* [ Failure ]
  4151. crbug.com/970285 virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/* [ Pass ]
  4152. # Sheriff 2019-08-14
  4153. crbug.com/993671 [ Win ] http/tests/media/video-frame-size-change.html [ Failure Pass ]
  4154. #Sherrif 2019-08-16
  4155. crbug.com/994692 [ Linux ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]
  4156. crbug.com/994692 [ Win ] compositing/reflections/nested-reflection-anchor-point.html [ Failure Pass ]
  4157. crbug.com/996219 [ Win ] virtual/text-antialias/emoji-vertical-origin-visual.html [ Failure ]
  4158. # Sheriff 2019-08-22
  4159. crbug.com/994008 [ Linux ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]
  4160. crbug.com/994008 [ Win ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]
  4161. crbug.com/994034 [ Linux ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]
  4162. crbug.com/994034 [ Win ] http/tests/devtools/elements/styles-3/styles-add-new-rule-colon.js [ Failure Pass Timeout ]
  4163. crbug.com/995669 [ Win ] http/tests/media/video-throttled-load-metadata.html [ Crash Failure Pass ]
  4164. crbug.com/1015130 external/wpt/largest-contentful-paint/first-paint-equals-lcp-text.html [ Failure Pass ]
  4165. crbug.com/1000051 media/controls/volume-slider.html [ Failure Pass Timeout ]
  4166. # Sheriff 2019-09-04
  4167. crbug.com/1000396 [ Win ] media/video-remove-insert-repaints.html [ Failure Pass ]
  4168. # Sheriff 2019-09-09
  4169. crbug.com/1001817 external/wpt/css/css-ui/text-overflow-016.html [ Failure Pass ]
  4170. # Tests fail because of missing scroll snap for #target and bugs in scrollIntoView
  4171. crbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-001.html [ Failure ]
  4172. crbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-align-002.html [ Failure ]
  4173. crbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-001.html [ Failure ]
  4174. crbug.com/1003055 external/wpt/css/css-scroll-snap/scroll-target-snap-002.html [ Failure ]
  4175. # Sheriff 2019-09-30
  4176. crbug.com/1003715 [ Win ] http/tests/notifications/serviceworker-notification-properties.html [ Failure Pass Timeout ]
  4177. # Sheriff 2019-10-02
  4178. crbug.com/1010483 [ Win ] fast/parser/residual-style-dom.html [ Crash Pass ]
  4179. crbug.com/1010483 [ Win ] fast/parser/residual-style-hang.html [ Crash Pass ]
  4180. crbug.com/1010483 [ Win ] fast/selectors/specificity-overflow.html [ Crash Pass ]
  4181. # Sheriff 2019-10-16
  4182. crbug.com/1014812 external/wpt/animation-worklet/playback-rate.https.html [ Failure Pass Timeout ]
  4183. # Sheriff 2019-10-18
  4184. crbug.com/1015975 media/video-currentTime.html [ Failure Pass ]
  4185. # Sheriff 2019-10-21
  4186. crbug.com/1016456 external/wpt/dom/ranges/Range-mutations-dataChange.html [ Crash Pass Timeout ]
  4187. # Sheriff 2019-10-30
  4188. crbug.com/1014810 [ Mac ] virtual/threaded/external/wpt/animation-worklet/stateful-animator.https.html [ Crash Pass Timeout ]
  4189. # Temporarily disabled to a breakpoint non-determinism issue.
  4190. crbug.com/1019613 http/tests/devtools/sources/debugger/debug-inlined-scripts.js [ Failure Pass ]
  4191. # First frame not always painted in time
  4192. crbug.com/1024976 media/controls/paint-controls-webkit-appearance-none-custom-bg.html [ Failure Pass ]
  4193. # iframe.freeze plumbing is not hooked up at the moment.
  4194. crbug.com/907125 external/wpt/lifecycle/freeze.html [ Failure ] # wpt_subtest_failure
  4195. crbug.com/907125 external/wpt/lifecycle/child-out-of-viewport.tentative.html [ Failure Timeout ]
  4196. crbug.com/907125 external/wpt/lifecycle/child-display-none.tentative.html [ Failure Timeout ]
  4197. crbug.com/907125 external/wpt/lifecycle/worker-dispay-none.tentative.html [ Failure Timeout ]
  4198. # Sheriff 2019-11-15
  4199. crbug.com/1025123 external/wpt/longtask-timing/longtask-in-sibling-iframe-crossorigin.html [ Failure Pass ]
  4200. # Timeout media preload test until preloading media destinations gets enabled.
  4201. crbug.com/977033 http/tests/priorities/resource-load-priorities-media-preload.html [ Timeout ]
  4202. # Sheriff 2019-11-26
  4203. crbug.com/1028684 http/tests/inspector-protocol/animation/animation-release.js [ Failure Pass ]
  4204. # Sheriff 2019-11-29
  4205. crbug.com/1019079 fast/canvas/OffscreenCanvas-placeholder-createImageBitmap.html [ Failure Pass ]
  4206. crbug.com/1027434 external/wpt/html/browsers/origin/cross-origin-objects/cross-origin-objects.html [ Failure Pass Timeout ]
  4207. crbug.com/1027434 [ Mac11 ] external/wpt/html/browsers/origin/cross-origin-objects/location-properties-smoke-test.html [ Timeout ]
  4208. # Sheriff 2019-12-02
  4209. crbug.com/1029528 [ Linux ] http/tests/devtools/network/oopif-content.js [ Failure Pass ]
  4210. crbug.com/1031345 media/controls/overlay-play-button-tap-to-hide.html [ Pass Timeout ]
  4211. # Temporary SkiaRenderer regressions
  4212. crbug.com/1029941 [ Linux ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]
  4213. crbug.com/1029941 [ Linux ] transforms/3d/point-mapping/3d-point-mapping-deep.html [ Failure ]
  4214. crbug.com/1029941 [ Linux ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]
  4215. crbug.com/1029941 [ Win ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]
  4216. # Failing document policy tests
  4217. crbug.com/993790 external/wpt/document-policy/required-policy/separate-document-policies.html [ Failure ]
  4218. crbug.com/1134464 http/tests/images/document-policy/document-policy-oversized-images-edge-cases.php [ Pass Timeout ]
  4219. # Skipping because of unimplemented behaviour
  4220. crbug.com/965495 external/wpt/feature-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]
  4221. crbug.com/965495 external/wpt/permissions-policy/experimental-features/focus-without-user-activation-enabled-tentative.sub.html [ Skip ]
  4222. crbug.com/834302 external/wpt/permissions-policy/permissions-policy-opaque-origin.https.html [ Failure ]
  4223. # Temporary suppression to allow devtools-frontend changes
  4224. crbug.com/1041830 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile.js [ Failure Pass ]
  4225. # Sheriff 2019-12-16
  4226. crbug.com/1034374 http/tests/devtools/tracing/timeline-worker-events.js [ Failure Pass ]
  4227. # Sheriff 2019-12-23
  4228. crbug.com/1036626 http/tests/devtools/tracing/tracing-record-input-events.js [ Failure Pass ]
  4229. # Sheriff 2019-12-27
  4230. crbug.com/1038091 virtual/gpu-rasterization/images/jpeg-yuv-image-decoding.html [ Failure Pass ]
  4231. crbug.com/1038139 [ Win ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]
  4232. # Broken in https://chromium-review.googlesource.com/c/chromium/src/+/1636716
  4233. crbug.com/963183 http/tests/devtools/sources/debugger-breakpoints/disable-breakpoints.js [ Failure Pass Timeout ]
  4234. crbug.com/836300 fast/css3-text/css3-text-decoration/text-decoration-skip-ink-links.html [ Failure Pass ]
  4235. # Sheriff 2020-01-14
  4236. crbug.com/1041973 external/wpt/html/semantics/forms/constraints/form-validation-reportValidity.html [ Failure Pass ]
  4237. # Failing origin trial for css properties test
  4238. crbug.com/1041993 http/tests/origin_trials/sample-api-script-added-after-css-declaration.html [ Failure ]
  4239. # Sheriff 2020-01-20
  4240. crbug.com/1043357 http/tests/credentialmanagement/credentialscontainer-get-with-virtual-authenticator.html [ Failure Pass Timeout ]
  4241. # Ref_Tests which fail when SkiaRenderer is enable, and which cannot be
  4242. # rebaselined. TODO(jonross): triage these into any existing bugs or file more
  4243. # specific bugs.
  4244. crbug.com/1043675 [ Linux ] animations/animation-paused-hardware.html [ Failure ]
  4245. crbug.com/1043675 [ Linux ] animations/missing-values-first-keyframe.html [ Failure ]
  4246. crbug.com/1043675 [ Linux ] animations/missing-values-last-keyframe.html [ Failure ]
  4247. crbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]
  4248. crbug.com/1043675 [ Linux ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]
  4249. crbug.com/1043675 [ Linux ] http/tests/media/video-frame-size-change.html [ Failure ]
  4250. crbug.com/1043675 [ Linux ] svg/custom/svg-root-with-opacity.html [ Failure ]
  4251. crbug.com/1043675 [ Win ] animations/animation-paused-hardware.html [ Failure ]
  4252. crbug.com/1043675 [ Win ] animations/missing-values-first-keyframe.html [ Failure ]
  4253. crbug.com/1043675 [ Win ] animations/missing-values-last-keyframe.html [ Failure ]
  4254. crbug.com/1043675 [ Win ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]
  4255. crbug.com/1043675 [ Win ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]
  4256. crbug.com/1043675 [ Win ] svg/custom/svg-root-with-opacity.html [ Failure ]
  4257. # Sheriff 2020-01-23
  4258. crbug.com/1046784 http/tests/inspector-protocol/service-worker/target-reloaded-after-crash.js [ Failure Pass Timeout ]
  4259. # Sheriff 2020-01-28
  4260. crbug.com/1046440 fast/loader/submit-form-while-parsing-2.html [ Failure Pass Timeout ]
  4261. # Sheriff 2020-01-29
  4262. crbug.com/995663 [ Linux ] http/tests/media/autoplay/document-user-activation-cross-origin-feature-policy-header.html [ Failure Pass Timeout ]
  4263. # Sheriff 2020-01-30
  4264. crbug.com/1047208 http/tests/serviceworker/update-served-from-cache.html [ Failure Pass ]
  4265. crbug.com/1047293 [ Mac ] editing/pasteboard/pasteboard_with_unfocused_selection.html [ Failure Pass ]
  4266. crbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Failure ]
  4267. crbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Failure ]
  4268. crbug.com/1008483 external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Failure ]
  4269. crbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-004.tentative.html [ Pass ]
  4270. crbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-005.tentative.html [ Pass ]
  4271. crbug.com/1008483 virtual/backface-visibility-interop/external/wpt/css/css-transforms/backface-visibility-hidden-animated-002.html [ Pass ]
  4272. crbug.com/1008483 virtual/backface-visibility-interop/compositing/overflow/scroll-parent-with-non-stacking-context-composited-ancestor.html [ Failure ]
  4273. crbug.com/1008483 virtual/backface-visibility-interop/paint/invalidation/stacking-context-lost.html [ Failure ]
  4274. crbug.com/1008483 virtual/backface-visibility-interop/paint/invalidation/multicol/multicol-as-paint-container.html [ Failure ]
  4275. # Swiftshader issue.
  4276. crbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerwidth.html [ Crash Timeout ]
  4277. crbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screeny.html [ Crash Timeout ]
  4278. crbug.com/1048149 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-width.html [ Crash Timeout ]
  4279. crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/calendar-picker-appearance.html [ Crash Pass ]
  4280. crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance.html [ Crash Pass ]
  4281. crbug.com/1048149 [ Mac ] fast/forms/calendar-picker/month-picker-appearance-step.html [ Crash Pass ]
  4282. crbug.com/1048149 [ Mac ] fast/forms/color/color-picker-appearance-zoom125.html [ Crash Pass ]
  4283. crbug.com/1048149 [ Mac ] fast/forms/color/color-picker-top-left-selection-position-after-reopen.html [ Crash Pass ]
  4284. crbug.com/1048149 crbug.com/1050121 [ Mac ] fast/forms/month/month-picker-appearance-zoom150.html [ Crash Failure Pass ]
  4285. # SwANGLE issues
  4286. crbug.com/1204234 css3/blending/background-blend-mode-single-accelerated-element.html [ Failure ]
  4287. # Upcoming DevTools change
  4288. crbug.com/1006759 http/tests/devtools/profiler/cpu-profiler-save-load.js [ Failure Pass Timeout ]
  4289. crbug.com/1006759 http/tests/devtools/profiler/heap-snapshot-loader.js [ Failure Pass ]
  4290. # Temporarily disabled to land changes in DevTools, multiple dependent CLs
  4291. # [1] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2049183
  4292. # [2] https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2119670
  4293. crbug.com/1049456 fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]
  4294. crbug.com/1081277 fast/scrolling/events/scrollend-event-fired-to-element-with-overscroll-behavior.html [ Failure Pass ]
  4295. crbug.com/1080997 fast/scrolling/events/scrollend-event-fired-to-scrolled-element.html [ Failure Pass ]
  4296. # "in-multicol-child.html" is laid out in legacy layout due by "multicol" but
  4297. # reference is laid out by LayoutNG.
  4298. crbug.com/829028 [ Mac ] editing/caret/in-multicol-child.html [ Failure ]
  4299. # Flaky tests blocking WPT import
  4300. crbug.com/1054577 [ Linux ] virtual/storage-access-api/external/wpt/storage-access-api/requestStorageAccess.sub.window.html [ Failure Pass ]
  4301. crbug.com/1054577 [ Win ] virtual/storage-access-api/external/wpt/storage-access-api/requestStorageAccess.sub.window.html [ Failure Pass ]
  4302. crbug.com/1054577 [ Mac ] external/wpt/storage-access-api/requestStorageAccess.sub.window.html [ Failure Pass ]
  4303. # Failing tests because of enabling scroll unification flag
  4304. crbug.com/476553 virtual/scroll-unification/external/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html [ Crash Failure Pass Timeout ]
  4305. crbug.com/476553 virtual/scroll-unification/external/wpt/dom/events/scrolling/scrollend-event-for-user-scroll.html [ Crash Failure Pass Timeout ]
  4306. crbug.com/476553 virtual/scroll-unification/fast/events/hit-test-cache-iframes.html [ Failure Pass ]
  4307. crbug.com/476553 virtual/scroll-unification/fast/events/hit-test-counts.html [ Crash Failure Pass Timeout ]
  4308. crbug.com/476553 virtual/scroll-unification/fast/events/mouse-cursor-change.html [ Crash Failure Pass Timeout ]
  4309. crbug.com/476553 virtual/scroll-unification/fast/events/platform-wheelevent-paging-xy-in-scrolling-div.html [ Crash Failure Pass Timeout ]
  4310. crbug.com/476553 virtual/scroll-unification/fast/events/remove-child-onscroll.html [ Crash Failure Pass Timeout ]
  4311. crbug.com/476553 virtual/scroll-unification/fast/events/touch/scroll-without-mouse-lacks-mousemove-events.html [ Crash Failure Pass Timeout ]
  4312. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/focus-selectionchange-on-tap.html [ Crash Failure Pass Timeout ]
  4313. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-click-common-ancestor.html [ Crash Failure Pass Timeout ]
  4314. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-frame-removed.html [ Crash Failure Pass Timeout ]
  4315. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Crash Failure Pass Timeout ]
  4316. crbug.com/476553 virtual/scroll-unification/fast/scrolling/resize-corner-tracking-touch.html [ Crash Failure Pass Timeout ]
  4317. crbug.com/476553 virtual/scroll-unification/fast/scrolling/subpixel-overflow-mouse-drag.html [ Crash Failure Pass Timeout ]
  4318. crbug.com/476553 virtual/scroll-unification/http/tests/misc/destroy-middle-click-locked-target-crash.html [ Crash Failure Pass Timeout ]
  4319. crbug.com/476553 virtual/scroll-unification/http/tests/misc/scroll-cross-origin-iframes.html [ Crash Failure Pass Timeout ]
  4320. crbug.com/476553 virtual/scroll-unification/http/tests/misc/scroll-cross-origin-iframes-scrollbar.html [ Crash Failure Pass Timeout ]
  4321. crbug.com/476553 virtual/scroll-unification/plugins/gesture-events-scrolled.html [ Crash Failure Pass Timeout ]
  4322. crbug.com/476553 virtual/scroll-unification/plugins/gesture-events.html [ Crash Failure Pass Timeout ]
  4323. crbug.com/476553 virtual/scroll-unification/plugins/mouse-click-iframe-to-plugin.html [ Crash Failure Pass Timeout ]
  4324. crbug.com/476553 virtual/scroll-unification/plugins/sequential-focus.html [ Crash Failure Pass Timeout ]
  4325. crbug.com/476553 virtual/scroll-unification/plugins/transformed-events.html [ Crash Failure Pass Timeout ]
  4326. crbug.com/476553 virtual/scroll-unification/scrollbars/listbox-scrollbar-combinations.html [ Crash Failure Pass Timeout ]
  4327. crbug.com/476553 virtual/scroll-unification-layout_ng_block_frag/fast/forms/fieldset/fieldset-legend-change.html [ Crash Failure Pass Timeout ]
  4328. crbug.com/476553 virtual/scroll-unification-percent-based-scrolling/fast/scrolling/scrollbars/mouse-autoscrolling-on-deleted-scrollbar.html [ Crash Failure Pass Timeout ]
  4329. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/auto-scrollbar-fades-out.html [ Crash Failure Pass Timeout ]
  4330. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/basic-scrollbar.html [ Crash Failure Pass Timeout ]
  4331. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/disabled-scrollbar.html [ Crash Failure Pass Timeout ]
  4332. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/hidden-scrollbars-invisible.html [ Crash Failure Pass Timeout ]
  4333. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/listbox-scrollbar-combinations.html [ Crash Failure Pass Timeout ]
  4334. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/overlay-scrollbars-within-overflow-scroll.html [ Crash Failure Pass Timeout ]
  4335. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/scrollbar-buttons.html [ Crash Failure Pass Timeout ]
  4336. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/scrollbar-corner-colors.html [ Crash Failure Pass Timeout ]
  4337. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/scrollbar-orientation.html [ Crash Failure Pass Timeout ]
  4338. crbug.com/1253630 [ Win ] virtual/scroll-unification-overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure Pass ]
  4339. crbug.com/1098383 [ Mac ] fast/events/scrollbar-double-click.html [ Failure Pass ]
  4340. # DevTools roll
  4341. crbug.com/1006759 http/tests/devtools/elements/styles-1/edit-value-url-with-color.js [ Skip ]
  4342. #Mixed content autoupgrades make these tests not applicable, since they check for mixed content audio/video
  4343. crbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/audio-tag.https.html [ Failure ]
  4344. crbug.com/1025274 external/wpt/mixed-content/gen/top.meta/unset/video-tag.https.html [ Failure ]
  4345. crbug.com/1025274 http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Failure ]
  4346. # Sheriff 2020-02-19
  4347. crbug.com/1053903 external/wpt/webxr/events_referenceSpace_reset_inline.https.html [ Failure Pass Timeout ]
  4348. ### Subset of scrolling tests that are failing when percent-based scrolling feature is enabled
  4349. # Please look at FlagExpectations/enable-percent-based-scrolling for a full list of known regressions
  4350. # fast/events/wheel
  4351. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]
  4352. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure ]
  4353. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheel-in-scrollbar.html [ Failure ]
  4354. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/events/wheel/wheelevent-ctrl.html [ Failure Timeout ]
  4355. # fast/scrolling
  4356. crbug.com/1330011 virtual/main-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Pass ]
  4357. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure ]
  4358. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]
  4359. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]
  4360. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]
  4361. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/overflow-scrollability.html [ Failure Timeout ]
  4362. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-and-touch-scroll-use-count.html [ Failure Timeout ]
  4363. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/fractional-scroll-offset-document.html [ Failure ]
  4364. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/scroll-animation-on-by-default.html [ Failure ]
  4365. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scroll-latching-on-scrollbar.html [ Failure Pass ]
  4366. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/mouse-scrolling-over-standard-scrollbar.html [ Failure Pass ]
  4367. # fast/scrolling/events
  4368. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]
  4369. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]
  4370. crbug.com/1204176 virtual/main-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]
  4371. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-element-with-overscroll-behavior.html [ Failure Timeout ]
  4372. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Timeout ]
  4373. crbug.com/1204176 virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/events/overscroll-event-fired-to-window.html [ Failure Timeout ]
  4374. #fast/scroll-behavior/
  4375. crbug.com/1345498 [ Mac10.14 ] virtual/scroll-unification-prefer_compositing_to_lcd_text/fast/scroll-behavior/smooth-scroll/mousewheel-scroll.html [ Failure Pass Timeout ]
  4376. ### END PERCENT BASED SCROLLING TEST FAILURES
  4377. # Sheriff 2020-02-28
  4378. crbug.com/1053861 http/tests/devtools/network/network-initiator-chain.js [ Failure Pass ]
  4379. crbug.com/1057822 http/tests/misc/synthetic-gesture-initiated-in-cross-origin-frame.html [ Crash Failure Pass ]
  4380. crbug.com/1131977 [ Mac ] http/tests/misc/hover-state-recomputed-on-main-frame.html [ Timeout ]
  4381. ### sheriff 2020-03-03
  4382. crbug.com/1058073 [ Mac ] http/tests/devtools/service-workers/sw-navigate-useragent.js [ Failure Pass ]
  4383. crbug.com/1058137 virtual/threaded/http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]
  4384. # Ecosystem-Infra Sheriff 2020-03-04
  4385. crbug.com/1058403 external/wpt/webaudio/the-audio-api/the-audioworklet-interface/suspended-context-messageport.https.html [ Crash Failure ]
  4386. # Ecosystem-Infra Sheriff 2020-04-15
  4387. crbug.com/1070995 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/blob-data.https.html [ Failure Pass Timeout ]
  4388. # navigation tests fail or time out when run with run_web_tests.py but passes with run_wpt_tests.py
  4389. crbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/reload.window.html [ Timeout ]
  4390. crbug.com/1317067 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/tasks.window.html [ Timeout ]
  4391. crbug.com/1317067 external/wpt/html/browsers/browsing-the-web/unloading-documents/prompt-and-unload-script-closeable.html [ Failure ]
  4392. crbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=windows-1252 [ Failure Timeout ]
  4393. crbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=x-cp1251 [ Failure Timeout ]
  4394. crbug.com/1317067 external/wpt/html/infrastructure/urls/resolving-urls/query-encoding/navigation.sub.html?encoding=utf8 [ Failure Timeout ]
  4395. crbug.com/1317067 external/wpt/html/browsers/history/joint-session-history/joint-session-history-remove-iframe.html [ Skip Timeout ]
  4396. crbug.com/1317067 external/wpt/html/browsers/sandboxing/window-open-blank-from-different-initiator.html [ Pass Timeout ]
  4397. crbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-click.html [ Failure Timeout ]
  4398. crbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/location-setter-user-mouseup.html [ Failure Timeout ]
  4399. crbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-pageshow.html [ Timeout ]
  4400. crbug.com/1317067 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/replace-before-load/a-user-click-during-load.html [ Timeout ]
  4401. # Flaky on Mac, it seems, both 10.5 and 11 Arm.
  4402. crbug.com/1350611 [ Mac ] external/wpt/html/browsers/browsing-the-web/remote-context-helper-tests/navigation-same-document.window.html [ Failure Pass ]
  4403. # Tests time out, and also give different results.
  4404. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-screenx.html [ Skip Timeout ]
  4405. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-innerheight.html [ Skip Timeout ]
  4406. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-height.html [ Skip Timeout ]
  4407. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-top-left.html [ Skip Timeout ]
  4408. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-top.html [ Skip Timeout ]
  4409. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-screenx-screeny.html [ Skip Timeout ]
  4410. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-width-height.html [ Skip Timeout ]
  4411. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-non-integer-left.html [ Skip Timeout ]
  4412. crbug.com/1299834 external/wpt/html/browsers/the-window-object/open-close/open-features-negative-innerwidth-innerheight.html [ Skip Timeout ]
  4413. crbug.com/1299834 external/wpt/html/browsers/windows/noreferrer-window-name.html [ Skip Timeout ]
  4414. # The wpt/html tests that are failing in some way
  4415. crbug.com/1317074 [ Linux ] external/wpt/html/syntax/charset/without-inheritance.html [ Failure ]
  4416. crbug.com/1317074 external/wpt/html/syntax/charset/after-head-after-1kb-crlf.html [ Failure ]
  4417. crbug.com/1317076 external/wpt/html/syntax/speculative-charset/speculative-script.tentative.html [ Failure ]
  4418. crbug.com/1287036 external/wpt/html/cross-origin-opener-policy/header-parsing.https.html [ Failure Pass Timeout ]
  4419. crbug.com/1287036 external/wpt/html/cross-origin-embedder-policy/credentialless/reporting-subresource-corp.https.window.html [ Pass Timeout ]
  4420. crbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-unsafe-none.https.html [ Skip Timeout ]
  4421. crbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-subresource-corp.https.html [ Pass Timeout ]
  4422. crbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-navigation.https.html [ Failure Pass ]
  4423. crbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure Pass ]
  4424. crbug.com/1249043 external/wpt/html/cross-origin-embedder-policy/report-only-require-corp.https.html [ Failure Pass ]
  4425. crbug.com/1287036 external/wpt/html/cross-origin-opener-policy/iframe-popup-same-origin-to-same-origin.https.html [ Skip Timeout ]
  4426. crbug.com/1287036 [ Win10.20h2 ] external/wpt/html/cross-origin-embedder-policy/cross-origin-isolated-permission.https.html [ Timeout ]
  4427. crbug.com/1287036 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/multi-globals/workers-coep-report.https.html [ Failure Pass ]
  4428. crbug.com/1265587 external/wpt/html/user-activation/activation-trigger-pointerevent.html?pen [ Failure ]
  4429. crbug.com/1270351 external/wpt/html/user-activation/activation-trigger-pointerevent.html?touch [ Failure ]
  4430. crbug.com/1159661 external/wpt/html/interaction/focus/document-level-focus-apis/document-has-system-focus.html [ Timeout ]
  4431. crbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-failure.https.html [ Timeout ]
  4432. crbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-serviceworker-failure.https.html [ Timeout ]
  4433. crbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-sharedworker-failure.https.html [ Timeout ]
  4434. crbug.com/1317079 [ Linux ] external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-iframe-messagechannel.https.html [ Failure ]
  4435. crbug.com/1317079 external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/broadcastchannel-success.https.html [ Timeout ]
  4436. crbug.com/1223883 external/wpt/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/location-set-and-document-open.html [ Timeout ]
  4437. crbug.com/1223883 external/wpt/html/webappapis/animation-frames/cancel-handle-manual.html [ Skip ]
  4438. crbug.com/1223883 external/wpt/html/webappapis/user-prompts/newline-normalization-manual.html [ Skip ]
  4439. crbug.com/1222729 external/wpt/html/dom/elements/global-attributes/dir_auto-N-EN-ref.html [ Failure ]
  4440. crbug.com/678633 external/wpt/html/browsers/history/the-location-interface/location-protocol-setter-non-broken.html [ Failure ]
  4441. crbug.com/1317071 [ Mac ] virtual/no-auto-wpt-origin-isolation/external/wpt/html/browsers/origin/origin-keyed-agent-clusters/1-iframe/parent-yes-child-no-port.sub.https.html [ Failure Timeout ]
  4442. crbug.com/1323989 external/wpt/html/browsers/browsing-the-web/overlapping-navigations-and-traversals/tentative/same-document-traversal-cross-document-traversal.html [ Pass Timeout ]
  4443. crbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_1-2.html [ Failure ]
  4444. crbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_3-4.html [ Failure ]
  4445. crbug.com/1330586 [ Mac11-arm64 ] virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https_7-8.html [ Failure ]
  4446. crbug.com/1350975 external/wpt/html/dom/directionality/bdi-element-invalid-dir.html [ Failure ]
  4447. # Sheriff 2020-03-06
  4448. crbug.com/1059262 virtual/threaded/http/tests/worklet/webexposed/global-interface-listing-paint-worklet.html [ Failure Pass ]
  4449. crbug.com/1059262 [ Mac ] webexposed/global-interface-listing-platform-specific.html [ Failure Pass ]
  4450. # Sheriff 2020-03-08
  4451. crbug.com/1059645 external/wpt/pointerevents/pointerevent_coalesced_events_attributes.html [ Failure Pass ]
  4452. # [virtual/...]external/wpt/web-animation test flakes
  4453. crbug.com/1064065 virtual/threaded/external/wpt/css/css-animations/event-dispatch.tentative.html [ Failure Pass ]
  4454. # Sheriff 2020-04-01
  4455. crbug.com/1066122 virtual/threaded-no-composited-antialiasing/animations/events/animation-iteration-event.html [ Failure Pass ]
  4456. crbug.com/1066732 fast/events/platform-wheelevent-paging-x-in-scrolling-div.html [ Failure Pass ]
  4457. crbug.com/1066732 fast/events/platform-wheelevent-paging-y-in-scrolling-div.html [ Failure Pass ]
  4458. # Temporarily disabled for landing changes to DevTools frontend
  4459. crbug.com/1066579 http/tests/devtools/har-importer.js [ Failure Pass ]
  4460. # COOP top navigation:
  4461. crbug.com/1153648 external/wpt/html/cross-origin-opener-policy/navigate-top-to-aboutblank.https.html [ Failure ]
  4462. # Stale revalidation shouldn't be blocked:
  4463. crbug.com/1079188 external/wpt/fetch/stale-while-revalidate/revalidate-not-blocked-by-csp.html [ Timeout ]
  4464. # the inspector-protocol/media tests only work in the virtual test environment.
  4465. crbug.com/1074129 inspector-protocol/media/media-player.js [ Timeout ]
  4466. # Sheriff 2020-05-04
  4467. crbug.com/952717 [ Debug ] http/tests/xmlhttprequest/redirect-cross-origin-post.html [ Failure Pass ]
  4468. # Sheriff 2020-05-18
  4469. crbug.com/1084256 [ Linux ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]
  4470. crbug.com/1084256 [ Mac ] http/tests/misc/insert-iframe-into-xml-document-before-xsl-transform.html [ Failure Pass ]
  4471. crbug.com/1084276 [ Mac ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Crash Failure Pass ]
  4472. # Temporarily disabled to land the new wasm exception handling JS API
  4473. crbug.com/v8/11992 external/wpt/wasm/jsapi/exception/* [ Skip ]
  4474. crbug.com/v8/11992 external/wpt/wasm/jsapi/tag/* [ Skip ]
  4475. # Assorted virtual/threaded/.../wpt/scroll-animations tests
  4476. crbug.com/1279648 [ Mac ] virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-default-descriptors-iframe.html [ Failure ]
  4477. crbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-default-descriptors-quirks-mode.html [ Failure ]
  4478. crbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-default-descriptors-writing-mode-rl.html [ Failure ]
  4479. crbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-default-descriptors.html [ Failure ]
  4480. crbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-frame-size-changed.html [ Failure ]
  4481. crbug.com/1279648 virtual/threaded/external/wpt/scroll-animations/css/at-scroll-timeline-inline-orientation.html [ Failure ]
  4482. crbug.com/971031 [ Mac ] fast/dom/timer-throttling-hidden-page.html [ Failure Pass ]
  4483. crbug.com/1071189 [ Debug ] editing/selection/programmatic-selection-on-mac-is-directionless.html [ Pass Timeout ]
  4484. # Sheriff 2020-05-27
  4485. crbug.com/1046784 http/tests/devtools/elements/styles/stylesheet-tracking.js [ Failure Pass Timeout ]
  4486. # Sheriff 2020-05-29
  4487. crbug.com/1084637 compositing/video/video-reflection.html [ Failure Pass ]
  4488. crbug.com/1083362 compositing/reflections/load-video-in-reflection.html [ Failure Pass ]
  4489. crbug.com/1087471 [ Linux ] virtual/threaded/synthetic_gestures/synthetic-pinch-zoom-gesture-touchscreen-zoom-in-slow.html [ Failure Pass ]
  4490. # Sheriff 2020-06-01
  4491. # Also see crbug.com/626703, these timed-out before but now fail as well.
  4492. crbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries.html [ Failure Pass ]
  4493. crbug.com/1088475 [ Linux ] external/wpt/webvtt/rendering/cues-with-video/processing-model/embedded_style_media_queries_resized.html [ Failure Pass ]
  4494. crbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRect.html [ Failure Pass ]
  4495. crbug.com/1088007 virtual/gpu/fast/canvas/OffscreenCanvasClearRectPartial.html [ Failure Pass ]
  4496. # Sheriff 2020-06-03
  4497. crbug.com/1007228 [ Mac ] external/wpt/fullscreen/api/element-request-fullscreen-and-move-to-iframe-manual.html [ Failure Pass ]
  4498. # Sheriff 2020-06-06
  4499. crbug.com/1091843 fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]
  4500. # Sheriff 2020-06-09
  4501. crbug.com/1093003 [ Mac ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe.sub.html [ Failure Pass ]
  4502. # Sheriff 2020-06-11
  4503. crbug.com/1093026 [ Linux ] http/tests/security/offscreencanvas-placeholder-read-blocked-no-crossorigin.html [ Failure Pass ]
  4504. # Ecosystem-Infra Rotation 2020-06-15
  4505. crbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-content-box.html [ Failure ]
  4506. crbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-border-box.html [ Failure ]
  4507. crbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-stroke-box.html [ Failure ]
  4508. crbug.com/924472 external/wpt/css/css-transforms/transform-box/cssbox-fill-box.html [ Failure ]
  4509. crbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-border-box.html [ Failure ]
  4510. crbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-content-box.html [ Failure ]
  4511. crbug.com/924472 external/wpt/css/css-transforms/transform-box/svgbox-stroke-box.html [ Failure ]
  4512. # Sheriff 2020-06-17
  4513. crbug.com/1092975 http/tests/inspector-protocol/target/target-expose-devtools-protocol.js [ Failure Pass ]
  4514. crbug.com/1096493 external/wpt/webaudio/the-audio-api/the-audiocontext-interface/processing-after-resume.https.html [ Failure ]
  4515. crbug.com/1097005 http/tests/devtools/console/console-object-preview.js [ Crash Failure Pass Timeout ]
  4516. crbug.com/1097005 http/tests/devtools/console/console-preserve-scroll.js [ Crash Failure Pass Timeout ]
  4517. crbug.com/1097005 http/tests/devtools/console/console-search.js [ Crash Failure Pass Timeout ]
  4518. crbug.com/1093445 http/tests/loading/pdf-commit-load-callbacks.html [ Failure Pass ]
  4519. crbug.com/1093497 http/tests/history/client-redirect-after-push-state.html [ Failure Pass ]
  4520. #Sheriff 2020-06-25
  4521. crbug.com/1010170 media/video-played-reset.html [ Failure Pass ]
  4522. # Sheriff 2020-07-07
  4523. # Additionally disabled on mac due to crbug.com/988248
  4524. crbug.com/1083302 media/controls/volumechange-muted-attribute.html [ Failure Pass ]
  4525. # Sheriff 2020-07-10
  4526. crbug.com/1102167 external/wpt/fetch/redirect-navigate/preserve-fragment.html [ Pass Timeout ]
  4527. # Sheriff 2020-07-13
  4528. crbug.com/1104910 fast/peerconnection/RTCPeerConnection-reload-interesting-usage.html [ Failure Pass ]
  4529. crbug.com/1104910 [ Mac ] editing/selection/selection-background.html [ Failure Pass ]
  4530. # Sheriff 2020-07-14
  4531. crbug.com/1105271 [ Mac ] scrollbars/custom-scrollbar-adjust-on-inactive-pseudo.html [ Failure Pass ]
  4532. crbug.com/1105274 http/tests/devtools/tracing/timeline-js/timeline-js-line-level-profile-no-url-end-to-end.js [ Failure Pass Timeout ]
  4533. # This test fails due to the linked bug since input is now routed through the compositor.
  4534. crbug.com/1112508 fast/forms/number/number-wheel-event.html [ Failure ]
  4535. # Sheriff 2020-07-20
  4536. crbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-time/timeline-time.js [ Failure Pass ]
  4537. crbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-layout/timeline-layout-with-invalidations.js [ Failure Pass ]
  4538. crbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidations.js [ Failure Pass ]
  4539. crbug.com/1107572 [ Mac ] http/tests/devtools/tracing/timeline-style/timeline-style-recalc-with-invalidator-invalidations.js [ Failure Pass ]
  4540. # Sheriff 2020-07-22
  4541. crbug.com/1107722 [ Mac ] virtual/threaded/http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]
  4542. crbug.com/1107722 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-script-id.js [ Failure Pass ]
  4543. # Failing on Webkit Linux Leak
  4544. crbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]
  4545. crbug.com/1046784 [ Linux ] http/tests/devtools/tracing/timeline-misc/timeline-event-causes.js [ Failure Pass ]
  4546. # Sheriff 2020-07-23
  4547. crbug.com/1108786 [ Mac ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]
  4548. crbug.com/1108786 [ Linux ] http/tests/devtools/tracing/timeline-js/timeline-gc-event.js [ Failure Pass ]
  4549. # Sheriff 2020-07-27
  4550. crbug.com/1107944 [ Mac ] http/tests/devtools/tracing/timeline-paint/timeline-paint.js [ Failure Pass ]
  4551. crbug.com/1092794 fast/canvas/OffscreenCanvas-2d-placeholder-willReadFrequently.html [ Failure Pass ]
  4552. # Sheriff 2020-08-03
  4553. crbug.com/1106429 virtual/percent-based-scrolling/max-percent-delta-page-zoom.html [ Failure Pass ]
  4554. # Sheriff 2020-08-05
  4555. crbug.com/1113050 fast/borders/border-radius-mask-video-ratio.html [ Failure Pass ]
  4556. crbug.com/1113127 fast/canvas/downsample-quality.html [ Crash Failure Pass ]
  4557. # Sheriff 2020-08-06
  4558. crbug.com/1113791 [ Win ] media/video-zoom.html [ Failure Pass ]
  4559. # Sheriff 2020-08-17
  4560. crbug.com/1069546 [ Mac ] compositing/layer-creation/overflow-scroll-overlap.html [ Failure Pass ]
  4561. # Unexpected demuxer success after M86 FFmpeg roll.
  4562. crbug.com/1117613 media/video-error-networkState.html [ Failure Timeout ]
  4563. # Sheriff 2020-0-21
  4564. crbug.com/1120330 virtual/threaded/external/wpt/feature-policy/experimental-features/vertical-scroll-disabled-scrollbar-tentative.html [ Failure Pass ]
  4565. crbug.com/1122582 external/wpt/html/cross-origin-opener-policy/coop-csp-sandbox-navigate.https.html [ Failure Pass ]
  4566. # Sheriff 2020-09-09
  4567. crbug.com/1126709 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure Pass ]
  4568. # Sheriff 2020-09-22
  4569. crbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.html [ Failure Pass ]
  4570. # Sheriff 2020-09-22
  4571. crbug.com/1130533 [ Mac ] external/wpt/xhr/xhr-timeout-longtask.any.worker.html [ Failure Pass ]
  4572. crbug.com/1136163 [ Linux ] external/wpt/pointerevents/pointerlock/pointerevent_movementxy_with_pointerlock.html [ Failure ]
  4573. # Mixed content autoupgrades make these tests not applicable, since they check for mixed content images, the tests can be removed when cleaning up pre autoupgrades mixed content code.
  4574. crbug.com/1042877 external/wpt/fetch/cross-origin-resource-policy/scheme-restriction.https.window.html [ Failure ]
  4575. crbug.com/1042877 external/wpt/mixed-content/gen/top.meta/unset/img-tag.https.html [ Failure ]
  4576. crbug.com/1042877 external/wpt/mixed-content/imageset.https.sub.html [ Failure ]
  4577. crbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/iframe-blank-inherit.meta/unset/img-tag.https.html [ Failure ]
  4578. crbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/srcdoc-inherit.meta/unset/img-tag.https.html [ Failure ]
  4579. crbug.com/1042877 external/wpt/upgrade-insecure-requests/gen/top.meta/unset/img-tag.https.html [ Failure ]
  4580. crbug.com/1042877 http/tests/security/mixedContent/insecure-css-image-with-reload.html [ Failure ]
  4581. crbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-iframe.html [ Failure ]
  4582. crbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html [ Failure ]
  4583. crbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame-blocked.html [ Failure ]
  4584. crbug.com/1042877 http/tests/security/mixedContent/insecure-image-in-main-frame.html [ Failure ]
  4585. crbug.com/1042877 http/tests/security/mixedContent/preload-insecure-image-in-main-frame-blocked.html [ Failure ]
  4586. crbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-blocked.https.html [ Timeout ]
  4587. crbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-in-frame-blocked.https.html [ Failure ]
  4588. crbug.com/1042877 http/tests/security/mixedContent/strict-mode-image-reportonly.https.php [ Failure ]
  4589. crbug.com/1042877 http/tests/security/mixedContent/strict-mode-via-pref-image-blocked.https.html [ Failure ]
  4590. crbug.com/1046784 http/tests/devtools/sources/debugger/anonymous-script-with-source-map-breakpoint.js [ Failure Pass ]
  4591. # Mixed content autoupgrades cause test to fail because test relied on http subresources to test a different origin, needs to be changed to not rely on HTTP URLs.
  4592. crbug.com/1042877 http/tests/security/img-crossorigin-redirect-credentials.https.html [ Failure ]
  4593. # Sheriff 2020-10-09
  4594. crbug.com/1136687 external/wpt/pointerevents/pointerlock/pointerevent_pointerlock_supercedes_capture.html [ Failure Pass ]
  4595. # WebRTC: Payload demuxing times out in Plan B. This is expected.
  4596. crbug.com/1139052 virtual/webrtc-wpt-plan-b/external/wpt/webrtc/protocol/rtp-demuxing.html [ Skip Timeout ]
  4597. crbug.com/1137228 [ Mac ] external/wpt/infrastructure/testdriver/click_iframe_crossorigin.sub.html [ Failure Pass ]
  4598. # Rename document.featurePolicy to document.permissionsPolicy
  4599. crbug.com/1123116 external/wpt/permissions-policy/payment-supported-by-permissions-policy.tentative.html [ Failure ]
  4600. crbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-all.https.sub.html [ Failure ]
  4601. crbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-self.https.sub.html [ Failure Timeout ]
  4602. crbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some-override.https.sub.html [ Failure ]
  4603. crbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-allowed-for-some.https.sub.html [ Failure Timeout ]
  4604. crbug.com/1123116 external/wpt/permissions-policy/permissions-policy-frame-policy-disallowed-for-all.https.sub.html [ Failure Timeout ]
  4605. crbug.com/1159445 [ Mac ] paint/invalidation/repaint-overlay/layers-overlay.html [ Failure ]
  4606. #Sheriff 2020-10-21
  4607. crbug.com/1141206 scrollbars/overflow-scrollbar-combinations.html [ Failure Pass ]
  4608. #Sheriff 2020-10-26
  4609. crbug.com/1142877 [ Mac ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]
  4610. crbug.com/1142877 [ Debug Linux ] external/wpt/mediacapture-fromelement/capture.html [ Crash Failure Pass ]
  4611. # Sheriff 2020-11-04
  4612. crbug.com/1144273 http/tests/devtools/sources/debugger-ui/continue-to-location-markers-in-top-level-function.js [ Failure Pass Timeout ]
  4613. # Sheriff 2020-11-06
  4614. crbug.com/1146560 [ Mac ] fast/canvas/color-space/canvas-createImageBitmap-e_srgb.html [ Failure Pass ]
  4615. # Sheriff 2020-11-16
  4616. crbug.com/1149734 http/tests/devtools/sources/debugger-ui/debugger-inline-values-frames.js [ Failure Pass Timeout ]
  4617. crbug.com/1149734 http/tests/devtools/sources/debugger-ui/reveal-execution-line.js [ Failure Pass Timeout ]
  4618. crbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.html [ Pass Timeout ]
  4619. crbug.com/1149987 external/wpt/websockets/Create-blocked-port.any.worker.html [ Pass Timeout ]
  4620. crbug.com/1150475 fast/dom/open-and-close-by-DOM.html [ Failure Pass ]
  4621. #Sheriff 2020-11-23
  4622. # Sheriff 2021-01-22 added Timeout per crbug.com/1046784:
  4623. crbug.com/1149734 http/tests/devtools/sources/source-frame-toolbar-items.js [ Failure Pass Timeout ]
  4624. crbug.com/1149734 http/tests/devtools/sources/debugger-frameworks/frameworks-sourcemap.js [ Failure Pass ]
  4625. crbug.com/1149734 http/tests/devtools/sources/debugger-ui/continue-to-location-markers.js [ Failure Pass Timeout ]
  4626. crbug.com/1149734 http/tests/devtools/sources/debugger-ui/inline-scope-variables.js [ Failure Pass Timeout ]
  4627. #Sheriff 2020-11-24
  4628. crbug.com/1087242 crbug.com/1271141 http/tests/inspector-protocol/service-worker/network-extrainfo-main-request.js [ Pass Timeout ]
  4629. crbug.com/1149771 [ Linux ] virtual/android/fullscreen/video-scrolled-iframe.html [ Failure Pass Timeout ]
  4630. crbug.com/1152532 http/tests/devtools/service-workers/user-agent-override.js [ Pass Timeout ]
  4631. #Sheriff 2020-11-26
  4632. crbug.com/1032451 virtual/threaded-no-composited-antialiasing/animations/stability/animation-iteration-event-destroy-renderer.html [ Pass Timeout ]
  4633. crbug.com/931646 [ Mac ] http/tests/preload/meta-viewport-link-headers-imagesrcset.html [ Failure Pass ]
  4634. # These tests will only run in the virtual test suite where the frequency
  4635. # capping for overlay popup detection is disabled. This eliminates the need
  4636. # for waitings in web tests to trigger a detection event.
  4637. crbug.com/1032681 http/tests/subresource_filter/overlay_popup_ad/* [ Skip ]
  4638. crbug.com/1032681 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/* [ Pass ]
  4639. # DevTools roll
  4640. crbug.com/1144171 http/tests/devtools/report-API-errors.js [ Skip ]
  4641. # Sheriff 2020-12-11
  4642. # Flaking on Linux Trusty
  4643. crbug.com/1157861 http/tests/devtools/extensions/extensions-resources.js [ Failure Pass ]
  4644. crbug.com/1157861 http/tests/devtools/console/paintworklet-console-selector.js [ Failure Pass ]
  4645. # Wpt importer Sheriff 2020-12-11
  4646. crbug.com/626703 [ Linux ] wpt_internal/storage/estimate-usage-details-filesystem.https.tentative.any.html [ Failure Pass ]
  4647. # Wpt importer sheriff 2021-01-05
  4648. crbug.com/1163175 external/wpt/css/css-pseudo/first-letter-punctuation-and-space.html [ Failure ]
  4649. # Sheriff 2021-01-12
  4650. crbug.com/1163793 http/tests/inspector-protocol/page/page-events-associated.js [ Failure Pass ]
  4651. # Sheriff 2021-01-15
  4652. crbug.com/1167222 http/tests/websocket/multiple-connections-throttled.html [ Failure Pass ]
  4653. crbug.com/1167309 fast/canvas/canvas-createImageBitmap-drawImage.html [ Failure Pass ]
  4654. # Sheriff 2021-01-20
  4655. crbug.com/1168522 external/wpt/focus/iframe-activeelement-after-focusing-out-iframes.html [ Failure Pass ]
  4656. # DevTools roll
  4657. crbug.com/1050549 http/tests/devtools/console/console-correct-suggestions.js [ Failure Pass ]
  4658. # Flaky test
  4659. crbug.com/1173439 http/tests/devtools/service-workers/service-worker-manager.js [ Pass Timeout ]
  4660. # V8 roll
  4661. crbug.com/961059 fast/workers/worker-shared-asm-buffer.html [ Skip ]
  4662. crbug.com/1342628 http/tests/workers/worker-invalid-context.html [ Failure Pass ]
  4663. # Temporarily disabled to unblock https://crrev.com/c/2979697
  4664. crbug.com/1222114 http/tests/devtools/console/console-dir.js [ Failure Pass ]
  4665. crbug.com/1222114 http/tests/devtools/console/console-format.js [ Failure Pass ]
  4666. crbug.com/1247844 external/wpt/css/css-contain/content-visibility/content-visibility-input-image.html [ Skip ]
  4667. # Expected to fail with SuppressDifferentOriginSubframeJSDialogs feature disabled, tested in VirtualTestSuite
  4668. crbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/confirm-different-origin-frame.sub.html [ Failure ]
  4669. crbug.com/1065085 external/wpt/html/webappapis/user-prompts/cannot-show-simple-dialogs/prompt-different-origin-frame.sub.html [ Failure ]
  4670. # Sheriff 2021-01-27
  4671. crbug.com/1171331 [ Mac ] tables/mozilla_expected_failures/bugs/bug89315.html [ Failure Pass ]
  4672. # flaky test
  4673. crbug.com/1173956 http/tests/xsl/xslt-transform-with-javascript-disabled.html [ Failure Pass ]
  4674. # No support for key combinations like Alt + c in testdriver.Actions for content_shell
  4675. crbug.com/893480 external/wpt/uievents/interface/keyboard-accesskey-click-event.html [ Timeout ]
  4676. # Sheriff 2021-02-11
  4677. crbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause.js [ Failure Pass ]
  4678. crbug.com/1177573 http/tests/inspector-protocol/animation/animation-pause-infinite.js [ Failure Pass ]
  4679. # Sheriff 2021-02-15
  4680. crbug.com/1177996 [ Linux ] storage/websql/database-lock-after-reload.html [ Failure Pass ]
  4681. crbug.com/1178018 external/wpt/webaudio/the-audio-api/the-mediaelementaudiosourcenode-interface/mediaElementAudioSourceToScriptProcessorTest.html [ Failure Pass ]
  4682. # Expected to fail - Chrome's WebXR Depth Sensing API implementation does not currently support `gpu-optimized` usage mode.
  4683. crbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_dataUnavailable.https.html [ Failure ]
  4684. crbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_inactiveFrame.https.html [ Failure ]
  4685. crbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_incorrectUsage.https.html [ Failure ]
  4686. crbug.com/1179461 external/wpt/webxr/depth-sensing/gpu/depth_sensing_gpu_staleView.https.html [ Failure ]
  4687. # Sheriff 2021-02-17
  4688. crbug.com/1179117 [ Linux ] http/tests/devtools/a11y-axe-core/sources/scope-pane-a11y-test.js [ Pass Timeout ]
  4689. # Sheriff 2021-02-19
  4690. crbug.com/1180227 [ Mac ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Crash Failure Pass ]
  4691. crbug.com/1180227 [ Linux ] virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStream-default-feature-policy.https.html [ Failure Pass ]
  4692. crbug.com/1180274 crbug.com/1046784 [ Win ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]
  4693. crbug.com/1180274 crbug.com/1046784 [ Linux ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Failure Pass Timeout ]
  4694. crbug.com/1341227 [ Mac ] http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]
  4695. # Sheriff 2021-02-21
  4696. crbug.com/1180491 [ Linux ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]
  4697. crbug.com/1180491 [ Linux ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]
  4698. # Sheriff 2021-02-24
  4699. crbug.com/1181857 external/wpt/webaudio/the-audio-api/the-analysernode-interface/test-analyser-output.html [ Failure Pass ]
  4700. # Sheriff 2021-02-25
  4701. crbug.com/1182682 [ Linux ] http/tests/devtools/service-workers/service-workers-view.js [ Failure Pass ]
  4702. # Sheriff 2021-03-08
  4703. crbug.com/1092462 [ Linux ] http/tests/media/media-source/mediasource-duration.html [ Failure Pass ]
  4704. crbug.com/1092462 [ Linux ] media/video-seek-past-end-paused.html [ Failure Pass ]
  4705. crbug.com/1185051 fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob-worker.html [ Failure Pass ]
  4706. # Expect failure for unimplemented canvas color object input
  4707. crbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.html [ Failure ]
  4708. crbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.colorObject.transparency.html [ Failure ]
  4709. crbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.html [ Failure ]
  4710. crbug.com/1187575 external/wpt/html/canvas/element/fill-and-stroke-styles/2d.strokeStyle.colorObject.transparency.html [ Failure ]
  4711. # Sheriff 2021-03-17
  4712. crbug.com/1072022 http/tests/security/frameNavigation/xss-ALLOWED-parent-navigation-change.html [ Pass Timeout ]
  4713. # Sheriff 2021-03-19
  4714. crbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints.js [ Failure Pass Timeout ]
  4715. crbug.com/1189976 http/tests/devtools/sources/debugger-breakpoints/dom-breakpoints-editing-dom-from-inspector.js [ Failure Pass Timeout ]
  4716. crbug.com/1190176 [ Linux ] fast/peerconnection/RTCPeerConnection-addMultipleTransceivers.html [ Crash Failure Pass ]
  4717. crbug.com/1176039 [ Mac ] virtual/stable/media/stable/video-object-fit-stable.html [ Failure Pass ]
  4718. crbug.com/1190905 [ Mac ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]
  4719. crbug.com/1190905 [ Linux ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]
  4720. crbug.com/1190905 [ Win ] http/tests/devtools/indexeddb/live-update-indexeddb-list.js [ Failure Pass ]
  4721. # Sheriff 2021-03-31
  4722. # Failing tests because of enabling scroll unification flag
  4723. crbug.com/1194446 virtual/scroll-unification/fast/events/platform-wheelevent-paging-x-in-scrolling-div.html [ Crash Failure Pass Timeout ]
  4724. crbug.com/1194446 virtual/scroll-unification/fast/events/scale-and-scroll-div.html [ Crash Failure Pass Timeout ]
  4725. crbug.com/1194446 virtual/scroll-unification/fast/events/platform-wheelevent-paging-y-in-scrolling-div.html [ Crash Failure Pass Timeout ]
  4726. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-active-state.html [ Crash Failure Pass Timeout ]
  4727. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-mouse-events.html [ Crash Failure Pass Timeout ]
  4728. crbug.com/476553 virtual/scroll-unification-prefer_compositing_to_lcd_text/fast/scroll-behavior/overflow-scroll-animates.html [ Crash Failure Pass Timeout ]
  4729. crbug.com/476553 virtual/scroll-unification/fast/scroll-snap/snap-to-target-on-layout-change.html [ Crash Failure Pass Timeout ]
  4730. crbug.com/476553 virtual/scroll-unification/scrollbars/auto-scrollbar-fades-out.html [ Crash Failure Pass Timeout ]
  4731. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-frame-scrollbar.html [ Crash Failure Pass Timeout ]
  4732. crbug.com/476553 virtual/scroll-unification/fast/events/pointerevents/multi-pointer-preventdefault.html [ Crash Failure Pass Timeout ]
  4733. crbug.com/476553 virtual/scroll-unification/scrollbars/hidden-scrollbars-invisible.html [ Crash Failure Pass Timeout ]
  4734. crbug.com/476553 virtual/scroll-unification/fast/scrolling/overflow-scrollability.html [ Crash Failure Pass Timeout ]
  4735. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-paragraph-end.html [ Crash Failure Pass Timeout ]
  4736. crbug.com/476553 virtual/scroll-unification/fast/events/drag-and-drop-autoscroll-mainframe.html [ Crash Failure Pass Timeout ]
  4737. crbug.com/476553 virtual/scroll-unification/fast/scroll-snap/animate-fling-to-snap-points-1.html [ Failure Pass ]
  4738. # Sheriff 2021-04-01
  4739. # More failing tests because of enabling scroll unification flag
  4740. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-active-state-hidden-iframe.html [ Crash Failure Pass Timeout ]
  4741. crbug.com/476553 virtual/scroll-unification/fast/events/autoscroll-should-not-stop-on-keypress.html [ Crash Failure Pass Timeout ]
  4742. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-scrolled.html [ Crash Failure Pass Timeout ]
  4743. crbug.com/476553 virtual/scroll-unification/fast/events/autoscroll-upwards-propagation-overflow-hidden-body.html [ Crash Failure Pass Timeout ]
  4744. crbug.com/476553 virtual/scroll-unification/fast/events/frame-scroll-fake-mouse-move.html [ Crash Failure Pass Timeout ]
  4745. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html [ Crash Failure Pass Timeout ]
  4746. crbug.com/476553 virtual/scroll-unification/fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html [ Crash Failure Pass Timeout ]
  4747. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/gesture-tap-hover-clear.html [ Crash Failure Pass Timeout ]
  4748. crbug.com/476553 virtual/scroll-unification/fast/events/mouse-event-from-touch-source-device-event-sender.html [ Crash Failure Pass Timeout ]
  4749. crbug.com/476553 virtual/scroll-unification/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html [ Crash Failure Pass Timeout ]
  4750. crbug.com/476553 virtual/scroll-unification/fast/events/mouse-event-buttons-attribute.html [ Crash Failure Pass Timeout ]
  4751. crbug.com/476553 virtual/scroll-unification-unified-autoplay/external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Crash Failure Pass Timeout ]
  4752. # Sheriff 2021-04-06
  4753. crbug.com/1032451 [ Linux ] virtual/threaded/animations/stability/animation-iteration-event-destroy-renderer.html [ Failure Pass Timeout ]
  4754. # Sheriff 2021-04-07
  4755. crbug.com/1196620 [ Mac ] external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-video-sibling.html [ Failure Pass ]
  4756. # WebTransport tests should eventually run when the WebTransport WPT server is added.
  4757. crbug.com/1201569 external/wpt/webtransport/* [ Skip ]
  4758. crbug.com/1201569 wpt_internal/webtransport/* [ Skip ]
  4759. # WebTransport server infra tests pass on python3 but fail on python2.
  4760. crbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.html [ Failure Pass ]
  4761. crbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.serviceworker.html [ Failure Pass ]
  4762. crbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.sharedworker.html [ Failure Pass ]
  4763. crbug.com/1201569 external/wpt/infrastructure/server/webtransport-h3.https.sub.any.worker.html [ Failure Pass ]
  4764. crbug.com/1194958 fast/events/mouse-event-buttons-attribute.html [ Failure Pass ]
  4765. # Sheriff 2021-04-08
  4766. crbug.com/1197087 external/wpt/web-animations/interfaces/Animation/finished.html [ Failure Pass ]
  4767. crbug.com/1197087 external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]
  4768. crbug.com/1197087 external/wpt/css/css-transitions/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]
  4769. crbug.com/1197087 virtual/threaded/external/wpt/css/css-animations/AnimationEffect-getComputedTiming.tentative.html [ Failure Pass ]
  4770. # Sheriff 2021-04-09
  4771. crbug.com/1197528 pointer-lock/pointerlockchange-pointerlockerror-events.html [ Failure Pass ]
  4772. crbug.com/1195295 fast/events/touch/multi-touch-timestamp.html [ Failure Pass ]
  4773. crbug.com/1196745 [ Mac10.15 ] editing/selection/editable-links.html [ Skip ]
  4774. # Is fixed by PlzDedicatedWorker.
  4775. crbug.com/1060837 external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Timeout ]
  4776. crbug.com/1060837 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-frame-owner.https.html [ Pass ]
  4777. crbug.com/1143102 virtual/plz-dedicated-worker/http/tests/inspector-protocol/fetch/dedicated-worker-main-script.js [ Skip ]
  4778. # These timeout because COEP reporting to a worker is not implemented.
  4779. crbug.com/1197041 external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]
  4780. crbug.com/1197041 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-worker-owner.https.html [ Skip ]
  4781. # Sheriff 2021-04-12
  4782. crbug.com/1198103 virtual/scroll-unification/fast/events/drag-and-drop-autoscroll.html [ Pass Timeout ]
  4783. crbug.com/1193979 [ Mac ] fast/events/tabindex-focus-blur-all.html [ Failure Pass ]
  4784. crbug.com/1196201 fast/events/mouse-event-source-device-event-sender.html [ Failure Pass ]
  4785. # Sheriff 2021-04-13
  4786. crbug.com/1198698 external/wpt/clear-site-data/storage.https.html [ Pass Timeout ]
  4787. # Sheriff 2021-04-14
  4788. crbug.com/1198828 [ Win ] virtual/scroll-unification/fast/events/mouse-events-on-node-deletion.html [ Failure Pass ]
  4789. crbug.com/1198828 [ Linux ] virtual/scroll-unification/fast/events/mouse-events-on-node-deletion.html [ Failure Pass ]
  4790. # Sheriff 2021-04-15
  4791. crbug.com/1199380 virtual/scroll-unification-prefer_compositing_to_lcd_text/fast/scroll-behavior/overflow-scroll-root-frame-animates.html [ Skip ]
  4792. crbug.com/1194460 virtual/scroll-unification/fast/events/mouseenter-mouseleave-chained-listeners.html [ Skip ]
  4793. crbug.com/1196118 plugins/mouse-move-over-plugin-in-frame.html [ Failure Pass ]
  4794. crbug.com/1199528 http/tests/inspector-protocol/css/css-edit-redirected-css.js [ Failure Pass ]
  4795. crbug.com/1196317 [ Mac ] scrollbars/custom-scrollbar-thumb-width-changed-on-inactive-pseudo.html [ Failure Pass ]
  4796. # Sheriff 2021-04-21
  4797. crbug.com/1201225 external/wpt/pointerevents/pointerlock/pointerevent_pointerrawupdate_in_pointerlock.html [ Failure Pass Timeout ]
  4798. crbug.com/1201346 http/tests/origin_trials/webexposed/bfcache-experiment-http-header-origin-trial.php [ Failure Pass ]
  4799. crbug.com/1201365 virtual/portals/http/tests/inspector-protocol/portals/device-emulation-portals.js [ Pass Timeout ]
  4800. # Sheriff 2021-04-22
  4801. crbug.com/1191990 http/tests/serviceworker/clients-openwindow.html [ Failure Pass ]
  4802. # Sheriff 2021-04-23
  4803. crbug.com/1202051 virtual/scroll-unification/scrollbars/layout-viewport-scrollbars-hidden.html [ Failure Pass ]
  4804. crbug.com/1202051 virtual/scroll-unification-prefer_compositing_to_lcd_text/scrollbars/layout-viewport-scrollbars-hidden.html [ Failure Pass ]
  4805. # Image pixels are sometimes different on Fuchsia.
  4806. crbug.com/1201123 [ Fuchsia ] tables/mozilla/bugs/bug1188.html [ Failure Pass ]
  4807. # Sheriff 2021-04-26
  4808. crbug.com/1202722 [ Linux ] virtual/scroll-unification/fast/events/mouseenter-mouseleave-on-drag.html [ Failure Pass Timeout ]
  4809. # Sheriff 2021-04-29
  4810. crbug.com/1203963 [ Mac10.14 ] external/wpt/webusb/idlharness.https.any.html [ Failure Pass Timeout ]
  4811. # Appears to be timing out even when marked as Slow.
  4812. crbug.com/1205184 [ Mac11 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]
  4813. crbug.com/1205184 [ Mac12 ] external/wpt/IndexedDB/interleaved-cursors-large.html [ Pass Timeout ]
  4814. # Sheriff 2021-05-03
  4815. crbug.com/1205012 external/wpt/html/cross-origin-opener-policy/reporting/access-reporting/reporting-observer.html [ Pass Timeout ]
  4816. crbug.com/1093041 fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass ]
  4817. crbug.com/1093041 virtual/gpu/fast/canvas/color-space/canvas-createImageBitmap-rec2020.html [ Failure Pass Timeout ]
  4818. # Sheriff 2021-05-10
  4819. crbug.com/1207337 virtual/scroll-unification/fast/scroll-snap/animate-fling-to-snap-points-2.html [ Failure Pass ]
  4820. # Sheriff 2021-05-04
  4821. crbug.com/1205659 [ Mac ] external/wpt/IndexedDB/key-generators/reading-autoincrement-indexes.any.worker.html [ Pass Timeout ]
  4822. # Blink_web_tests 2021-05-06
  4823. crbug.com/1205669 [ Mac10.13 ] virtual/threaded/external/wpt/animation-worklet/idlharness.any.worker.html [ Failure ]
  4824. # Sheriff 2021-05-07
  4825. # Some plzServiceWorker and plzDedicatedWorker singled out from generic sheriff rounds above
  4826. # Sheriff 2021-05-10
  4827. crbug.com/1207709 [ Mac10.13 ] external/wpt/pointerevents/pointerevent_contextmenu_is_a_pointerevent.html?touch [ Failure Pass Timeout ]
  4828. # For SkiaRenderer on MacOS
  4829. crbug.com/1208173 [ Mac ] animations/animation-paused-hardware.html [ Failure ]
  4830. crbug.com/1208173 [ Mac ] animations/missing-values-first-keyframe.html [ Failure ]
  4831. crbug.com/1208173 [ Mac ] animations/missing-values-last-keyframe.html [ Failure ]
  4832. crbug.com/1208173 [ Mac ] css3/filters/backdrop-filter-boundary.html [ Failure ]
  4833. crbug.com/1208173 [ Mac ] external/wpt/css/css-paint-api/background-image-alpha.https.html [ Failure ]
  4834. crbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]
  4835. crbug.com/1208173 [ Mac ] external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]
  4836. crbug.com/1208173 [ Mac ] svg/custom/svg-root-with-opacity.html [ Failure ]
  4837. crbug.com/1208173 [ Mac ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-rotation.html [ Failure ]
  4838. crbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/backdrop-filter-basic-opacity-2.html [ Failure ]
  4839. crbug.com/1208173 [ Mac ] virtual/scalefactor200/external/wpt/css/filter-effects/css-filters-animation-opacity.html [ Failure ]
  4840. # Fix to unblock wpt-importer
  4841. crbug.com/1209223 [ Mac ] external/wpt/url/a-element.html [ Pass Timeout ]
  4842. crbug.com/1209223 external/wpt/url/url-constructor.any.worker.html [ Pass Timeout ]
  4843. # Sheriff 2021-05-17
  4844. crbug.com/1193920 virtual/scroll-unification/fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Pass Timeout ]
  4845. crbug.com/1210199 http/tests/devtools/elements/elements-panel-restore-selection-when-node-comes-later.js [ Failure Pass ]
  4846. crbug.com/1199522 http/tests/devtools/layers/layers-3d-view-hit-testing.js [ Failure Pass ]
  4847. # Failing css-transforms-2 web platform tests.
  4848. crbug.com/847356 external/wpt/css/css-transforms/transform-box/view-box-mutation-001.html [ Failure ]
  4849. # Started failing after rolling new version of check-layout-th.js
  4850. css3/flexbox/perpendicular-writing-modes-inside-flex-item.html [ Failure ]
  4851. # JXL tests fail due to rounding error differences.
  4852. # TODO(https://crbug.com/1274220): Rebaseline all images once new tone mapping
  4853. # lands.
  4854. crbug.com/1210658 virtual/jxl-enabled/images/jxl/jxl-images.html [ Skip ]
  4855. # Temporarily disabled to unblock https://crrev.com/c/3099011
  4856. crbug.com/1199701 http/tests/devtools/console/console-big-array.js [ Skip ]
  4857. # Sheriff 2021-11-15
  4858. crbug.com/1270362 http/tests/devtools/sources/debugger-ui/debugger-inline-values.js [ Failure Pass Timeout ]
  4859. # The wpt_flags=h2 variants of these tests fail, but the other variants pass. We
  4860. # can't handle this difference with -expected.txt files, so we have to list them
  4861. # here.
  4862. crbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.html?wpt_flags=h2 [ Failure ]
  4863. crbug.com/1048761 [ Win ] external/wpt/websockets/Close-1000-reason.any.worker.html?wpt_flags=h2 [ Failure ]
  4864. crbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.html?wpt_flags=h2 [ Failure ]
  4865. crbug.com/1048761 external/wpt/websockets/Close-1000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]
  4866. crbug.com/1048761 external/wpt/websockets/Close-1000.any.html?wpt_flags=h2 [ Failure ]
  4867. crbug.com/1048761 external/wpt/websockets/Close-1000.any.worker.html?wpt_flags=h2 [ Failure ]
  4868. crbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.html?wpt_flags=h2 [ Failure ]
  4869. crbug.com/1048761 external/wpt/websockets/Close-1005-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]
  4870. crbug.com/1048761 external/wpt/websockets/Close-1005.any.html?wpt_flags=h2 [ Failure ]
  4871. crbug.com/1048761 external/wpt/websockets/Close-1005.any.worker.html?wpt_flags=h2 [ Failure ]
  4872. crbug.com/1048761 [ Win ] external/wpt/websockets/Close-2999-reason.any.html?wpt_flags=h2 [ Failure ]
  4873. crbug.com/1048761 external/wpt/websockets/Close-2999-reason.any.worker.html?wpt_flags=h2 [ Failure ]
  4874. crbug.com/1048761 external/wpt/websockets/Close-3000-reason.any.html?wpt_flags=h2 [ Failure ]
  4875. crbug.com/1048761 external/wpt/websockets/Close-3000-reason.any.worker.html?wpt_flags=h2 [ Failure ]
  4876. crbug.com/1048761 external/wpt/websockets/Close-3000-verify-code.any.html?wpt_flags=h2 [ Failure ]
  4877. crbug.com/1048761 external/wpt/websockets/Close-3000-verify-code.any.worker.html?wpt_flags=h2 [ Failure ]
  4878. crbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.html?wpt_flags=h2 [ Failure ]
  4879. crbug.com/1048761 external/wpt/websockets/Close-4999-reason.any.worker.html?wpt_flags=h2 [ Failure ]
  4880. crbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.html?wpt_flags=h2 [ Failure ]
  4881. crbug.com/1048761 external/wpt/websockets/Close-Reason-124Bytes.any.worker.html?wpt_flags=h2 [ Failure ]
  4882. crbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.html?wpt_flags=h2 [ Failure ]
  4883. crbug.com/1048761 external/wpt/websockets/Close-onlyReason.any.worker.html?wpt_flags=h2 [ Failure ]
  4884. crbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.html?wpt_flags=h2 [ Failure ]
  4885. crbug.com/1048761 external/wpt/websockets/Close-readyState-Closed.any.worker.html?wpt_flags=h2 [ Failure ]
  4886. crbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.html?wpt_flags=h2 [ Failure ]
  4887. crbug.com/1048761 external/wpt/websockets/Close-readyState-Closing.any.worker.html?wpt_flags=h2 [ Failure ]
  4888. crbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]
  4889. crbug.com/1048761 external/wpt/websockets/Close-reason-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]
  4890. crbug.com/1048761 external/wpt/websockets/Close-server-initiated-close.any.html?wpt_flags=h2 [ Failure ]
  4891. crbug.com/1048761 [ Win ] external/wpt/websockets/Close-server-initiated-close.any.worker.html?wpt_flags=h2 [ Failure ]
  4892. crbug.com/1048761 external/wpt/websockets/Close-undefined.any.html?wpt_flags=h2 [ Failure ]
  4893. crbug.com/1048761 external/wpt/websockets/Close-undefined.any.worker.html?wpt_flags=h2 [ Failure ]
  4894. crbug.com/1048761 [ Linux ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4895. crbug.com/1048761 [ Mac10.13 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4896. crbug.com/1048761 [ Mac10.14 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4897. crbug.com/1048761 [ Mac10.15 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4898. crbug.com/1048761 [ Mac11 ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4899. crbug.com/1048761 [ Win ] external/wpt/websockets/Create-extensions-empty.any.html?wpt_flags=h2 [ Failure ]
  4900. crbug.com/1048761 external/wpt/websockets/Create-extensions-empty.any.worker.html?wpt_flags=h2 [ Failure ]
  4901. crbug.com/1048761 external/wpt/websockets/Create-valid-url-array-protocols.any.html?wpt_flags=h2 [ Failure ]
  4902. crbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-array-protocols.any.worker.html?wpt_flags=h2 [ Failure ]
  4903. crbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.html?wpt_flags=h2 [ Failure ]
  4904. crbug.com/1048761 external/wpt/websockets/Create-valid-url-binaryType-blob.any.worker.html?wpt_flags=h2 [ Failure ]
  4905. crbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.html?wpt_flags=h2 [ Failure ]
  4906. crbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-setCorrectly.any.worker.html?wpt_flags=h2 [ Failure ]
  4907. crbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol-string.any.html?wpt_flags=h2 [ Failure ]
  4908. crbug.com/1048761 [ Linux ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]
  4909. crbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol-string.any.worker.html?wpt_flags=h2 [ Failure ]
  4910. crbug.com/1048761 external/wpt/websockets/Create-valid-url-protocol.any.html?wpt_flags=h2 [ Failure ]
  4911. crbug.com/1048761 [ Win ] external/wpt/websockets/Create-valid-url-protocol.any.worker.html?wpt_flags=h2 [ Failure ]
  4912. crbug.com/1048761 external/wpt/websockets/Create-valid-url.any.html?wpt_flags=h2 [ Failure ]
  4913. crbug.com/1048761 external/wpt/websockets/Create-valid-url.any.worker.html?wpt_flags=h2 [ Failure ]
  4914. crbug.com/1048761 external/wpt/websockets/Send-0byte-data.any.html?wpt_flags=h2 [ Failure ]
  4915. crbug.com/1048761 [ Linux ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]
  4916. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-0byte-data.any.worker.html?wpt_flags=h2 [ Failure ]
  4917. crbug.com/1048761 external/wpt/websockets/Send-65K-data.any.html?wpt_flags=h2 [ Failure ]
  4918. crbug.com/1048761 external/wpt/websockets/Send-65K-data.any.worker.html?wpt_flags=h2 [ Failure ]
  4919. crbug.com/1048761 external/wpt/websockets/Send-binary-65K-arraybuffer.any.html?wpt_flags=h2 [ Failure ]
  4920. crbug.com/1048761 external/wpt/websockets/Send-binary-65K-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]
  4921. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.html?wpt_flags=h2 [ Failure ]
  4922. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybuffer.any.worker.html?wpt_flags=h2 [ Failure ]
  4923. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.html?wpt_flags=h2 [ Failure ]
  4924. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float32.any.worker.html?wpt_flags=h2 [ Failure ]
  4925. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-float64.any.html?wpt_flags=h2 [ Failure ]
  4926. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-float64.any.worker.html?wpt_flags=h2 [ Failure ]
  4927. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.html?wpt_flags=h2 [ Failure ]
  4928. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-int16-offset.any.worker.html?wpt_flags=h2 [ Failure ]
  4929. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.html?wpt_flags=h2 [ Failure ]
  4930. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int32.any.worker.html?wpt_flags=h2 [ Failure ]
  4931. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int8.any.html?wpt_flags=h2 [ Failure ]
  4932. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-int8.any.worker.html?wpt_flags=h2 [ Failure ]
  4933. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.html?wpt_flags=h2 [ Failure ]
  4934. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint16-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]
  4935. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.html?wpt_flags=h2 [ Failure ]
  4936. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint32-offset.any.worker.html?wpt_flags=h2 [ Failure ]
  4937. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.html?wpt_flags=h2 [ Failure ]
  4938. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset-length.any.worker.html?wpt_flags=h2 [ Failure ]
  4939. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.html?wpt_flags=h2 [ Failure ]
  4940. crbug.com/1048761 external/wpt/websockets/Send-binary-arraybufferview-uint8-offset.any.worker.html?wpt_flags=h2 [ Failure ]
  4941. crbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.html?wpt_flags=h2 [ Failure ]
  4942. crbug.com/1048761 external/wpt/websockets/Send-binary-blob.any.worker.html?wpt_flags=h2 [ Failure ]
  4943. crbug.com/1048761 external/wpt/websockets/Send-data.any.html?wpt_flags=h2 [ Failure ]
  4944. crbug.com/1048761 external/wpt/websockets/Send-data.any.worker.html?wpt_flags=h2 [ Failure ]
  4945. crbug.com/1048761 external/wpt/websockets/Send-data.worker.html?wpt_flags=h2 [ Failure ]
  4946. crbug.com/1048761 external/wpt/websockets/Send-null.any.html?wpt_flags=h2 [ Failure ]
  4947. crbug.com/1048761 external/wpt/websockets/Send-null.any.worker.html?wpt_flags=h2 [ Failure ]
  4948. crbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.html?wpt_flags=h2 [ Failure ]
  4949. crbug.com/1048761 external/wpt/websockets/Send-paired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]
  4950. crbug.com/1048761 external/wpt/websockets/Send-unicode-data.any.html?wpt_flags=h2 [ Failure ]
  4951. crbug.com/1048761 external/wpt/websockets/Send-unicode-data.any.worker.html?wpt_flags=h2 [ Failure ]
  4952. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.html?wpt_flags=h2 [ Failure ]
  4953. crbug.com/1048761 [ Win ] external/wpt/websockets/Send-unpaired-surrogates.any.worker.html?wpt_flags=h2 [ Failure ]
  4954. crbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.html?wpt_flags=h2 [ Failure ]
  4955. crbug.com/1048761 external/wpt/websockets/binaryType-wrong-value.any.worker.html?wpt_flags=h2 [ Failure ]
  4956. crbug.com/1048761 external/wpt/websockets/extended-payload-length.html?wpt_flags=h2 [ Failure ]
  4957. crbug.com/1048761 external/wpt/websockets/binary/001.html?wpt_flags=h2 [ Failure ]
  4958. crbug.com/1048761 external/wpt/websockets/binary/002.html?wpt_flags=h2 [ Failure ]
  4959. crbug.com/1048761 external/wpt/websockets/binary/004.html?wpt_flags=h2 [ Failure ]
  4960. crbug.com/1048761 external/wpt/websockets/binary/005.html?wpt_flags=h2 [ Failure ]
  4961. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-arraybuffer.html?wpt_flags=h2 [ Failure ]
  4962. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-blob.html?wpt_flags=h2 [ Failure ]
  4963. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-large.html?wpt_flags=h2 [ Failure ]
  4964. crbug.com/1048761 [ Linux ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]
  4965. crbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-unicode.html?wpt_flags=h2 [ Failure ]
  4966. crbug.com/1048761 [ Win ] external/wpt/websockets/interfaces/WebSocket/events/018.html?wpt_flags=h2 [ Failure ]
  4967. crbug.com/1048761 external/wpt/websockets/interfaces/WebSocket/send/006.html?wpt_flags=h2 [ Failure ]
  4968. # Sheriff on 2021-05-26
  4969. crbug.com/1213322 [ Mac ] external/wpt/css/css-values/minmax-percentage-serialize.html [ Failure Pass ]
  4970. crbug.com/1213322 [ Mac ] external/wpt/html/browsers/the-window-object/named-access-on-the-window-object/window-named-properties.html [ Failure Pass ]
  4971. # Do not retry slow tests that also timeouts
  4972. crbug.com/1210687 [ Mac10.15 ] fast/events/open-window-from-another-frame.html [ Pass Timeout ]
  4973. crbug.com/1210687 [ Mac ] http/tests/permissions/chromium/test-request-worker.html [ Pass Timeout ]
  4974. crbug.com/1210687 [ Mac10.15 ] storage/websql/sql-error-codes.html [ Pass Timeout ]
  4975. crbug.com/1210687 [ Mac10.15 ] external/wpt/html/user-activation/propagation-crossorigin.sub.tentative.html [ Pass Timeout ]
  4976. # Sheriff 2021-06-02
  4977. crbug.com/1215575 [ Mac11 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]
  4978. crbug.com/1215575 [ Mac12 ] fast/peerconnection/RTCPeerConnection-applyConstraints-remoteVideoTrack.html [ Pass Timeout ]
  4979. crbug.com/1215584 [ Mac11 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]
  4980. crbug.com/1215584 [ Mac12 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]
  4981. # Fail with field trial testing config.
  4982. crbug.com/1219767 [ Linux ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-1.https.html [ Failure ]
  4983. # Sheriff 2021-06-03
  4984. crbug.com/1185121 fast/scroll-snap/animate-fling-to-snap-points-1.html [ Failure Pass ]
  4985. crbug.com/1176162 http/tests/devtools/screen-orientation-override.js [ Failure Pass ]
  4986. crbug.com/1215949 external/wpt/pointerevents/pointerevent_iframe-touch-action-none_touch.html [ Pass Timeout ]
  4987. crbug.com/1216139 http/tests/devtools/bfcache/bfcache-elements-update.js [ Failure Pass ]
  4988. # Sheriff 2021-06-10
  4989. crbug.com/1177996 [ Mac10.15 ] storage/websql/database-lock-after-reload.html [ Failure Pass ]
  4990. # CSS Highlight API painting issues related to general CSS highlight
  4991. # pseudo-elements painting
  4992. crbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004.html [ Failure ]
  4993. crbug.com/1163437 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html [ Failure ]
  4994. crbug.com/1147859 external/wpt/css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html [ Failure ]
  4995. crbug.com/1147859 [ Linux ] external/wpt/css/css-highlight-api/painting/custom-highlight-painting-004-2.html [ Failure ]
  4996. crbug.com/1147859 [ Linux ] paint/custom-highlight-only-inheritance.html [ Failure ]
  4997. crbug.com/1147859 [ Linux ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]
  4998. crbug.com/1147859 [ Mac ] virtual/forced-high-contrast-colors/external/wpt/forced-colors-mode/forced-colors-mode-53.html [ Failure ]
  4999. # Green Mac11 Test
  5000. crbug.com/1201406 [ Mac11 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]
  5001. crbug.com/1201406 [ Mac12 ] http/tests/credentialmanagement/credentialscontainer-create-origins.html [ Crash Timeout ]
  5002. crbug.com/1201406 http/tests/credentialmanagement/publickeycredential-same-origin-with-ancestors.html [ Crash Pass Timeout ]
  5003. # Sheriff 2021-06-14
  5004. crbug.com/1219499 external/wpt/websockets/Create-blocked-port.any.html?wpt_flags=h2 [ Failure Pass Timeout ]
  5005. crbug.com/1219499 [ Win ] external/wpt/websockets/Create-blocked-port.any.html?wss [ Pass Timeout ]
  5006. # Sheriff 2021-06-15
  5007. crbug.com/1220007 [ Linux ] fullscreen/full-screen-iframe-allowed-video.html [ Failure Pass Timeout ]
  5008. # Sheriff
  5009. crbug.com/1222097 external/wpt/mediacapture-image/detached-HTMLCanvasElement.html [ Skip ]
  5010. crbug.com/1222097 http/tests/canvas/captureStream-on-detached-canvas.html [ Skip ]
  5011. crbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/blob.https.html [ Skip ]
  5012. crbug.com/1222097 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/worker-inheritance.sub.https.html [ Skip ]
  5013. crbug.com/1222097 external/wpt/uievents/order-of-events/mouse-events/mouseover-out.html [ Skip ]
  5014. # Sheriff 2021-06-25
  5015. # Flaky on Webkit Linux Leak
  5016. crbug.com/1223601 [ Linux ] fast/scrolling/autoscroll-latch-clicked-node-if-parent-unscrollable.html [ Failure Pass ]
  5017. crbug.com/1223601 [ Linux ] fast/scrolling/reset-scroll-in-onscroll.html [ Failure Pass ]
  5018. # Sheriff 2021-06-29
  5019. # Flaky on Mac11 Tests
  5020. crbug.com/1197464 [ Mac ] plugins/refcount-leaks.html [ Failure Pass ]
  5021. # Sheriff 2021-07-05
  5022. crbug.com/1226445 [ Mac ] virtual/storage-access-api/external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]
  5023. # Sheriff 2021-07-07
  5024. crbug.com/1227092 [ Win ] virtual/scroll-unification/fast/events/selection-autoscroll-borderbelt.html [ Failure Pass Timeout ]
  5025. # Sheriff 2021-07-12
  5026. crbug.com/1228432 [ Linux ] external/wpt/video-rvfc/request-video-frame-callback-before-xr-session.https.html [ Pass Timeout ]
  5027. # Depends on fixing WPT cross-origin iframe click flake in crbug.com/1066891.
  5028. crbug.com/1227710 external/wpt/bluetooth/requestDevice/cross-origin-iframe.sub.https.window.html [ Failure Pass ]
  5029. # Cross-origin WebAssembly module sharing is getting deprecated.
  5030. crbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-similar-but-cross-origin-success.sub.html [ Skip ]
  5031. crbug.com/1224804 virtual/not-site-per-process/external/wpt/wasm/serialization/module/window-domain-success.sub.html [ Skip ]
  5032. # Sheriff 2021-07-13
  5033. crbug.com/1228959 [ Linux ] virtual/scroll-unification/fast/scroll-snap/snaps-after-wheel-scrolling-single-tick.html [ Failure Pass ]
  5034. # A number of http/tests/inspector-protocol/network tests are flaky.
  5035. crbug.com/1196027 http/tests/inspector-protocol/network/request-interception.js [ Failure Pass ]
  5036. crbug.com/1228246 http/tests/inspector-protocol/network/request-interception-frame-id.js [ Failure Pass Timeout ]
  5037. # linux_layout_tests_layout_ng_disabled needs its own baselines.
  5038. crbug.com/1231699 [ Linux ] fast/borders/border-inner-bleed.html [ Failure Pass ]
  5039. crbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video-shadow.html [ Failure Pass ]
  5040. crbug.com/1231699 [ Linux ] fast/canvas/canvas-composite-video.html [ Failure Pass ]
  5041. crbug.com/1231699 [ Linux ] fast/reflections/opacity-reflection-transform.html [ Failure Pass ]
  5042. crbug.com/1231699 [ Linux ] svg/custom/focus-ring.svg [ Failure Pass ]
  5043. crbug.com/1231699 [ Linux ] svg/custom/transformed-outlines.svg [ Failure Pass ]
  5044. crbug.com/1231699 [ Linux ] virtual/text-antialias/color-emoji.html [ Failure Pass ]
  5045. # Other devtools flaky tests outside of http/tests/inspector-protocol/network.
  5046. crbug.com/1228261 http/tests/inspector-protocol/browser-grant-permissions.js [ Failure Pass Timeout ]
  5047. # Flakes that might be caused or aggravated by PlzServiceWorker
  5048. crbug.com/996511 external/wpt/service-workers/cache-storage/window/cache-abort.https.html [ Crash Failure Pass ]
  5049. crbug.com/996511 external/wpt/service-workers/service-worker/getregistrations.https.html [ Crash Failure Pass Timeout ]
  5050. # Sheriff 2021-07-14
  5051. crbug.com/1229039 [ Linux ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]
  5052. crbug.com/1229039 [ Mac ] external/wpt/webrtc/RTCDTMFSender-ontonechange.https.html [ Pass Timeout ]
  5053. # Test fails due to more accurate size reporting in heap snapshots.
  5054. crbug.com/1229212 inspector-protocol/heap-profiler/heap-samples-in-snapshot.js [ Failure ]
  5055. # Sheriff 2021-07-15
  5056. crbug.com/1229666 external/wpt/html/semantics/forms/form-submission-0/urlencoded2.window.html [ Pass Timeout ]
  5057. crbug.com/1093027 http/tests/credentialmanagement/credentialscontainer-create-with-virtual-authenticator.html [ Crash Failure Pass Timeout ]
  5058. # The next test was originally skipped on mac for lack of support (crbug.com/613672). It is now skipped everywhere due to flakiness.
  5059. crbug.com/1229708 fast/events/pointerevents/pointer-event-in-slop-region.html [ Skip ]
  5060. # pause-on-elements-panel.js is marked as Slow, so it's required to also be Skipped due to it Timing out.
  5061. crbug.com/1229725 http/tests/devtools/sources/debugger-pause/pause-on-elements-panel.js [ Crash Failure Pass Timeout ]
  5062. crbug.com/1085647 external/wpt/pointerevents/compat/pointerevent_mouse-pointer-preventdefault.html [ Pass Timeout ]
  5063. crbug.com/1087232 http/tests/devtools/network/network-worker-fetch-blocked.js [ Failure Pass ]
  5064. crbug.com/1229802 fast/events/pointerevents/multi-touch-events.html [ Failure Pass ]
  5065. crbug.com/1181886 external/wpt/pointerevents/pointerevent_movementxy.html?* [ Failure Pass Timeout ]
  5066. # Sheriff 2021-07-21
  5067. crbug.com/1231431 virtual/plz-dedicated-worker/external/wpt/html/cross-origin-embedder-policy/reporting-to-endpoint.https.html [ Failure ]
  5068. # Sheriff 2021-07-22
  5069. crbug.com/1222097 [ Mac ] external/wpt/html/semantics/embedded-content/media-elements/track/track-element/track-cues-sorted-before-dispatch.html [ Failure Pass ]
  5070. crbug.com/1231989 [ Linux ] external/wpt/html/cross-origin-embedder-policy/shared-workers.https.html [ Failure Pass ]
  5071. # Sheriff 2021-07-28
  5072. crbug.com/1234057 external/wpt/css/css-paint-api/no-op-animation.https.html [ Failure Pass ]
  5073. # Temporarily disabling progress based worklet animation tests.
  5074. crbug.com/1238130 animations/animationworklet/playback-rate-scroll-timeline-accelerated-property.html [ Timeout ]
  5075. crbug.com/1238130 animations/animationworklet/scroll-timeline-dispose.html [ Timeout ]
  5076. crbug.com/1238130 animations/animationworklet/scroll-timeline-dynamic-update.html [ Timeout ]
  5077. crbug.com/1238130 animations/animationworklet/scroll-timeline-non-compositable.html [ Timeout ]
  5078. crbug.com/1238130 animations/animationworklet/scroll-timeline-non-scrollable.html [ Timeout ]
  5079. crbug.com/1238130 external/wpt/animation-worklet/inactive-timeline.https.html [ Failure ]
  5080. crbug.com/1238130 external/wpt/animation-worklet/scroll-timeline-writing-modes.https.html [ Failure ]
  5081. crbug.com/1238130 external/wpt/animation-worklet/worklet-animation-creation.https.html [ Failure ]
  5082. crbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Timeout ]
  5083. crbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Timeout ]
  5084. crbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-root-scroller.https.html [ Timeout ]
  5085. crbug.com/1238130 external/wpt/animation-worklet/worklet-animation-with-scroll-timeline.https.html [ Timeout ]
  5086. # Sheriff 2021-07-29
  5087. crbug.com/626703 http/tests/security/cross-frame-access-put.html [ Failure Pass ]
  5088. # Sheriff 2021-07-30
  5089. crbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio+video.https.sub.html [ Failure ]
  5090. crbug.com/1234619 external/wpt/screen-capture/permissions-policy-audio.https.sub.html [ Failure ]
  5091. crbug.com/1234619 external/wpt/screen-capture/permissions-policy-video.https.sub.html [ Failure ]
  5092. # Sheriff 2021-08-02
  5093. crbug.com/1215390 [ Linux ] external/wpt/pointerevents/pointerevent_pointerId_scope.html [ Failure Pass ]
  5094. # Sheriff 2021-08-12
  5095. crbug.com/1237640 http/tests/inspector-protocol/network/disabled-cache-navigation.js [ Pass Timeout ]
  5096. crbug.com/1239175 http/tests/navigation/same-and-different-back.html [ Failure Pass ]
  5097. crbug.com/1239164 http/tests/inspector-protocol/network/navigate-iframe-in2in.js [ Failure Pass ]
  5098. crbug.com/1237909 external/wpt/webrtc-svc/RTCRtpParameters-scalability.html [ Crash Failure Pass Timeout ]
  5099. # Sheriff 2021-08-19
  5100. crbug.com/1234315 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html [ Failure Timeout ]
  5101. # Sheriff 2021-08-20
  5102. crbug.com/1194498 http/tests/misc/iframe-script-modify-attr.html [ Crash Failure Pass Timeout ]
  5103. # Sheriff 2021-08-23
  5104. crbug.com/1242243 external/wpt/css/css-paint-api/parse-input-arguments-018.https.html [ Crash Failure Pass ]
  5105. # Sheriff 2021-08-25
  5106. crbug.com/1243128 [ Win ] external/wpt/web-share/disabled-by-permissions-policy.https.sub.html [ Failure ]
  5107. # Sheriff 2021-08-26
  5108. crbug.com/1243707 [ Debug Linux ] http/tests/inspector-protocol/target/auto-attach-related-sw.js [ Crash Pass ]
  5109. # Sheriff 2021-09-03
  5110. crbug.com/1246351 http/tests/misc/scroll-cross-origin-iframes-scrollbar.html [ Failure Pass Timeout ]
  5111. # Sheriff 2021-09-06
  5112. # All of these suffer from the same problem of of a
  5113. # DCHECK(!snapshot.drawsNothing()) failing on Macs:
  5114. # Also reported as failing via crbug.com/1233766
  5115. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html [ Crash Failure Pass Timeout ]
  5116. # Previously reported as failing via crbug.com/626703:
  5117. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-keyframes.https.html [ Crash Failure Pass ]
  5118. # Previously reported as fialing via crbug.com/626703:
  5119. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-immediately.https.html [ Crash Failure Pass ]
  5120. # Also reported as failing via crbug.com/1233766:
  5121. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-set-timing.https.html [ Crash Failure Pass ]
  5122. # Previously reported as failing via crbug.com/1233766 on Mac11:
  5123. # Previously reported as failing via crbug.com/626703 on Mac10.15:
  5124. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-null-2.https.html [ Crash Failure Pass ]
  5125. # Also reported as failing via crbug.com/1233766:
  5126. crbug.com/1233826 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-cancel.https.html [ Crash Failure Pass ]
  5127. # Previously reported as failing via crbug.com/626703:
  5128. crbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-before-start.https.html [ Crash Failure Pass ]
  5129. crbug.com/1233766 [ Mac ] virtual/threaded/external/wpt/animation-worklet/worklet-animation-get-timing-on-worklet-thread.https.html [ Crash Failure Pass ]
  5130. # [CompositeClipPathAnimations] failing test
  5131. crbug.com/1249071 virtual/composite-clip-path-animation/external/wpt/css/css-masking/clip-path/animations/clip-path-animation-filter.html [ Crash Failure Pass ]
  5132. # Following tests fail on mac11-arm64 or mac12-arm64
  5133. crbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]
  5134. crbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-exclusion.html [ Failure ]
  5135. crbug.com/1249176 [ Mac11-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]
  5136. crbug.com/1249176 [ Mac12-arm64 ] css3/blending/svg-blend-multiply.html [ Failure ]
  5137. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]
  5138. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/canvas/element/manual/drawing-images-to-the-canvas/image-orientation/drawImage-from-blob.tentative.html [ Failure ]
  5139. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/image-src-change.html [ Failure ]
  5140. crbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-oversized-images-forced-layout.php [ Failure ]
  5141. crbug.com/1249176 [ Mac11-arm64 ] transforms/transformed-document-element.html [ Failure ]
  5142. crbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure ]
  5143. crbug.com/1249176 [ Mac12-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Pass ]
  5144. crbug.com/1249176 [ Mac11-arm64 ] virtual/threaded/http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure ]
  5145. crbug.com/1249176 [ Mac11-arm64 ] webaudio/codec-tests/webm/webm-decode.html [ Failure ]
  5146. crbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-detune-modulation.html [ Failure ]
  5147. crbug.com/1249176 [ Mac11-arm64 ] webaudio/AudioBufferSource/audiobuffersource-playbackrate-modulation.html [ Failure ]
  5148. crbug.com/1249176 [ Mac11-arm64 ] webaudio/Analyser/realtimeanalyser-freq-data.html [ Failure ]
  5149. crbug.com/1249176 [ Mac11-arm64 ] webaudio/Oscillator/no-dezippering.html [ Failure ]
  5150. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/endTime.html [ Failure ]
  5151. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/service-workers/idlharness.https.any.worker.html [ Failure ]
  5152. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/dom/xslt/transformToFragment.tentative.window.html [ Failure ]
  5153. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/api/VTTCue/constructor.html [ Failure ]
  5154. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/content-security-policy/securitypolicyviolation/source-file-data-scheme.html [ Failure ]
  5155. crbug.com/1249176 [ Mac11-arm64 ] fast/forms/color/color-picker-escape-cancellation-revert.html [ Failure ]
  5156. crbug.com/1249176 [ Mac11-arm64 ] fast/dom/geometry-interfaces-dom-matrix-rotate.html [ Failure ]
  5157. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-021.html [ Failure ]
  5158. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-025.html [ Failure ]
  5159. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-004.html [ Failure Pass ]
  5160. crbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]
  5161. crbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-clip.html [ Failure ]
  5162. crbug.com/1249176 [ Mac11-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]
  5163. crbug.com/1249176 [ Mac12-arm64 ] compositing/overflow/rotate-then-clip.html [ Failure ]
  5164. crbug.com/1249176 [ Mac11-arm64 ] media/video-replaces-poster.html [ Skip ]
  5165. crbug.com/1249176 [ Mac12-arm64 ] media/video-replaces-poster.html [ Skip ]
  5166. crbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]
  5167. crbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/color-jpeg-with-color-profile.html [ Failure ]
  5168. crbug.com/1249176 [ Mac11-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]
  5169. crbug.com/1249176 [ Mac12-arm64 ] media/controls/overflow-menu-focus.html [ Failure Pass ]
  5170. # Failures that surfaced on the mac12-arm64 waterfall
  5171. crbug.com/1249176 [ Mac12-arm64 ] media/color-profile-video-seek.html [ Failure ]
  5172. crbug.com/1249176 [ Mac12-arm64 ] media/video-zoom.html [ Failure ]
  5173. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]
  5174. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]
  5175. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]
  5176. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]
  5177. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]
  5178. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]
  5179. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]
  5180. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]
  5181. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]
  5182. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]
  5183. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]
  5184. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]
  5185. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]
  5186. crbug.com/1249176 [ Mac12-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]
  5187. # Flakes that surfaced on the mac12 and mac12-arm64 waterfall
  5188. crbug.com/1249176 [ Mac12 ] external/wpt/html/browsers/browsing-the-web/back-forward-cache/service-worker-controlled-after-restore.https.html [ Failure Pass ]
  5189. crbug.com/1249176 [ Mac12 ] fast/dom/Element/scrollTop-scrollLeft-body.html [ Failure Pass ]
  5190. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/html/rendering/replaced-elements/embedded-content/cross-domain-iframe-in-multicol.sub.html [ Failure Pass ]
  5191. # Sheriff 2022-07-04
  5192. crbug.com/1341689 [ Linux ] media/controls/overflow-menu-focus.html [ Failure Pass ]
  5193. # Following tests timeout on mac11-arm64
  5194. crbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-paint/paint-profiler-update.js [ Failure Timeout ]
  5195. # Flaky tests in mac11-arm64 or mac12-arm64
  5196. crbug.com/1249176 [ Mac11-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]
  5197. crbug.com/1249176 [ Mac12-arm64 ] transforms/3d/general/cssmatrix-3d-zoom.html [ Failure Pass ]
  5198. crbug.com/1249176 [ Mac11-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]
  5199. crbug.com/1249176 [ Mac12-arm64 ] http/tests/images/document-policy-lossy-images-max-bpp.php [ Failure Pass Timeout ]
  5200. crbug.com/1249176 [ Mac11-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]
  5201. crbug.com/1249176 [ Mac12-arm64 ] fast/forms/plaintext-mode-2.html [ Failure Pass ]
  5202. crbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]
  5203. crbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/timeline-time/timeline-usertiming.js [ Failure Pass ]
  5204. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]
  5205. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-embed.html [ Failure Pass ]
  5206. crbug.com/1249176 [ Mac11-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]
  5207. crbug.com/1249176 [ Mac12-arm64 ] http/tests/intersection-observer/cross-origin-iframe-with-nesting.html [ Failure Pass Timeout ]
  5208. crbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]
  5209. crbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-font-8px.html [ Failure Pass ]
  5210. crbug.com/1249176 [ Mac11-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]
  5211. crbug.com/1249176 [ Mac12-arm64 ] paint/markers/document-markers-zoom-2000.html [ Failure Pass ]
  5212. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]
  5213. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/resource-timing/nested-context-navigations-object.html [ Failure Pass ]
  5214. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]
  5215. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/webvtt/rendering/cues-with-video/processing-model/audio_has_no_subtitles.html [ Failure Pass ]
  5216. crbug.com/1249176 [ Mac11-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]
  5217. crbug.com/1249176 [ Mac12-arm64 ] http/tests/preload/without_doc_write_evaluator.html [ Failure Pass ]
  5218. crbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]
  5219. crbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/accessibility/edit-aria-attributes.js [ Failure Pass ]
  5220. crbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]
  5221. crbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/overlay/overlay-persistent-overlays-with-emulation.js [ Failure Pass ]
  5222. crbug.com/1249176 [ Mac12-arm64 ] virtual/scroll-unification/plugins/missing-plugin.html [ Failure Pass ]
  5223. crbug.com/1249176 [ Mac11-arm64 ] virtual/scroll-unification/plugins/multiple-plugins.html [ Failure Pass ]
  5224. crbug.com/1249176 [ Mac12-arm64 ] virtual/scroll-unification/plugins/multiple-plugins.html [ Failure Pass ]
  5225. crbug.com/1249176 [ Mac11-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]
  5226. crbug.com/1249176 [ Mac12-arm64 ] fast/layers/clip-rects-transformed-2.html [ Failure Pass ]
  5227. crbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]
  5228. crbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/page-frames.js [ Failure Pass ]
  5229. crbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]
  5230. crbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/timeline/user-timing.js [ Failure Pass ]
  5231. crbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]
  5232. crbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/tracing/frame-model-instrumentation.js [ Failure Pass ]
  5233. crbug.com/1249176 [ Mac11-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]
  5234. crbug.com/1249176 [ Mac12-arm64 ] inspector-protocol/layout-fonts/lang-fallback.js [ Failure Pass ]
  5235. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]
  5236. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-position/fixed-z-index-blend.html [ Failure Pass ]
  5237. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]
  5238. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/layout-instability/recent-input.html [ Failure Pass ]
  5239. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]
  5240. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/event-timing/event-retarget.html [ Failure Pass ]
  5241. crbug.com/1249176 virtual/gpu-rasterization/images/12-55.html [ Skip ]
  5242. crbug.com/1249176 [ Mac11-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]
  5243. crbug.com/1249176 [ Mac12-arm64 ] fast/forms/file/recover-file-input-in-unposted-form.html [ Failure Pass ]
  5244. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]
  5245. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-015.html [ Failure Pass ]
  5246. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]
  5247. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-003.html [ Failure Pass ]
  5248. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]
  5249. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-014.html [ Failure Pass ]
  5250. crbug.com/1249176 virtual/gpu-rasterization/images/color-profile-image-filter-all.html [ Skip ]
  5251. crbug.com/1249176 [ Mac11-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5252. crbug.com/1249176 [ Mac12-arm64 ] virtual/scalefactor200/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5253. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5254. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5255. crbug.com/1249176 [ Mac11-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5256. crbug.com/1249176 [ Mac12-arm64 ] virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/multiple-redirects-TAO.html [ Failure Pass ]
  5257. crbug.com/1249176 [ Mac12-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]
  5258. crbug.com/1249176 [ Mac11-arm64 ] http/tests/devtools/elements/styles-2/nested-pseudo-elements.js [ Failure Pass ]
  5259. # mac-arm CI 10-01-2021
  5260. crbug.com/1249176 [ Mac11-arm64 ] http/tests/security/opened-document-security-origin-resets-on-navigation.html [ Timeout ]
  5261. # mac-arm CI 10-05-2021
  5262. crbug.com/1249176 [ Mac11-arm64 ] virtual/no-alloc-direct-call/fast/canvas/canvas-lost-gpu-context.html [ Failure ]
  5263. crbug.com/1249176 [ Mac11-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5264. crbug.com/1249176 [ Mac12-arm64 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5265. crbug.com/1249176 [ Mac11-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]
  5266. crbug.com/1249176 [ Mac12-arm64 ] fast/replaced/no-focus-ring-object.html [ Failure Pass ]
  5267. crbug.com/1249176 [ Mac11-arm64 ] svg/animations/animate-setcurrenttime.html [ Crash ]
  5268. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]
  5269. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-011.html [ Crash Failure Pass ]
  5270. crbug.com/1249176 [ Mac11-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]
  5271. crbug.com/1249176 [ Mac12-arm64 ] external/wpt/css/css-shapes/shape-outside/shape-image/shape-image-018.html [ Failure Pass ]
  5272. crbug.com/1249176 [ Mac11-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]
  5273. crbug.com/1249176 [ Mac12-arm64 ] http/tests/security/cross-origin-shared-worker-allowed.html [ Crash Pass ]
  5274. crbug.com/1249176 [ Mac11-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]
  5275. crbug.com/1249176 [ Mac12-arm64 ] media/autoplay/webaudio-audio-context-init.html [ Crash Pass ]
  5276. #devtool flaky test crbug.com/1046784
  5277. crbug.com/1046784 [ Mac12 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]
  5278. # Sheriff 2021-09-16
  5279. crbug.com/1250457 [ Mac ] virtual/scroll-unification/plugins/plugin-map-data-to-src.html [ Failure ]
  5280. crbug.com/1250457 [ Mac ] storage/websql/open-database-set-empty-version.html [ Timeout ]
  5281. crbug.com/1250457 [ Mac ] virtual/portals/http/tests/devtools/portals/portals-console.js [ Failure Pass Timeout ]
  5282. crbug.com/1250457 [ Mac ] virtual/prefer_compositing_to_lcd_text/scrollbars/custom-scrollbar-inactive-pseudo.html [ Timeout ]
  5283. crbug.com/1250457 [ Mac ] virtual/scroll-unification/fast/events/space-scroll-textinput-canceled.html [ Timeout ]
  5284. crbug.com/1249622 external/wpt/largest-contentful-paint/initially-invisible-images.html [ Failure ]
  5285. crbug.com/1249622 virtual/initially-invisible-images-lcp/external/wpt/largest-contentful-paint/initially-invisible-images.html [ Pass ]
  5286. crbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Failure ]
  5287. crbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-background-image.html [ Pass ]
  5288. crbug.com/959296 external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Failure ]
  5289. crbug.com/959296 virtual/background-svg-in-lcp/external/wpt/largest-contentful-paint/observe-svg-data-uri-background-image.html [ Pass ]
  5290. # FileSystemHandle::move() is temporarily disabled outside of the Origin Private File System
  5291. crbug.com/1247850 external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]
  5292. crbug.com/1247850 [ Linux ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]
  5293. crbug.com/1247850 [ Mac11 ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]
  5294. crbug.com/1247850 [ Win ] virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemFileHandle-move-manual.https.html [ Failure ]
  5295. # FileSystemHandle::move() is temporarily disabled for directory handles
  5296. crbug.com/1250534 external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]
  5297. crbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]
  5298. crbug.com/1250534 external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]
  5299. crbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/local_FileSystemDirectoryHandle-move-manual.https.html [ Failure ]
  5300. crbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.html [ Failure ]
  5301. crbug.com/1250534 virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemDirectoryHandle-move.https.any.worker.html [ Failure ]
  5302. # crbug.com/1293591: Many virtual/gpu-rasterization/images/* tests are flaky
  5303. crbug.com/1293591 images/color-profile-animate-rotate.html [ Failure Pass ]
  5304. crbug.com/1293591 images/color-profile-animate.html [ Failure Pass ]
  5305. crbug.com/1293591 images/color-profile-background-image-cross-fade.html [ Failure Pass ]
  5306. crbug.com/1293591 images/color-profile-background-image-repeat.html [ Failure Pass ]
  5307. crbug.com/1293591 images/color-profile-background-image-space.html [ Failure Pass ]
  5308. crbug.com/1293591 images/color-profile-border-fade.html [ Failure Pass ]
  5309. crbug.com/1293591 images/color-profile-clip.html [ Failure Pass ]
  5310. crbug.com/1293591 images/color-profile-group.html [ Failure Pass ]
  5311. crbug.com/1293591 images/color-profile-iframe.html [ Failure Pass ]
  5312. crbug.com/1293591 images/color-profile-image-canvas-pattern.html [ Failure Pass ]
  5313. crbug.com/1293591 images/color-profile-image-canvas.html [ Failure Pass ]
  5314. crbug.com/1293591 images/color-profile-image-shape.html [ Failure Pass ]
  5315. crbug.com/1293591 images/color-profile-mask-image-svg.html [ Failure Pass ]
  5316. crbug.com/1293591 images/color-profile-object.html [ Failure Pass ]
  5317. crbug.com/1293591 images/color-profile-svg-fill-text.html [ Failure Pass ]
  5318. crbug.com/1293591 images/color-profile-svg.html [ Failure Pass ]
  5319. crbug.com/1293591 images/jpeg-with-color-profile.html [ Failure Pass ]
  5320. # crbug.com/1339051: some ref tests generate output with minor differences.
  5321. crbug.com/1339051 [ Linux ] compositing/text-on-scaled-layer.html [ Failure ]
  5322. crbug.com/1339051 [ Linux ] external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]
  5323. crbug.com/1339051 [ Linux ] fast/forms/color/color-picker-appearance-zoom125.html [ Failure ]
  5324. crbug.com/1339051 [ Linux ] virtual/backface-visibility-interop/external/wpt/css/css-transforms/perspective-split-by-zero-w.html [ Failure ]
  5325. crbug.com/1339051 [ Linux ] virtual/document-transition/wpt_internal/document-transition/content-with-transform-new-image.html [ Failure ]
  5326. crbug.com/1339051 [ Linux ] virtual/document-transition/wpt_internal/document-transition/object-view-box-old-image.html [ Failure ]
  5327. crbug.com/1339051 [ Linux ] virtual/document-transition/wpt_internal/document-transition/web-animations-api.html [ Failure ]
  5328. crbug.com/1339051 [ Linux ] virtual/oopr-canvas2d/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html [ Failure ]
  5329. crbug.com/1339051 [ Linux ] virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces.html [ Failure ]
  5330. # Sheriff 2021-09-27
  5331. # Revisit once crbug.com/1123886 is addressed.
  5332. # Likely has the same root cause for crashes.
  5333. crbug.com/1233826 external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]
  5334. crbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-start-delay.https.html [ Skip ]
  5335. crbug.com/1233826 external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]
  5336. crbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-with-non-ascii-name.https.html [ Skip ]
  5337. crbug.com/1233826 external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]
  5338. crbug.com/1233826 virtual/threaded/external/wpt/animation-worklet/worklet-animation-local-time-after-duration.https.html [ Skip ]
  5339. crbug.com/930462 external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]
  5340. crbug.com/930462 virtual/threaded/external/wpt/animation-worklet/worklet-animation-pause-resume.https.html [ Skip ]
  5341. # Sheriff 2021-09-29
  5342. crbug.com/1254163 [ Mac ] virtual/scroll-unification/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure ]
  5343. # Sheriff 2021-10-01
  5344. crbug.com/1255014 [ Linux ] virtual/scroll-unification-overlay-scrollbar/plugin-overlay-scrollbar-mouse-capture.html [ Failure Pass ]
  5345. crbug.com/1255221 http/tests/devtools/elements/styles-4/svg-style.js [ Failure Pass ]
  5346. # Skip devtools test hitting an unexpected tracing infrastructure exception 2021-10-04
  5347. crbug.com/1255679 http/tests/devtools/service-workers/service-workers-wasm-test.js [ Failure Pass Timeout ]
  5348. # Sheriff 2021-10-05
  5349. crbug.com/1256755 http/tests/xmlhttprequest/cross-origin-unsupported-url.html [ Failure Pass ]
  5350. crbug.com/1256770 [ Mac ] svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr.html [ Failure Pass ]
  5351. # Disabled to allow devtools-frontend roll
  5352. crbug.com/1258618 virtual/portals/http/tests/devtools/portals/portals-elements-nesting-after-adoption.js [ Skip ]
  5353. # Sheriff 2021-10-06
  5354. crbug.com/1257298 svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr.html [ Failure Pass ]
  5355. # Sheriff 2021-10-12
  5356. crbug.com/1259133 [ Mac10.14 ] external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]
  5357. crbug.com/1259133 [ Mac10.14 ] virtual/no-alloc-direct-call/external/wpt/html/canvas/offscreen/manual/the-offscreen-canvas/offscreencanvas.commit.html [ Failure Pass ]
  5358. crbug.com/1259277 [ Linux ] virtual/scroll-unification/fast/events/message-port-multi.html [ Failure Pass ]
  5359. # Data URL navigation within Fenced Frames currently crashed in the MPArch implementation.
  5360. crbug.com/1243568 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/window-data-url-navigation.https.html [ Timeout ]
  5361. # Fragment navigations are treated as same-document in ShadowDOM because it doesn't distinguish embedder-initiated navigations.
  5362. crbug.com/1262022 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/fragment-navigation.https.html [ Timeout ]
  5363. # Sheriff 2021-10-15, 2021-12-07
  5364. crbug.com/1256763 [ Win ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]
  5365. crbug.com/1256763 [ Mac ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]
  5366. crbug.com/1256763 [ Linux ] virtual/gpu-rasterization/images/color-profile-image-pseudo-content.html [ Failure Pass ]
  5367. crbug.com/1260393 [ Mac ] virtual/oopr-canvas2d/fast/canvas/color-space/canvas-createImageBitmap-p3.html [ Failure Pass ]
  5368. # Sheriff 2021-10-19
  5369. crbug.com/1256763 [ Linux ] images/color-profile-background-clip-text.html [ Failure Pass ]
  5370. crbug.com/1259277 fast/events/message-port-multi.html [ Skip ]
  5371. # Sheriff 2021-10-26
  5372. crbug.com/1263732 http/tests/devtools/tracing/timeline-paint/timeline-paint-image.js [ Failure Pass ]
  5373. # Sheriff 2021-10-29
  5374. crbug.com/1264670 [ Linux ] http/tests/devtools/resource-tree/resource-tree-frame-add.js [ Failure Pass ]
  5375. # TODO(https://crbug.com/1265311): Make the test behave the same way on all platforms
  5376. crbug.com/1265311 http/tests/navigation/location-change-repeated-from-blank.html [ Failure Pass ]
  5377. # Sheriff 2021-11-03
  5378. crbug.com/1266221 [ Mac11-arm64 ] virtual/fsa-incognito/external/wpt/file-system-access/sandboxed_FileSystemFileHandle-create-sync-access-handle.https.tentative.window.html [ Failure Pass ]
  5379. # Sheriff 2021-11-09
  5380. crbug.com/1269535 http/tests/misc/resource-timing-sizes-multipart.html [ Failure Pass Timeout ]
  5381. # This test is flaky on all platforms
  5382. crbug.com/1191846 [ Mac11 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]
  5383. crbug.com/1191846 [ Mac12 ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass Timeout ]
  5384. crbug.com/1191846 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/local-storage.html [ Failure Pass ]
  5385. # Sheriff 2021-11-10
  5386. crbug.com/1268963 [ Linux ] external/wpt/resource-timing/object-not-found-after-TAO-cross-origin-redirect.html [ Failure Pass ]
  5387. # Sheriff 2021-11-12
  5388. crbug.com/1268594 [ Linux ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]
  5389. crbug.com/1268594 [ Mac ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]
  5390. crbug.com/1268594 [ Win ] css3/filters/composited-layer-bounds-after-sw-blur-animation.html [ Failure Pass ]
  5391. # Security OWP fixit week
  5392. crbug.com/1270355 external/wpt/html/browsers/browsing-the-web/navigating-across-documents/009.html [ Timeout ]
  5393. # Sheriff 2021-11-18
  5394. crbug.com/1180993 external/wpt/mediacapture-record/passthrough/MediaRecorder-passthrough.https.html [ Failure Pass Timeout ]
  5395. # Sheriff 2021-11-19
  5396. crbug.com/1186771 [ Mac ] fast/scroll-snap/snaps-after-scrollbar-scrolling-track.html [ Crash ]
  5397. crbug.com/894077 [ Linux ] virtual/android/fullscreen/video-fixed-background.html [ Failure Pass ]
  5398. crbug.com/1271336 external/wpt/native-io/detach_iframe_during_open.https.window.html [ Crash Pass ]
  5399. crbug.com/1197465 virtual/scroll-unification/fast/events/mouse-cursor-no-mousemove.html [ Skip ]
  5400. # Sheriff 2021-11-22
  5401. crbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-test.js [ Failure Pass Timeout ]
  5402. crbug.com/1272352 virtual/threaded/http/tests/devtools/isolated-code-cache/stale-revalidation-test.js [ Failure Pass Timeout ]
  5403. crbug.com/1272376 virtual/scroll-unification/plugins/plugin-document-back-forward.html [ Failure Pass ]
  5404. crbug.com/1272380 http/tests/devtools/bindings/bindings-multiple-frames.js [ Failure Pass ]
  5405. # Flaky on mac
  5406. crbug.com/1263709 [ Mac ] http/tests/devtools/elements/node-xpath.js [ Failure ]
  5407. # Flaky on Mac and Windows
  5408. crbug.com/1272199 external/wpt/websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]
  5409. crbug.com/1272203 external/wpt/websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2 [ Failure Pass ]
  5410. # Times out flakily on all platforms. Previously marked slow, crbug.com/874695.
  5411. crbug.com/1272801 http/tests/permissions/chromium/test-request-sharedworker.html [ Pass Timeout ]
  5412. # Flaky with setTimeout without clamp
  5413. crbug.com/1272955 http/tests/devtools/extensions/extensions-timeline-api.js [ Failure Pass ]
  5414. crbug.com/1302309 external/wpt/streams/transferable/writable-stream.html [ Failure Pass ]
  5415. # Test is very flaky (score of 223).
  5416. crbug.com/1274919 http/tests/inspector-protocol/page/consecutive-navigate.js [ Failure Pass Timeout ]
  5417. # Sheriff 2021-11-23
  5418. crbug.com/1046784 http/tests/devtools/tracing/timeline-receive-response-event.js [ Failure Pass ]
  5419. # Sheriff 2021-11-24
  5420. crbug.com/1273541 fast/block/float/float-on-clean-line-subsequently-dirtied.html [ Failure Pass ]
  5421. # Sheriff 2021-11-26
  5422. crbug.com/1201879 [ Linux ] http/tests/inspector-protocol/issues/mixed-content-issue-creation-js-within-oopif.js [ Failure Pass Timeout ]
  5423. crbug.com/1274171 inspector-protocol/debugger/debugger-setTimeout-sourceUrl-dedicated-worker-loop.js [ Pass Timeout ]
  5424. crbug.com/1271485 http/tests/inspector-protocol/network/load-network-resource-different-frame-cookie.js [ Failure Pass Timeout ]
  5425. crbug.com/1228803 [ Linux ] fast/peerconnection/RTCPeerConnection-garbagecollected.html [ Failure Pass ]
  5426. # Sheriff 2021-11-29
  5427. crbug.com/1274458 external/wpt/audio-output/selectAudioOutput-permissions-policy.https.sub.html [ Failure Pass ]
  5428. crbug.com/1239485 [ Mac ] fast/frames/iframe-plugin-load-remove-document-crash.html [ Failure Pass ]
  5429. # Sheriff 2021-12-01
  5430. crbug.com/1275658 http/tests/misc/script-after-slow-stylesheet-removed.html [ Failure Pass ]
  5431. crbug.com/1275716 [ Mac ] fast/forms/text-control-intrinsic-widths.html [ Failure Pass ]
  5432. # Sheriff 2021-12-02
  5433. crbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-top-left.html [ Skip ]
  5434. crbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-screenx-screeny.html [ Skip ]
  5435. crbug.com/1276201 [ Mac ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-innerheight-innerwidth.html [ Skip ]
  5436. crbug.com/1276201 [ Mac11-arm64 ] external/wpt/html/browsers/the-window-object/open-close/open-features-tokenization-width-height.html [ Skip ]
  5437. crbug.com/1275967 [ Linux ] external/wpt/permissions-policy/permissions-policy-frame-policy-timing.https.sub.html [ Failure Pass ]
  5438. crbug.com/1275944 [ Mac ] http/tests/devtools/sources/debugger-ui/reveal-not-skipped.js [ Failure Pass ]
  5439. crbug.com/1276207 virtual/gpu-rasterization/images/color-profile-image-object-fit.html [ Failure Pass ]
  5440. crbug.com/1276208 [ Mac ] virtual/oopr-canvas2d/fast/canvas/canvas-fillPath-alpha-shadow.html [ Pass Timeout ]
  5441. crbug.com/1276290 [ Mac ] wpt_internal/mediastream/mediastreamtrackprocessor-transfer-to-worker.html [ Skip ]
  5442. # Sheriff 2021-12-03
  5443. crbug.com/1198781 [ Linux ] virtual/scroll-unification-layout_ng_block_frag/fast/forms/fieldset/fieldset-custom-scrollbar.html [ Failure Pass ]
  5444. crbug.com/1277973 http/tests/xmlhttprequest/uri-resolution-opera-open-007.html [ Crash Failure Pass ]
  5445. # Sheriff 2021-12-13
  5446. crbug.com/1279586 [ Mac ] external/wpt/IndexedDB/idbobjectstore-rename-abort.html [ Failure ]
  5447. crbug.com/1159463 crbug.com/1278570 [ Linux ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5448. crbug.com/1159463 crbug.com/1278570 [ Mac11 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5449. crbug.com/1159463 crbug.com/1278570 [ Mac12 ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5450. # Sheriff 2021-12-21
  5451. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.canvas.source-out.html [ Crash Pass ]
  5452. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.clip.xor.html [ Crash Pass ]
  5453. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.operation.darker.html [ Crash Pass ]
  5454. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/compositing/2d.composite.uncovered.pattern.source-in.html [ Crash Pass ]
  5455. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.null.html [ Crash Pass ]
  5456. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-images-to-the-canvas/2d.drawImage.wrongtype.html [ Crash Pass ]
  5457. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.clearRect.path.html [ Crash Pass ]
  5458. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-rectangles-to-the-canvas/2d.fillRect.zero.html [ Crash Pass ]
  5459. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/drawing-text-to-the-canvas/2d.text.draw.fill.maxWidth.large-manual.html [ Crash Pass ]
  5460. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-4.html [ Crash Pass ]
  5461. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.fillStyle.parse.invalid.hsl-5.html [ Crash Pass ]
  5462. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/fill-and-stroke-styles/2d.gradient.object.current.html [ Crash Pass ]
  5463. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.round.html [ Crash Pass ]
  5464. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.cap.square.html [ Crash Pass ]
  5465. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/line-styles/2d.line.miter.obtuse.html [ Crash Pass ]
  5466. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/fill-and-stroke-styles/2d.fillStyle.parse.current.notrendered.html [ Crash Pass ]
  5467. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-drawImage-offscreenCanvas.html [ Crash Pass ]
  5468. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/pixel-manipulation/2d.imageData.get.order.cols.html [ Crash Pass ]
  5469. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/text-styles/2d.text.font.parse.tiny.html [ Crash Pass ]
  5470. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/transformations/2d.transformation.transform.multiply.html [ Crash Pass ]
  5471. crbug.com/1281782 [ Mac ] virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-ImageBitmap-cloned.html [ Pass Timeout ]
  5472. crbug.com/1281782 virtual/no-alloc-direct-call/external/wpt/html/canvas/element/manual/wide-gamut-canvas/canvas-display-p3-drawImage-video.html [ Skip ]
  5473. crbug.com/1281792 external/wpt/event-timing/min-duration-threshold.html [ Failure Pass ]
  5474. crbug.com/1285857 plugins/plugin-destroyed-enumerate.html [ Failure Pass ]
  5475. # Sheriff 2021-12-22
  5476. crbug.com/1179857 [ Linux ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]
  5477. crbug.com/1179857 [ Mac10.13 ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Failure Pass ]
  5478. crbug.com/1179857 [ Win ] http/tests/inspector-protocol/dom/dom-getFrameOwner.js [ Pass Timeout ]
  5479. # Sheriff 2021-12-22
  5480. crbug.com/1283295 [ Mac ] fast/text-autosizing/hackernews-comments.html [ Failure Pass ]
  5481. # Sheriff 2021-12-30
  5482. crbug.com/1229096 [ Win ] fast/scrolling/events/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]
  5483. # Sheriff 2022-01-04
  5484. crbug.com/1283865 external/wpt/webmessaging/without-ports/020.html [ Failure Pass ]
  5485. # Sheriff 2022-01-05
  5486. crbug.com/1284572 virtual/threaded/http/tests/devtools/isolated-code-cache/same-origin-module-test.js [ Failure Pass Timeout ]
  5487. # Incomplete support for mouse wheel in test_driver.
  5488. crbug.com/1285411 external/wpt/css/css-scroll-snap/input/mouse-wheel.html [ Timeout ]
  5489. # Sheriff 2022-01-07
  5490. crbug.com/1285438 fast/layers/clip-rects-transformed.html [ Failure Pass ]
  5491. crbug.com/1285431 [ Mac ] virtual/backface-visibility-interop/compositing/overflow/transform-should-update-absolute-clip-rects.html [ Crash Failure Pass ]
  5492. crbug.com/1285437 virtual/scroll-unification-prefer_compositing_to_lcd_text/fast/scroll-behavior/smooth-scroll/ongoing-smooth-scroll-vertical-rl-anchors.html [ Pass Timeout ]
  5493. crbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-browser-navigate.js [ Crash Failure Pass Timeout ]
  5494. crbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-navigate.js [ Crash Failure Pass Timeout ]
  5495. crbug.com/1285436 virtual/partitioned-cookies/http/tests/inspector-protocol/network/blocked-setcookie-same-site-lax-js-subresource.js [ Crash Failure Pass Timeout ]
  5496. # Sheriff 2022-01-12
  5497. crbug.com/1286619 [ Mac ] external/wpt/storage-access-api/storageAccess.testdriver.sub.html [ Failure Pass ]
  5498. crbug.com/1225606 virtual/sanitizer-api-namespaces/external/wpt/sanitizer-api/sanitizer-names.https.tentative.html [ Failure ]
  5499. # Temporarily disabled to unblock https://crrev.com/c/3657449
  5500. crbug.com/1183990 http/tests/devtools/bindings/bindings-frame-attach-detach.js [ Failure Pass ]
  5501. crbug.com/1183990 http/tests/devtools/bindings/bindings-frame-navigate.js [ Failure Pass ]
  5502. crbug.com/1183990 http/tests/devtools/bindings/bindings-main-frame-navigated.js [ Failure Pass ]
  5503. crbug.com/1183990 http/tests/devtools/bindings/contentscripts-bindings-multiple-frames.js [ Failure Pass ]
  5504. crbug.com/1183990 http/tests/devtools/bindings/contentscripts-navigator-multiple-frames.js [ Failure Pass ]
  5505. crbug.com/1183990 http/tests/devtools/bindings/dynamic-bindings-frame-attach-detach.js [ Failure Pass ]
  5506. crbug.com/1183990 http/tests/devtools/bindings/dynamic-navigator-frame-attach-detach.js [ Failure Pass ]
  5507. crbug.com/1183990 http/tests/devtools/bindings/jssourcemap-bindings-overlapping-sources.js [ Failure Pass ]
  5508. crbug.com/1183990 http/tests/devtools/bindings/jssourcemap-navigator-overlapping-sources.js [ Failure Pass ]
  5509. crbug.com/1183990 http/tests/devtools/bindings/shadowdom-bindings.js [ Failure Pass ]
  5510. crbug.com/1183990 http/tests/devtools/bindings/shadowdom-navigator.js [ Failure Pass ]
  5511. crbug.com/1183990 http/tests/devtools/bindings/sourcemap-bindings-multiple-frames.js [ Failure Pass ]
  5512. crbug.com/1183990 http/tests/devtools/bindings/sourcemap-navigator-multiple-frames.js [ Failure Pass ]
  5513. crbug.com/1183990 http/tests/devtools/bindings/suspendtarget-bindings.js [ Failure Pass ]
  5514. crbug.com/1183990 http/tests/devtools/bindings/suspendtarget-navigator.js [ Failure Pass ]
  5515. crbug.com/1183990 http/tests/devtools/sources/debugger/network-uisourcecode-provider.js [ Failure Pass ]
  5516. crbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-panel.js [ Failure Pass ]
  5517. crbug.com/1183990 http/tests/devtools/sources/debugger-ui/scripts-with-same-source-url.js [ Failure Pass ]
  5518. # Sheriff 2022-01-17
  5519. crbug.com/1233938 http/tests/notifications/click-shared-worker.html [ Pass Timeout ]
  5520. # Temporarily disable test to allow fixing of devtools path escaping
  5521. crbug.com/1094436 http/tests/devtools/overrides/project-added-with-existing-files-bind.js [ Failure Timeout ]
  5522. crbug.com/1256763 virtual/gpu-rasterization/images/color-profile-background-image-cover.html [ Failure Pass ]
  5523. # Sheriff 2022-01-18
  5524. crbug.com/1288264 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/redirect-loop-base-https-other-https.html [ Pass Timeout ]
  5525. crbug.com/1288264 [ Win ] http/tests/fetch/window/thorough/cors-preflight2-base-https-other-https.html [ Pass Timeout ]
  5526. crbug.com/1288264 [ Win ] http/tests/fetch/serviceworker/thorough/nocors-base-https-other-https.html [ Pass Timeout ]
  5527. crbug.com/1288264 [ Win ] http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html [ Pass Timeout ]
  5528. # Flakiness of WIP MediaStreamTrack on workers.
  5529. crbug.com/1290767 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-pipes-data-in-worker.https.html [ Crash Pass ]
  5530. crbug.com/1290976 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-shared-worker.https.html [ Crash Pass ]
  5531. crbug.com/1291850 external/wpt/mediacapture-insertable-streams/MediaStreamTrackGenerator-in-service-worker.https.html [ Crash Pass ]
  5532. # Temporarily disable tests to land branded types related changes.
  5533. crbug.com/1253323 [ Win ] http/tests/devtools/sources/debugger-breakpoints/nodejs-set-breakpoint.js [ Skip ]
  5534. crbug.com/1253323 http/tests/devtools/persistence/automapping-urlencoded-paths.js [ Skip ]
  5535. crbug.com/1253323 http/tests/devtools/sources/debugger/navigator-view.js [ Skip ]
  5536. # Sheriff 2022-01-26
  5537. crbug.com/1290978 [ Win ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]
  5538. crbug.com/1290978 [ Mac ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]
  5539. crbug.com/1290978 [ Linux ] external/wpt/css/CSS2/normal-flow/crashtests/block-in-inline-ax-crash.html [ Crash Failure Pass Timeout ]
  5540. # Sheriff 2022-02-01
  5541. # Flaky test on Mac
  5542. crbug.com/1292843 [ Mac ] external/wpt/css/css-transforms/animation/perspective-origin-interpolation.html [ Failure Pass ]
  5543. crbug.com/1292844 [ Mac ] external/wpt/css/css-writing-modes/alt-display-vertical-001-manual.html [ Failure Pass ]
  5544. crbug.com/1292865 [ Mac ] external/wpt/resource-timing/iframe-sequence-of-events.html [ Failure Pass ]
  5545. crbug.com/1292869 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/audioparam-cancel-and-hold.html [ Failure Pass ]
  5546. crbug.com/1292871 [ Mac ] external/wpt/webaudio/the-audio-api/the-audioparam-interface/k-rate-dynamics-compressor-connections.html [ Failure Pass ]
  5547. crbug.com/1292873 [ Mac ] html/selectmenu/selectmenu-slot-warning-button.html [ Failure Pass ]
  5548. crbug.com/1292874 [ Mac ] html/selectmenu/selectmenu-slot-warning-listbox.html [ Failure Pass ]
  5549. crbug.com/1292876 [ Mac ] http/tests/devtools/console/console-time.js [ Failure Pass ]
  5550. crbug.com/1038139 [ Linux ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]
  5551. crbug.com/1038139 [ Mac ] virtual/gpu-rasterization/images/2-comp.html [ Failure Pass ]
  5552. crbug.com/1309664 virtual/no-forced-frame-updates/external/wpt/html/dom/render-blocking/render-blocked-apis-by-preload-link.tentative.html [ Failure ]
  5553. # Sheriff 2022-02-08
  5554. crbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-fixed-scrolling.html [ Failure ]
  5555. crbug.com/1295317 [ Mac11-arm64 ] compositing/geometry/video-opacity-overlay.html [ Failure ]
  5556. crbug.com/1295317 [ Mac11-arm64 ] compositing/video/video-controls-squashing.html [ Failure ]
  5557. crbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video-seek.html [ Failure ]
  5558. crbug.com/1295317 [ Mac11-arm64 ] media/color-profile-video.html [ Failure ]
  5559. crbug.com/1295317 [ Mac11-arm64 ] media/controls/video-overlay-cast-light-rendering.html [ Failure ]
  5560. crbug.com/1295317 [ Mac11-arm64 ] media/video-zoom.html [ Failure ]
  5561. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/2-comp.html [ Failure ]
  5562. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-jpeg-with-color-profile.html [ Failure ]
  5563. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-background-image-cover.html [ Failure ]
  5564. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-border-image.html [ Failure ]
  5565. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-canvas-svg.html [ Failure ]
  5566. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-filter-all.html [ Failure ]
  5567. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-object-fit.html [ Failure ]
  5568. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/color-profile-image-svg-resource-url.html [ Failure ]
  5569. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-canvas.html [ Failure ]
  5570. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/jpeg-yuv-progressive-image.html [ Failure ]
  5571. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/motion-jpeg-single-frame.html [ Failure ]
  5572. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/png-with-color-profile.html [ Failure ]
  5573. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-jpeg-with-adobe-marker-only.html [ Failure ]
  5574. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/webp-color-profile-lossless.html [ Failure ]
  5575. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-border-radius.html [ Failure ]
  5576. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]
  5577. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image-profile-match.html [ Failure ]
  5578. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-image.html [ Failure ]
  5579. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer-filter.html [ Failure ]
  5580. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/color-profile-layer.html [ Failure ]
  5581. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/jpeg-missing-eoi.html [ Failure ]
  5582. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-color-profile-lossy.html [ Failure ]
  5583. crbug.com/1295317 [ Mac11-arm64 ] virtual/exotic-color-space/images/yuv-decode-eligible/webp-no-color-profile-lossy.html [ Failure ]
  5584. crbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/color-profile-border-image.html [ Failure ]
  5585. crbug.com/1295317 [ Mac11-arm64 ] virtual/gpu-rasterization/images/yuv-decode-eligible/color-profile-filter.html [ Failure ]
  5586. crbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-colorspace-hw.html [ Failure ]
  5587. crbug.com/1295317 [ Mac11-arm64 ] virtual/scalefactor200/css3/filters/effect-reference-hw.html [ Failure ]
  5588. # Sheriff 2022-02-09
  5589. crbug.com/1295707 http/tests/devtools/elements/elements-treeoutline-copy.js [ Failure Pass ]
  5590. # Disable to skip performance test caused by potential O(n^2) problem in AXObjectCacheImpl::ChildrenChanged
  5591. crbug.com/1293714 external/wpt/css/selectors/invalidation/has-complexity.html [ Skip ]
  5592. # Sheriff 2022-02-16
  5593. crbug.com/1297416 [ Mac Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]
  5594. crbug.com/1297416 [ Linux Release ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]
  5595. crbug.com/1297416 [ Release Win10.20h2 ] virtual/fenced-frame-shadow-dom/http/tests/fenced_frame/coop-bcg-swap-rendering.https.html [ Failure Pass ]
  5596. # Sheriff 2022-02-22
  5597. crbug.com/1299858 [ Win ] http/tests/fetch/serviceworker-proxied/thorough/nocors-base-https-other-https.html [ Pass Timeout ]
  5598. crbug.com/1299858 [ Win ] http/tests/fetch/serviceworker/thorough/redirect-nocors-base-https-other-https.html [ Pass Timeout ]
  5599. crbug.com/1299858 [ Win ] http/tests/fetch/window/thorough/cors-base-https-other-https.html [ Pass Timeout ]
  5600. crbug.com/1299858 [ Win ] http/tests/fetch/workers/thorough/cookie-nocors-base-https-other-https.html [ Pass Timeout ]
  5601. crbug.com/1299948 [ Mac ] external/wpt/css/css-tables/crashtests/textarea-intrinsic-size-crash.html [ Pass Timeout ]
  5602. crbug.com/1299972 [ Linux ] screen_orientation/screenorientation-unsupported-no-crash.html [ Failure Pass Timeout ]
  5603. # Disable flaky test for further investigation
  5604. crbug.com/1229801 http/tests/devtools/elements/css-rule-hover-highlights-selectors.js [ Failure Pass ]
  5605. # Sheriff 2022-03-01
  5606. crbug.com/1302043 [ Linux ] virtual/plz-dedicated-worker/external/wpt/resource-timing/object-not-found-after-cross-origin-redirect.html [ Pass Timeout ]
  5607. # Sheriff 2022-03-03
  5608. crbug.com/1302571 virtual/threaded/http/tests/devtools/isolated-code-cache/cross-origin-test.js [ Skip ]
  5609. # Sheriff 2022-03-04
  5610. crbug.com/1302856 [ Mac11-arm64 ] virtual/exotic-color-space/images/rgb-png-with-cmyk-color-profile.html [ Failure Pass ]
  5611. crbug.com/1298836 external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]
  5612. crbug.com/1298836 virtual/plz-dedicated-worker/external/wpt/fetch/api/basic/response-null-body.any.* [ Failure Pass ]
  5613. # Anonymous iframe:
  5614. #------------------
  5615. #
  5616. # Anonymous iframe > CacheStorage:
  5617. # From two same-origin-different-partition context, the second `cache.put`
  5618. # request hangs indefinitely.
  5619. crbug.com/1285275 external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]
  5620. crbug.com/1285275 virtual/fenced-frame-mparch/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]
  5621. crbug.com/1285275 virtual/fenced-frame-shadow-dom/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]
  5622. crbug.com/1285275 virtual/partitioned-cookies/external/wpt/html/anonymous-iframe/cache-storage.tentative.https.window.html [ Pass Timeout ]
  5623. # Sheriff 2022-03-10
  5624. crbug.com/1304956 storage/indexeddb/dont-wedge.html [ Failure Pass ]
  5625. # Sheriff 2022-03-15
  5626. crbug.com/626703 external/wpt/scroll-to-text-fragment/force-load-at-top.html [ Pass Timeout ]
  5627. crbug.com/1269534 fast/spatial-navigation/snav-zero-margin-content.html [ Failure Pass ]
  5628. crbug.com/1295980 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]
  5629. crbug.com/1295980 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/user-activation.https.html [ Failure Pass Timeout ]
  5630. crbug.com/1298633 http/tests/inspector-protocol/network/cross-origin-isolation/coep-load-error-reporting-worker.js [ Pass Timeout ]
  5631. # Sheriff 2022-03-18
  5632. crbug.com/1290040 external/wpt/service-workers/service-worker/same-site-cookies.https.html [ Skip ]
  5633. # WebAudio flaky timeout (crbug.com/1307741)
  5634. crbug.com/1307741 [ Mac ] external/wpt/webaudio/the-audio-api/the-mediastreamaudiosourcenode-interface/mediastreamaudiosourcenode-routing.html [ Timeout ]
  5635. crbug.com/1307741 webaudio/AudioParam/audioparam-k-rate.html [ Timeout ]
  5636. # WebAudio internals flaky GC (crbug.com/1312164)
  5637. crbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-wrapper.html [ Skip ]
  5638. crbug.com/1312164 webaudio/internals/scriptprocessornode-premature-death.html [ Skip ]
  5639. crbug.com/1312164 webaudio/internals/audiocontext-close.html [ Skip ]
  5640. crbug.com/1312164 webaudio/internals/mediaelementaudiosourcenode-gc.html [ Skip ]
  5641. crbug.com/1312164 webaudio/internals/audiocontext-gc.html [ Skip ]
  5642. # Sheriff 2022-03-21: More flaky tests.
  5643. crbug.com/1272376 [ Mac ] plugins/plugin-document-back-forward.html [ Failure Pass ]
  5644. # Tests that need updates due to rounding math in layout
  5645. crbug.com/1309975 http/tests/devtools/console/console-viewport-indices.js [ Failure ]
  5646. crbug.com/1309975 http/tests/devtools/console/viewport-testing/console-stick-to-bottom-expand-object.js [ Failure ]
  5647. # Sheriff 2022-03-23: More flaky tests.
  5648. crbug.com/1309483 [ Win ] virtual/gpu-rasterization/images/directly-composited-image-orientation.html [ Failure Pass ]
  5649. crbug.com/1309633 [ Mac ] external/wpt/FileAPI/url/url-lifetime.html [ Failure ]
  5650. # Sheriff 2022-03-24
  5651. crbug.com/1309756 http/tests/images/force-reload.html [ Skip ]
  5652. crbug.com/1309756 [ Mac11-arm64 ] http/tests/images/force-reload-image-document.html [ Skip ]
  5653. # Sheriff 2022-03-25
  5654. crbug.com/1197296 [ Linux ] virtual/unified-autoplay/external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]
  5655. crbug.com/1197296 [ Linux ] external/wpt/feature-policy/feature-policy-frame-policy-timing.https.sub.html [ Failure Pass ]
  5656. # Sheriff 2022-03-28
  5657. crbug.com/1311015 [ Mac ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]
  5658. crbug.com/1311015 [ Win ] external/wpt/paint-timing/fcp-only/fcp-document-opacity-image.html [ Failure Pass ]
  5659. crbug.com/1311128 external/wpt/paint-timing/fcp-only/fcp-document-opacity-text.html [ Skip ]
  5660. # Navigation API incorrectly leaves promises forever unsettled (crbug.com/1311786)
  5661. crbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-parent.html [ Skip ]
  5662. crbug.com/1311786 external/wpt/navigation-api/navigation-methods/sandboxing-back-sibling.html [ Skip ]
  5663. # Scroll Unification known issues (go/su-web-tests) for enabling in test:
  5664. crbug.com/1311431 [ Mac ] fast/scroll-behavior/overscroll-behavior.html [ Failure Pass ]
  5665. crbug.com/1248581 fast/scrolling/resize-corner-tracking-touch.html [ Failure Pass ]
  5666. crbug.com/1312036 virtual/hidpi/fast/scrolling/scrollbars/dsf-ready/mouse-interactions-dsf-2.html [ Failure Pass ]
  5667. # These tests fail on SwiftShader FEMU due to a change in log/exp implementation.
  5668. crbug.com/1311456 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit.html [ Skip ]
  5669. crbug.com/1311456 [ Fuchsia ] tables/mozilla/core/bloomberg.html [ Skip ]
  5670. # Sheriff 2022-04-01
  5671. crbug.com/1312266 [ Mac10.13 ] external/wpt/preload/preload-time-to-fetch.https.html [ Failure ]
  5672. # Sheriff 2022-04-05
  5673. crbug.com/1203491 [ Linux ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]
  5674. crbug.com/1203491 [ Win ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]
  5675. crbug.com/1313282 inspector-protocol/input/dispatchMouseEvent.js [ Failure Pass Timeout ]
  5676. crbug.com/1095540 [ Mac ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/resize-corner-tracking-touch.html [ Skip ]
  5677. crbug.com/1254163 [ Mac10.13 ] ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling.htm [ Failure ]
  5678. crbug.com/1313396 [ Linux ] external/wpt/dom/events/Event-dispatch-on-disabled-elements.html [ Failure Pass ]
  5679. crbug.com/1194945 external/wpt/dom/events/scrolling/overscroll-event-fired-to-scrolled-element.html [ Failure Pass ]
  5680. crbug.com/1244896 fast/mediacapturefromelement/CanvasCaptureMediaStream-set-size-too-large.html [ Failure Pass Timeout ]
  5681. # Sheriff 2022-04-06
  5682. crbug.com/1290670 [ Mac10.14 ] external/wpt/webrtc/RTCPeerConnection-mandatory-getStats.https.html [ Failure Pass ]
  5683. crbug.com/1313894 [ Mac10.14 ] rootscroller/root-scroller-paint-order.html [ Failure Pass ]
  5684. crbug.com/1314130 [ Mac ] fast/events/touch/gesture/touch-gesture-scroll-listbox.html [ Failure Pass ]
  5685. # Sheriff 2022-04-07
  5686. crbug.com/1314314 virtual/percent-based-scrolling/fast/scrolling/scrollbars/mouse-autoscrolling-on-deleted-scrollbar.html [ Skip ]
  5687. crbug.com/1314323 [ Win ] virtual/compositor-threaded-percent-based-scrolling/fast/scrolling/wheel-scrolling-over-custom-scrollbar.html [ Skip ]
  5688. crbug.com/1313970 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure ]
  5689. # Sheriff 2022-04-08
  5690. crbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]
  5691. crbug.com/1314514 [ Mac ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]
  5692. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-image.html [ Failure Pass ]
  5693. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-image.html [ Failure Pass ]
  5694. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-tiled-gradient.html [ Failure Pass ]
  5695. crbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode.html [ Failure Pass ]
  5696. crbug.com/1314514 [ Win ] css3/blending/effect-background-blend-mode-tiled.html [ Failure Pass ]
  5697. crbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-1.html [ Failure Pass ]
  5698. crbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-2.html [ Failure Pass ]
  5699. crbug.com/1314514 [ Win ] css3/blending/mix-blend-mode-isolated-group-3.html [ Failure Pass ]
  5700. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-gradient.html [ Failure Pass ]
  5701. # Sheriff 2022-04-11
  5702. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-image-color.html [ Failure Pass ]
  5703. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-crossfade-image-gradient.html [ Failure Pass ]
  5704. crbug.com/1314514 [ Win ] css3/blending/background-blend-mode-gradient-color.html [ Failure Pass ]
  5705. # Sheriff 2022-04-12
  5706. crbug.com/1315300 [ Linux ] http/tests/devtools/elements/styles-3/styles-disable-inherited.js [ Failure Pass ]
  5707. # HighlightOverlayPainting: decoration painting hasn’t landed yet.
  5708. crbug.com/1147859 virtual/css-highlight-overlay-painting/wpt_internal/css/css-pseudo/target-text-001.html [ Failure ]
  5709. crbug.com/1316341 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]
  5710. crbug.com/1316341 virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/script-focus.https.html [ Failure Pass Timeout ]
  5711. # Sheriff 2022-04-18, failing on Mac and WebKit Win10 builders.
  5712. crbug.com/1317007 external/wpt/mimesniff/mime-types/charset-parameter.window.html [ Failure Pass ]
  5713. # Sheriff 2022-04-18
  5714. # TODO(crbug.com/1316144): [Crash] Re-enable this test
  5715. # TODO(crbug.com/1334265): [Failure] Bug fix temporarily reverted while compat issues are worked out
  5716. crbug.com/1316144 external/wpt/css/cssom-view/scrollIntoView-fixed.html [ Crash Failure Pass ]
  5717. crbug.com/1296449 [ Linux Release ] external/wpt/workers/SharedWorker-MessageEvent-source.any.sharedworker.html [ Skip ]
  5718. # Sheriff 2022-04-20
  5719. crbug.com/1253971 [ Mac ] external/wpt/html/semantics/forms/the-selectmenu-element/selectmenu-parts-structure.tentative.html [ Timeout ]
  5720. # Sheriff 2022-04-21
  5721. crbug.com/1318318 external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]
  5722. crbug.com/1318318 virtual/plz-dedicated-worker/external/wpt/fetch/private-network-access/service-worker-background-fetch.https.window.html [ Failure Pass Timeout ]
  5723. crbug.com/1318561 [ Linux ] external/wpt/x-frame-options/get-decode-split.html [ Failure Pass ]
  5724. # Temp disable MST transfer tests until Browser feature can be enabled in tests
  5725. crbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]
  5726. crbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Skip ]
  5727. crbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]
  5728. crbug.com/1288839 virtual/feature-policy-permissions/external/wpt/mediacapture-streams/MediaStreamTrack-transfer-video.https.html [ Skip ]
  5729. crbug.com/1288839 external/wpt/mediacapture-streams/MediaStreamTrack-transfer.https.html [ Skip ]
  5730. # Explicit PASS expectation for the virtual suite, to stop it inheriting "Skip".
  5731. crbug.com/1288839 virtual/mediastreamtrack-transfer/external/wpt/mediacapture-streams/MediaStreamTrack-iframe-transfer.https.html [ Pass ]
  5732. # Sheriff 2022-04-22
  5733. crbug.com/1318695 http/tests/devtools/elements/highlight/highlight-multiple-css-grid.js [ Failure Pass ]
  5734. crbug.com/1318929 http/tests/devtools/console/console-uncaught-promise.js [ Failure Pass ]
  5735. crbug.com/1282966 http/tests/security/mixedContent/insecure-plugin-in-iframe.html [ Failure Pass ]
  5736. crbug.com/1318952 http/tests/inspector-protocol/fetch/fetch-samesite-cookies.js [ Failure Pass ]
  5737. # Imported WPT crashes on desktop platforms
  5738. crbug.com/1318456 [ Linux ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]
  5739. crbug.com/1318456 [ Mac ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]
  5740. crbug.com/1318456 [ Win ] virtual/prerender/external/wpt/speculation-rules/prerender/opt-out.html [ Crash Skip Timeout ]
  5741. # Sheriff 2022-04-25
  5742. crbug.com/1319320 rootscroller/root-scroller-apply-filter-to-parent.html [ Failure Pass ]
  5743. # Sheriff 2022-04-25
  5744. crbug.com/1319808 virtual/wbn-from-network/external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Skip ]
  5745. # Sheriff 2022-04-26
  5746. crbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]
  5747. crbug.com/1320140 [ Win ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]
  5748. crbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/disallowed-navigations.https.html [ Pass Timeout ]
  5749. crbug.com/1320140 [ Win ] virtual/fenced-frame-shadow-dom/wpt_internal/fenced_frame/opaque-ad-sizes.https.html [ Pass Timeout ]
  5750. crbug.com/1288741 external/wpt/scroll-to-text-fragment/find-range-from-text-directive.html [ Pass Timeout ]
  5751. # Sheriff 2022-04-28
  5752. crbug.com/1289759 [ Linux ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]
  5753. crbug.com/1289759 [ Win ] http/tests/loading/slow-parsing-subframe.html [ Failure Pass ]
  5754. crbug.com/1137003 fast/dom/timer-throttling-background-page-near-alignment-interval.html [ Failure Pass ]
  5755. # Sheriff 2022-04-29
  5756. crbug.com/1321243 accessibility/aom-reparenting-crash.html [ Pass Timeout ]
  5757. # Sheriff 2022-05-02
  5758. crbug.com/1321293 fast/forms/calendar-picker/week-picker-choose-default-value-after-set-value.html [ Failure Pass ]
  5759. # Test expectations for Win11
  5760. crbug.com/1295890 [ Win11 ] fast/dom/HTMLScriptElement/script-sync-load-failure.html [ Skip Timeout ]
  5761. crbug.com/1295890 [ Win11 ] http/tests/eventsource/eventsource-cors-no-server.html [ Skip Timeout ]
  5762. crbug.com/1295890 [ Win11 ] http/tests/eventsource/workers/eventsource-cors-no-server.html [ Skip Timeout ]
  5763. crbug.com/1295890 [ Win11 ] http/tests/security/document-domain-canonicalizes-iframe.html [ Skip Timeout ]
  5764. crbug.com/1322405 external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]
  5765. crbug.com/1322405 virtual/plz-dedicated-worker/external/wpt/fetch/metadata/generated/window-history.https.sub.html [ Pass Timeout ]
  5766. # Sheriff 2022-05-06
  5767. crbug.com/1322072 external/wpt/fetch/content-type/script.window.html [ Failure Pass ]
  5768. crbug.com/1286883 [ Mac ] fast/canvas/OffscreenCanvas-Bitmaprenderer-toBlob.html [ Failure Pass ]
  5769. # Sheriff 2022-05-11
  5770. crbug.com/1324428 fast/webgl/canvas-toDataURL-crash.html [ Crash Pass ]
  5771. # Throttling a hidden-cross origin frame may stall animations.
  5772. crbug.com/1323246 external/wpt/web-animations/timing-model/timelines/sibling-iframe-timeline.html [ Failure Pass ]
  5773. # Sheriff 2022-05-16
  5774. crbug.com/1325858 virtual/wasm-code-caching/http/tests/wasm/caching/code-cache.html [ Skip ]
  5775. # introduce blink_wpt_tests
  5776. crbug.com/1299834 [ Win ] wpt_internal/html/interaction/focus/the-autofocus-attribute/object-fallback.html [ Timeout ]
  5777. crbug.com/1299834 external/wpt/css/css-pseudo/first-letter-with-quote.html [ Failure ]
  5778. # Remove from virtual tests when ReduceAcceptLanguage is turned on by default.
  5779. crbug.com/1307484 http/tests/serviceworker/reduce-accept-language/fetch-event-headers.html [ Skip ]
  5780. crbug.com/1307484 navigator_language/reduce_accept_language/* [ Skip ]
  5781. # Sheriff 2022-05-20
  5782. crbug.com/1291841 external/wpt/scroll-to-text-fragment/scroll-to-text-fragment-security.sub.html [ Pass Timeout ]
  5783. crbug.com/1327764 inspector-protocol/overlay/overlay-persistent-overlays.js [ Failure Pass ]
  5784. # Sheriff 2022-05-26
  5785. crbug.com/1329596 virtual/gpu-rasterization/images/jpeg-with-non-interleaved-dc-channels.html [ Failure Pass ]
  5786. # Sheriff 2022-05-30
  5787. crbug.com/1330238 [ Mac ] http/tests/devtools/elements/styles-3/styles-computed-trace.js [ Failure Pass Timeout ]
  5788. # Sheriff 2022-05-31
  5789. crbug.com/1330555 external/wpt/service-workers/service-worker/resource-timing-fetch-variants.https.html [ Failure Pass ]
  5790. # fast/canvas/OffscreenCanvas-2d-drawImage.html
  5791. crbug.com/1273409 [ Mac11 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]
  5792. crbug.com/1273409 [ Mac11-arm64 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]
  5793. crbug.com/1273409 [ Linux ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]
  5794. crbug.com/1273409 [ Win10.20h2 ] fast/canvas/OffscreenCanvas-2d-drawImage.html [ Failure Pass ]
  5795. # Sheriff 2022-06-08
  5796. crbug.com/1229084 [ Linux ] external/wpt/storage-access-api/requestStorageAccess.sub.window.html [ Failure Pass ]
  5797. crbug.com/1229084 [ Win ] external/wpt/storage-access-api/requestStorageAccess.sub.window.html [ Failure Pass ]
  5798. # Flaky on multiple platforms
  5799. crbug.com/1277696 fast/loader/reload-zero-byte-plugin.html [ Failure Pass ]
  5800. # Flaky on Windows
  5801. crbug.com/1316343 [ Win ] external/wpt/web-bundle/subresource-loading/reuse-web-bundle-resource.https.tentative.html [ Failure ]
  5802. # Manual test fails when run under automation due to lack of pop-up blocking. https://github.com/web-platform-tests/wpt/issues/3867
  5803. crbug.com/1337125 external/wpt/window-placement/fullscreen-companion-window-manual.tentative.https.html [ Failure ]
  5804. # Temporarily disable test to merge 'reveal' button change to adorner
  5805. crbug.com/1066772 http/tests/devtools/elements/shadow/shadow-slot-assignment.js [ Skip ]
  5806. # Flaky on multiple platforms
  5807. crbug.com/1338536 http/tests/devtools/oopif/oopif-elements-nesting.js [ Failure Pass ]
  5808. # Tests that compare a float color to an integer color can suffer off-by-one errors
  5809. # There is no mechanism for fuzzing reference tests outside of WPT and tests that require internals cannot be in WPT
  5810. # When the scrollbarOverlay is moved to float color these can be re-enabled
  5811. crbug.com/1308932 compositing/overflow/reparented-overlay-scrollbars-should-respect-ancestor-clip.html [ Failure ]
  5812. crbug.com/1308932 compositing/overflow/reparented-unclipped-overlay-scrollbars-with-offset-from-renderer.html [ Failure ]
  5813. crbug.com/1308932 compositing/squashing/squashing-inside-perspective-with-reparented-scrolling.html [ Failure ]
  5814. crbug.com/1308932 fast/scrolling/overlay-scrollbars.html [ Failure ]
  5815. crbug.com/1308932 scrollbars/overlay-scrollbar-over-child-layer-nested-4.html [ Failure ]
  5816. crbug.com/1308932 compositing/overflow/non-reparented-overlay-scrollbars.html [ Failure ]
  5817. crbug.com/1308932 scrollbars/auto-scrollbar-fades-out.html [ Failure ]
  5818. crbug.com/1308932 scrollbars/overlay-scrollbars-within-overflow-scroll.html [ Failure ]
  5819. # Sheriff 2022-06-24
  5820. crbug.com/1339211 [ Mac ] external/wpt/css/css-text-decor/text-decoration-thickness-fixed.html [ Failure Pass ]
  5821. crbug.com/1339214 [ Mac ] external/wpt/webaudio/the-audio-api/the-convolvernode-interface/realtime-conv.html [ Failure Pass ]
  5822. crbug.com/1339293 [ Linux ] http/tests/devtools/network/network-initiator.js [ Failure Pass ]
  5823. crbug.com/1339293 [ Linux ] external/wpt/html/semantics/embedded-content/the-img-element/invisible-image.html [ Failure Pass ]
  5824. crbug.com/1339293 [ Linux ] virtual/threaded/external/wpt/requestidlecallback/deadline-max-rAF-dynamic.html [ Failure Pass ]
  5825. crbug.com/webrtc/14228 external/wpt/webrtc/protocol/h264-profile-levels.https.html [ Failure Pass ]
  5826. [ Debug ] external/wpt/scroll-animations/scroll-timelines/set-current-time-before-play.html [ Skip ]
  5827. external/wpt/html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-invoke-insert-source-networkState.html [ Skip ]
  5828. # Sheriff 2022-06-29
  5829. crbug.com/1340421 [ Mac10.15 ] virtual/gpu-rasterization/images/color-profile-svg-foreign-object.html [ Skip ]
  5830. crbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/image-object-in-canvas.html [ Skip ]
  5831. crbug.com/1340421 [ Mac10.15 ] virtual/oopr-canvas2d/fast/canvas/quadraticCurveTo.xml [ Skip ]
  5832. crbug.com/1340716 [ Linux ] accessibility/notification-listeners.html [ Skip ]
  5833. # Sheriff 2022-06-30
  5834. crbug.com/1340781 fullscreen/full-screen-table-section.html [ Skip ]
  5835. # Sheriff 2022-07-05
  5836. crbug.com/1340763 external/wpt/pointerevents/pointerevent_capture_mouse.html [ Failure Pass ]
  5837. crbug.com/1341090 external/wpt/webmessaging/with-ports/021.html [ Failure Pass ]
  5838. crbug.com/1341090 external/wpt/webmessaging/without-ports/021.html [ Failure Pass ]
  5839. # Sheriff 2022-07-07
  5840. crbug.com/1339538 [ Mac ] fast/frames/002.html [ Failure Pass ]
  5841. crbug.com/1339538 [ Linux ] fast/frames/002.html [ Failure Pass ]
  5842. crbug.com/1339538 [ Win10.20h2 ] fast/frames/002.html [ Failure Pass ]
  5843. crbug.com/1097040 media/controls/overflow-menu-always-visible.html [ Failure Pass ]
  5844. crbug.com/1342526 external/wpt/dom/events/non-cancelable-when-passive/non-passive-wheel-event-listener-on-body.html [ Failure Pass ]
  5845. # Sheriff 2022-07-08
  5846. crbug.com/1180274 virtual/plz-dedicated-worker/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]
  5847. crbug.com/1180274 virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]
  5848. crbug.com/1180274 virtual/first-party-sets/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]
  5849. crbug.com/1180274 virtual/partitioned-cookies/http/tests/inspector-protocol/network/navigate-iframe-out2in.js [ Skip ]
  5850. # Sheriff 2022-07-12
  5851. crbug.com/1343674 [ Linux ] editing/deleting/460938.html [ Failure Pass ]
  5852. crbug.com/1343664 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-document.html [ Failure Pass ]
  5853. # Disable test to land a MSE change. Spec change (MSE PR#306) is still pending,
  5854. # and once landed, this line can be removed.
  5855. crbug.com/878133 external/wpt/media-source/idlharness.window.html [ Failure Pass ]
  5856. # Tests that are exercising the tentative feature COOP: restrict-properties.
  5857. # These are tests which are implemented before the feature is complete and
  5858. # flakily crash.
  5859. crbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?1-2 [ Crash Failure ]
  5860. crbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?3-4 [ Crash Failure ]
  5861. crbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?5-6 [ Crash Failure ]
  5862. crbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?7-8 [ Crash Failure ]
  5863. crbug.com/1221127 virtual/coop-restrict-properties/external/wpt/html/cross-origin-opener-policy/tentative/restrict-properties/iframe-popup-to-un.https.html?9-last [ Crash Failure ]
  5864. # Sheriff 2022-07-13
  5865. crbug.com/1204176 [ Linux ] fast/scrolling/overflow-scrollability.html [ Failure Pass ]
  5866. crbug.com/1344175 [ Mac12 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-root.html [ Failure Pass ]
  5867. # Sheriff 2022-07-15
  5868. crbug.com/1344652 [ Mac ] external/wpt/webmessaging/with-ports/020.html [ Failure Pass ]
  5869. crbug.com/1344771 virtual/force-defer-script/external/wpt/html/semantics/scripting-1/the-script-element/defer-script/document-write.html [ Failure Pass ]
  5870. # Sheriff 2022-07-18
  5871. crbug.com/1345192 accessibility/aria-combo-box-with-delay-add.html [ Skip ]
  5872. crbug.com/1345235 external/wpt/content-security-policy/style-src/stylehash-basic-blocked.sub.html [ Skip ]
  5873. crbug.com/1334674 [ Mac11 ] http/tests/devtools/oopif/oopif-presentation-console-messages.js [ Failure Pass ]
  5874. # Sheriff 2022-07-19
  5875. crbug.com/1345745 virtual/async-script-scheduling-first-paint-or-finished-parsing/wpt_internal/async-script-scheduling/execution-order.html [ Skip ]
  5876. # Sheriff 2022-07-21
  5877. crbug.com/1346158 crbug.com/1346158 external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-window.html [ Failure Pass ]
  5878. # Sheriff 2022-07-25
  5879. crbug.com/1343935 [ Mac10.15 ] external/wpt/dom/events/non-cancelable-when-passive/non-passive-mousewheel-event-listener-on-body.html [ Failure Pass ]
  5880. # Sheriff 2022-07-26
  5881. crbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-links.html [ Skip ]
  5882. crbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-not-propagated-by-out-of-flow.html [ Skip ]
  5883. crbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style-inherit-simple-underlines.html [ Skip ]
  5884. crbug.com/1347459 [ Fuchsia ] fast/css3-text/css3-text-decoration/text-decoration-style.html [ Skip ]
  5885. # Sheriff 2022-07-28
  5886. crbug.com/1348053 [ Mac12 ] virtual/scroll-unification/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]
  5887. # Flaky timeouts on WebKit Linux MSAN
  5888. crbug.com/1348118 [ Linux ] virtual/partitioned-cookies-first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]
  5889. # Failure on all platforms was added before, see crbug.com/1306770
  5890. crbug.com/1348118 http/tests/inspector-protocol/network/interception-download.js [ Failure Pass Timeout ]
  5891. crbug.com/1348118 [ Linux ] virtual/first-party-sets/http/tests/inspector-protocol/network/interception-download.js [ Pass Timeout ]
  5892. # See crbug.com/1344277 for Crash and Failure
  5893. crbug.com/1348118 [ Linux ] wpt_internal/webxr/ar/ar_light_estimation.https.html [ Crash Failure Pass Timeout ]
  5894. crbug.com/1348275 [ Mac12-arm64 ] virtual/scroll-unification/fast/scrolling/inertial-scrolling-with-pointer-events-none-overlay.html [ Failure Pass ]
  5895. # Sheriff 2022-07-29 - Flaky failure.
  5896. crbug.com/1347675 virtual/fenced-frame-mparch/wpt_internal/fenced_frame/fragment-navigation.https.html [ Pass Timeout ]
  5897. # Sheriff 2022-08-01
  5898. # TODO(crbug.com/1225773): Re-enable this test
  5899. crbug.com/1225773 [ Linux ] external/wpt/html/webappapis/scripting/processing-model-2/unhandled-promise-rejections/promise-rejection-event-during-parse.html [ Skip ]
  5900. # Flaky timeouts on WebKit Linux MSAN
  5901. crbug.com/1218100 [ Linux ] external/wpt/IndexedDB/idb-partitioned-coverage.tentative.sub.html [ Pass Timeout ]
  5902. # Sheriff 2022-08-03
  5903. crbug.com/1349910 [ Mac ] external/wpt/html/semantics/popups/popup-hover-hide.tentative.html [ Failure Pass ]
  5904. # Sheriff 2022-08-06
  5905. crbug.com/1350336 [ Mac ] virtual/fenced-frame-mparch/wpt_internal/fenced_frame/visual-viewport.https.html [ Failure Pass ]
  5906. crbug.com/1350337 [ Linux ] external/wpt/web-locks/query-ordering.tentative.https.html [ Failure Pass ]
  5907. crbug.com/1350341 [ Linux ] virtual/threaded-no-composited-antialiasing/animations/direction-and-fill/fill-mode-missing-from-to-keyframes.html [ Failure Pass ]
  5908. # These seem to consistently fail with disabling code cache.
  5909. crbug.com/1351903 http/tests/devtools/network/font-face.js [ Failure Pass ]
  5910. crbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-ad-fixed-position.html [ Failure Pass ]
  5911. crbug.com/1351903 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-image-ad-fixed-position.html [ Failure Pass ]
  5912. # Sheriff 2022-08-11
  5913. # Most likely a forced style/layout update from accessibiity while we are
  5914. # render blocking, which should not happen.
  5915. crbug.com/1351811 external/wpt/css/css-transitions/no-transition-from-ua-to-blocking-stylesheet.html [ Failure Pass ]
  5916. # Flakes on all platforms.
  5917. crbug.com/1310202 [ Fuchsia ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]
  5918. crbug.com/1310202 [ Linux ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]
  5919. crbug.com/1310202 [ Mac ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]
  5920. crbug.com/1310202 [ Win ] wpt_internal/navigation-api/ordering-and-transition/navigate-cross-document-double.html [ Failure Pass Timeout ]
  5921. # Sheriff 2022-08-12
  5922. crbug.com/1352248 virtual/disable-frequency-capping-for-overlay-popup-detection/http/tests/subresource_filter/overlay_popup_ad/overlay-popup-non-ad-followed-by-ad.html [ Failure Pass ]
  5923. crbug.com/1352543 [ Linux ] http/tests/devtools/elements/styles-3/styles-disable-then-delete.js [ Failure Pass ]
  5924. crbug.com/1352545 [ Linux ] external/wpt/html/cross-origin-opener-policy/coop-sandbox-redirects-cuts-opener.https.html [ Failure Pass ]
  5925. crbug.com/1352545 [ Linux ] external/wpt/html/interaction/focus/chrome-object-tab-focus-bug.html [ Failure Pass ]
  5926. crbug.com/1352566 [ Mac ] external/wpt/html/browsers/browsing-the-web/history-traversal/event-order/before-load-hash-twice.html [ Failure Pass ]
  5927. crbug.com/1352576 [ Linux ] external/wpt/content-security-policy/media-src/media-src-7_2_2.sub.html [ Failure Pass ]
  5928. crbug.com/1352607 external/wpt/css/css-transitions/transition-base-response-002.html [ Failure Pass ]
  5929. # Sheriff 2022-08-17
  5930. crbug.com/1342623 [ Win ] virtual/scroll-unification/fast/events/mouseenter-mouseleave-on-drag.html [ Failure Pass ]
  5931. crbug.com/1340167 fast/loader/iframe-navigation-stealing-focus.html [ Pass Timeout ]
  5932. # Sheriff 2022-08-18
  5933. crbug.com/1354013 virtual/threaded-no-composited-antialiasing/animations/sample-on-last-keyframe.html [ Skip ]