Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

changelog.md 1015KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453
  1. ## Roll protocol to r818814
  2. ###### _2020-10-20 00:15:59_ | Diff: [f72d9f7...e1b8740](https://github.com/ChromeDevTools/devtools-protocol/compare/f72d9f7...e1b8740)
  3. #### `Storage`: new command
  4. * [`Storage.overrideQuotaForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-overrideQuotaForOrigin)
  5. #### `Storage`: modified command
  6. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota) - The `usageBreakdown` in the return value had `items` _removed_. The `usageBreakdown` in the return value had `name` _updated_. The `usageBreakdown` in the return value had `description` _updated_. The `usageBreakdown` in the return value had `type` _updated_. The return value's `usageBreakdown` _added_.
  7. ## Roll protocol to r816699
  8. ###### _2020-10-13 12:16:04_ | Diff: [d268e57...f72d9f7](https://github.com/ChromeDevTools/devtools-protocol/compare/d268e57...f72d9f7)
  9. #### `Network`: modified types
  10. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason) - The enum's `SchemefulSameSiteStrict` _added_. The enum's `SchemefulSameSiteLax` _added_. The enum's `SchemefulSameSiteUnspecifiedTreatedAsLax` _added_.
  11. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason) - The enum's `SchemefulSameSiteStrict` _added_. The enum's `SchemefulSameSiteLax` _added_. The enum's `SchemefulSameSiteUnspecifiedTreatedAsLax` _added_.
  12. ## Roll protocol to r816501
  13. ###### _2020-10-13 03:16:04_ | Diff: [b72ea89...d268e57](https://github.com/ChromeDevTools/devtools-protocol/compare/b72ea89...d268e57)
  14. #### `Browser`: modified types
  15. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `idleDetection` _updated_. The enum's `wakeLockScreen` _updated_. The enum's `wakeLockSystem` _updated_. The enum's `wakeLockSystem` _added_.
  16. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor) - The properties's `panTiltZoom` _added_.
  17. ## Roll protocol to r815575
  18. ###### _2020-10-09 05:16:03_ | Diff: [5c44cf2...b72ea89](https://github.com/ChromeDevTools/devtools-protocol/compare/5c44cf2...b72ea89)
  19. #### `Network`: new types
  20. * [`Network.TrustTokenParams`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TrustTokenParams)
  21. * [`Network.TrustTokenOperationType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TrustTokenOperationType)
  22. #### `Network`: modified type
  23. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The properties's `trustTokenParams` _added_.
  24. ## Roll protocol to r814213
  25. ###### _2020-10-06 08:18:01_ | Diff: [f99d711...5c44cf2](https://github.com/ChromeDevTools/devtools-protocol/compare/f99d711...5c44cf2)
  26. #### `Console`: new domains
  27. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  28. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  29. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  30. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  31. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  32. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  33. #### `Console`: new commands
  34. * [`Console.clearMessages`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-clearMessages)
  35. * [`Console.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-disable)
  36. * [`Console.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-enable)
  37. #### `Console`: new event
  38. * [`Console.messageAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#event-messageAdded)
  39. #### `Console`: new type
  40. * [`Console.ConsoleMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#type-ConsoleMessage)
  41. #### `Debugger`: new commands
  42. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation)
  43. * [`Debugger.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-disable)
  44. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable)
  45. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame)
  46. * [`Debugger.executeWasmEvaluator`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-executeWasmEvaluator)
  47. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints)
  48. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource)
  49. * [`Debugger.getWasmBytecode`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getWasmBytecode)
  50. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace)
  51. * [`Debugger.pause`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pause)
  52. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall)
  53. * [`Debugger.removeBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-removeBreakpoint)
  54. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame)
  55. * [`Debugger.resume`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-resume)
  56. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent)
  57. * [`Debugger.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setAsyncCallStackDepth)
  58. * [`Debugger.setBlackboxPatterns`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxPatterns)
  59. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges)
  60. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint)
  61. * [`Debugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setInstrumentationBreakpoint)
  62. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl)
  63. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall)
  64. * [`Debugger.setBreakpointsActive`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointsActive)
  65. * [`Debugger.setPauseOnExceptions`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setPauseOnExceptions)
  66. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue)
  67. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource)
  68. * [`Debugger.setSkipAllPauses`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setSkipAllPauses)
  69. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue)
  70. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto)
  71. * [`Debugger.stepOut`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOut)
  72. * [`Debugger.stepOver`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOver)
  73. #### `Debugger`: new events
  74. * [`Debugger.breakpointResolved`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-breakpointResolved)
  75. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused)
  76. * [`Debugger.resumed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-resumed)
  77. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse)
  78. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed)
  79. #### `Debugger`: new types
  80. * [`Debugger.BreakpointId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakpointId)
  81. * [`Debugger.CallFrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrameId)
  82. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location)
  83. * [`Debugger.ScriptPosition`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptPosition)
  84. * [`Debugger.LocationRange`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-LocationRange)
  85. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame)
  86. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope)
  87. * [`Debugger.SearchMatch`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-SearchMatch)
  88. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation)
  89. * [`Debugger.ScriptLanguage`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptLanguage)
  90. * [`Debugger.DebugSymbols`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-DebugSymbols)
  91. #### `HeapProfiler`: new commands
  92. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject)
  93. * [`HeapProfiler.collectGarbage`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-collectGarbage)
  94. * [`HeapProfiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-disable)
  95. * [`HeapProfiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-enable)
  96. * [`HeapProfiler.getHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getHeapObjectId)
  97. * [`HeapProfiler.getObjectByHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getObjectByHeapObjectId)
  98. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile)
  99. * [`HeapProfiler.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startSampling)
  100. * [`HeapProfiler.startTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startTrackingHeapObjects)
  101. * [`HeapProfiler.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopSampling)
  102. * [`HeapProfiler.stopTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopTrackingHeapObjects)
  103. * [`HeapProfiler.takeHeapSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-takeHeapSnapshot)
  104. #### `HeapProfiler`: new events
  105. * [`HeapProfiler.addHeapSnapshotChunk`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-addHeapSnapshotChunk)
  106. * [`HeapProfiler.heapStatsUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-heapStatsUpdate)
  107. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId)
  108. * [`HeapProfiler.reportHeapSnapshotProgress`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-reportHeapSnapshotProgress)
  109. * [`HeapProfiler.resetProfiles`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-resetProfiles)
  110. #### `HeapProfiler`: new types
  111. * [`HeapProfiler.HeapSnapshotObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-HeapSnapshotObjectId)
  112. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode)
  113. * [`HeapProfiler.SamplingHeapProfileSample`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileSample)
  114. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile)
  115. #### `Profiler`: new commands
  116. * [`Profiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disable)
  117. * [`Profiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enable)
  118. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage)
  119. * [`Profiler.setSamplingInterval`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-setSamplingInterval)
  120. * [`Profiler.start`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-start)
  121. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage)
  122. * [`Profiler.startTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startTypeProfile)
  123. * [`Profiler.stop`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stop)
  124. * [`Profiler.stopPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopPreciseCoverage)
  125. * [`Profiler.stopTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopTypeProfile)
  126. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage)
  127. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile)
  128. * [`Profiler.enableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableCounters)
  129. * [`Profiler.disableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableCounters)
  130. * [`Profiler.getCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getCounters)
  131. * [`Profiler.enableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableRuntimeCallStats)
  132. * [`Profiler.disableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableRuntimeCallStats)
  133. * [`Profiler.getRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getRuntimeCallStats)
  134. #### `Profiler`: new events
  135. * [`Profiler.consoleProfileFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileFinished)
  136. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted)
  137. * [`Profiler.preciseCoverageDeltaUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-preciseCoverageDeltaUpdate)
  138. #### `Profiler`: new types
  139. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode)
  140. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile)
  141. * [`Profiler.PositionTickInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-PositionTickInfo)
  142. * [`Profiler.CoverageRange`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CoverageRange)
  143. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage)
  144. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage)
  145. * [`Profiler.TypeObject`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeObject)
  146. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry)
  147. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile)
  148. * [`Profiler.CounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CounterInfo)
  149. * [`Profiler.RuntimeCallCounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-RuntimeCallCounterInfo)
  150. #### `Runtime`: new commands
  151. * [`Runtime.awaitPromise`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise)
  152. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn)
  153. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript)
  154. * [`Runtime.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-disable)
  155. * [`Runtime.discardConsoleEntries`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-discardConsoleEntries)
  156. * [`Runtime.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-enable)
  157. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate)
  158. * [`Runtime.getIsolateId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getIsolateId)
  159. * [`Runtime.getHeapUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getHeapUsage)
  160. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties)
  161. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames)
  162. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects)
  163. * [`Runtime.releaseObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject)
  164. * [`Runtime.releaseObjectGroup`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObjectGroup)
  165. * [`Runtime.runIfWaitingForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runIfWaitingForDebugger)
  166. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript)
  167. * [`Runtime.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setAsyncCallStackDepth)
  168. * [`Runtime.setCustomObjectFormatterEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setCustomObjectFormatterEnabled)
  169. * [`Runtime.setMaxCallStackSizeToCapture`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setMaxCallStackSizeToCapture)
  170. * [`Runtime.terminateExecution`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-terminateExecution)
  171. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding)
  172. * [`Runtime.removeBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-removeBinding)
  173. #### `Runtime`: new events
  174. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled)
  175. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled)
  176. * [`Runtime.exceptionRevoked`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionRevoked)
  177. * [`Runtime.exceptionThrown`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionThrown)
  178. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated)
  179. * [`Runtime.executionContextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextDestroyed)
  180. * [`Runtime.executionContextsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextsCleared)
  181. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested)
  182. #### `Runtime`: new types
  183. * [`Runtime.ScriptId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ScriptId)
  184. * [`Runtime.RemoteObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObjectId)
  185. * [`Runtime.UnserializableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UnserializableValue)
  186. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject)
  187. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview)
  188. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview)
  189. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview)
  190. * [`Runtime.EntryPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview)
  191. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor)
  192. * [`Runtime.InternalPropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor)
  193. * [`Runtime.PrivatePropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor)
  194. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument)
  195. * [`Runtime.ExecutionContextId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextId)
  196. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription)
  197. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails)
  198. * [`Runtime.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-Timestamp)
  199. * [`Runtime.TimeDelta`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-TimeDelta)
  200. * [`Runtime.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame)
  201. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace)
  202. * [`Runtime.UniqueDebuggerId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UniqueDebuggerId)
  203. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId)
  204. #### `Schema`: new command
  205. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains)
  206. #### `Schema`: new type
  207. * [`Schema.Domain`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#type-Domain)
  208. #### `Accessibility`: new domains
  209. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  210. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  211. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  212. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  213. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  214. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  215. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  216. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  217. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  218. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  219. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  220. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  221. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  222. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  223. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  224. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  225. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  226. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  227. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  228. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  229. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  230. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  231. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  232. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  233. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  234. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  235. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  236. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  237. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  238. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  239. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  240. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  241. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  242. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  243. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  244. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  245. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  246. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  247. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  248. #### `Accessibility`: new commands
  249. * [`Accessibility.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-disable)
  250. * [`Accessibility.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-enable)
  251. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree)
  252. * [`Accessibility.getFullAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getFullAXTree)
  253. * [`Accessibility.queryAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-queryAXTree)
  254. #### `Accessibility`: new types
  255. * [`Accessibility.AXNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNodeId)
  256. * [`Accessibility.AXValueType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueType)
  257. * [`Accessibility.AXValueSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSourceType)
  258. * [`Accessibility.AXValueNativeSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueNativeSourceType)
  259. * [`Accessibility.AXValueSource`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSource)
  260. * [`Accessibility.AXRelatedNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelatedNode)
  261. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty)
  262. * [`Accessibility.AXValue`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValue)
  263. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName)
  264. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode)
  265. #### `Animation`: new commands
  266. * [`Animation.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-disable)
  267. * [`Animation.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-enable)
  268. * [`Animation.getCurrentTime`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getCurrentTime)
  269. * [`Animation.getPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getPlaybackRate)
  270. * [`Animation.releaseAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-releaseAnimations)
  271. * [`Animation.resolveAnimation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-resolveAnimation)
  272. * [`Animation.seekAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-seekAnimations)
  273. * [`Animation.setPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPaused)
  274. * [`Animation.setPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPlaybackRate)
  275. * [`Animation.setTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setTiming)
  276. #### `Animation`: new events
  277. * [`Animation.animationCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCanceled)
  278. * [`Animation.animationCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCreated)
  279. * [`Animation.animationStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationStarted)
  280. #### `Animation`: new types
  281. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation)
  282. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect)
  283. * [`Animation.KeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframesRule)
  284. * [`Animation.KeyframeStyle`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframeStyle)
  285. #### `ApplicationCache`: new commands
  286. * [`ApplicationCache.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-enable)
  287. * [`ApplicationCache.getApplicationCacheForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getApplicationCacheForFrame)
  288. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests)
  289. * [`ApplicationCache.getManifestForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getManifestForFrame)
  290. #### `ApplicationCache`: new events
  291. * [`ApplicationCache.applicationCacheStatusUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-applicationCacheStatusUpdated)
  292. * [`ApplicationCache.networkStateUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-networkStateUpdated)
  293. #### `ApplicationCache`: new types
  294. * [`ApplicationCache.ApplicationCacheResource`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCacheResource)
  295. * [`ApplicationCache.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCache)
  296. * [`ApplicationCache.FrameWithManifest`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-FrameWithManifest)
  297. #### `Audits`: new commands
  298. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse)
  299. * [`Audits.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-disable)
  300. * [`Audits.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-enable)
  301. #### `Audits`: new event
  302. * [`Audits.issueAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#event-issueAdded)
  303. #### `Audits`: new types
  304. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie)
  305. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  306. * [`Audits.AffectedFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedFrame)
  307. * [`Audits.SameSiteCookieExclusionReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieExclusionReason)
  308. * [`Audits.SameSiteCookieWarningReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieWarningReason)
  309. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  310. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails)
  311. * [`Audits.MixedContentResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResolutionStatus)
  312. * [`Audits.MixedContentResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResourceType)
  313. * [`Audits.MixedContentIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentIssueDetails)
  314. * [`Audits.BlockedByResponseReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseReason)
  315. * [`Audits.BlockedByResponseIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseIssueDetails)
  316. * [`Audits.HeavyAdResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdResolutionStatus)
  317. * [`Audits.HeavyAdReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdReason)
  318. * [`Audits.HeavyAdIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdIssueDetails)
  319. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  320. * [`Audits.SourceCodeLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SourceCodeLocation)
  321. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  322. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode)
  323. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails)
  324. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue)
  325. #### `BackgroundService`: new commands
  326. * [`BackgroundService.startObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-startObserving)
  327. * [`BackgroundService.stopObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-stopObserving)
  328. * [`BackgroundService.setRecording`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-setRecording)
  329. * [`BackgroundService.clearEvents`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-clearEvents)
  330. #### `BackgroundService`: new events
  331. * [`BackgroundService.recordingStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-recordingStateChanged)
  332. * [`BackgroundService.backgroundServiceEventReceived`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-backgroundServiceEventReceived)
  333. #### `BackgroundService`: new types
  334. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName)
  335. * [`BackgroundService.EventMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-EventMetadata)
  336. * [`BackgroundService.BackgroundServiceEvent`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-BackgroundServiceEvent)
  337. #### `Browser`: new commands
  338. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission)
  339. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions)
  340. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions)
  341. * [`Browser.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDownloadBehavior)
  342. * [`Browser.close`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-close)
  343. * [`Browser.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crash)
  344. * [`Browser.crashGpuProcess`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crashGpuProcess)
  345. * [`Browser.getVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getVersion)
  346. * [`Browser.getBrowserCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getBrowserCommandLine)
  347. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms)
  348. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram)
  349. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds)
  350. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget)
  351. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds)
  352. * [`Browser.setDockTile`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDockTile)
  353. #### `Browser`: new types
  354. * [`Browser.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-BrowserContextID)
  355. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID)
  356. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState)
  357. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds)
  358. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType)
  359. * [`Browser.PermissionSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionSetting)
  360. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor)
  361. * [`Browser.Bucket`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bucket)
  362. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram)
  363. #### `CSS`: new commands
  364. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule)
  365. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames)
  366. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet)
  367. * [`CSS.disable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-disable)
  368. * [`CSS.enable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable)
  369. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState)
  370. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors)
  371. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode)
  372. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode)
  373. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode)
  374. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries)
  375. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode)
  376. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText)
  377. * [`CSS.trackComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)
  378. * [`CSS.takeComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)
  379. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode)
  380. * [`CSS.setKeyframeKey`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey)
  381. * [`CSS.setMediaText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText)
  382. * [`CSS.setRuleSelector`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector)
  383. * [`CSS.setStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText)
  384. * [`CSS.setStyleTexts`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts)
  385. * [`CSS.startRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking)
  386. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking)
  387. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta)
  388. * [`CSS.setLocalFontsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)
  389. #### `CSS`: new events
  390. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated)
  391. * [`CSS.mediaQueryResultChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-mediaQueryResultChanged)
  392. * [`CSS.styleSheetAdded`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetAdded)
  393. * [`CSS.styleSheetChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetChanged)
  394. * [`CSS.styleSheetRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetRemoved)
  395. #### `CSS`: new types
  396. * [`CSS.StyleSheetId`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetId)
  397. * [`CSS.StyleSheetOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetOrigin)
  398. * [`CSS.PseudoElementMatches`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PseudoElementMatches)
  399. * [`CSS.InheritedStyleEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InheritedStyleEntry)
  400. * [`CSS.RuleMatch`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleMatch)
  401. * [`CSS.Value`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-Value)
  402. * [`CSS.SelectorList`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SelectorList)
  403. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader)
  404. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule)
  405. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage)
  406. * [`CSS.SourceRange`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SourceRange)
  407. * [`CSS.ShorthandEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-ShorthandEntry)
  408. * [`CSS.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSComputedStyleProperty)
  409. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle)
  410. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty)
  411. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia)
  412. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery)
  413. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression)
  414. * [`CSS.PlatformFontUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PlatformFontUsage)
  415. * [`CSS.FontVariationAxis`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontVariationAxis)
  416. * [`CSS.FontFace`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontFace)
  417. * [`CSS.CSSKeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframesRule)
  418. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule)
  419. * [`CSS.StyleDeclarationEdit`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleDeclarationEdit)
  420. #### `CacheStorage`: new commands
  421. * [`CacheStorage.deleteCache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteCache)
  422. * [`CacheStorage.deleteEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteEntry)
  423. * [`CacheStorage.requestCacheNames`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCacheNames)
  424. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse)
  425. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries)
  426. #### `CacheStorage`: new types
  427. * [`CacheStorage.CacheId`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CacheId)
  428. * [`CacheStorage.CachedResponseType`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponseType)
  429. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry)
  430. * [`CacheStorage.Cache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Cache)
  431. * [`CacheStorage.Header`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Header)
  432. * [`CacheStorage.CachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponse)
  433. #### `Cast`: new commands
  434. * [`Cast.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-enable)
  435. * [`Cast.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-disable)
  436. * [`Cast.setSinkToUse`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-setSinkToUse)
  437. * [`Cast.startTabMirroring`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-startTabMirroring)
  438. * [`Cast.stopCasting`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-stopCasting)
  439. #### `Cast`: new events
  440. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated)
  441. * [`Cast.issueUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-issueUpdated)
  442. #### `Cast`: new type
  443. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  444. #### `DOM`: new commands
  445. * [`DOM.collectClassNamesFromSubtree`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-collectClassNamesFromSubtree)
  446. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo)
  447. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode)
  448. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  449. * [`DOM.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-disable)
  450. * [`DOM.discardSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-discardSearchResults)
  451. * [`DOM.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-enable)
  452. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus)
  453. * [`DOM.getAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getAttributes)
  454. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel)
  455. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads)
  456. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument)
  457. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument)
  458. * [`DOM.getNodesForSubtreeByStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodesForSubtreeByStyle)
  459. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation)
  460. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML)
  461. * [`DOM.getRelayoutBoundary`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getRelayoutBoundary)
  462. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults)
  463. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight)
  464. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode)
  465. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect)
  466. * [`DOM.markUndoableState`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-markUndoableState)
  467. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo)
  468. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch)
  469. * [`DOM.pushNodeByPathToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodeByPathToFrontend)
  470. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend)
  471. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector)
  472. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll)
  473. * [`DOM.redo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-redo)
  474. * [`DOM.removeAttribute`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeAttribute)
  475. * [`DOM.removeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeNode)
  476. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes)
  477. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode)
  478. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode)
  479. * [`DOM.setAttributeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributeValue)
  480. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText)
  481. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles)
  482. * [`DOM.setNodeStackTracesEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeStackTracesEnabled)
  483. * [`DOM.getNodeStackTraces`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeStackTraces)
  484. * [`DOM.getFileInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFileInfo)
  485. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode)
  486. * [`DOM.setNodeName`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeName)
  487. * [`DOM.setNodeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeValue)
  488. * [`DOM.setOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setOuterHTML)
  489. * [`DOM.undo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-undo)
  490. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner)
  491. #### `DOM`: new events
  492. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified)
  493. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved)
  494. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified)
  495. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated)
  496. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted)
  497. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved)
  498. * [`DOM.distributedNodesUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-distributedNodesUpdated)
  499. * [`DOM.documentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-documentUpdated)
  500. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated)
  501. * [`DOM.pseudoElementAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementAdded)
  502. * [`DOM.pseudoElementRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementRemoved)
  503. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes)
  504. * [`DOM.shadowRootPopped`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPopped)
  505. * [`DOM.shadowRootPushed`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPushed)
  506. #### `DOM`: new types
  507. * [`DOM.NodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-NodeId)
  508. * [`DOM.BackendNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNodeId)
  509. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode)
  510. * [`DOM.PseudoType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-PseudoType)
  511. * [`DOM.ShadowRootType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShadowRootType)
  512. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node)
  513. * [`DOM.RGBA`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-RGBA)
  514. * [`DOM.Quad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Quad)
  515. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel)
  516. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo)
  517. * [`DOM.Rect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Rect)
  518. * [`DOM.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-CSSComputedStyleProperty)
  519. #### `DOMDebugger`: new commands
  520. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners)
  521. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint)
  522. * [`DOMDebugger.removeEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeEventListenerBreakpoint)
  523. * [`DOMDebugger.removeInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeInstrumentationBreakpoint)
  524. * [`DOMDebugger.removeXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeXHRBreakpoint)
  525. * [`DOMDebugger.setDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setDOMBreakpoint)
  526. * [`DOMDebugger.setEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setEventListenerBreakpoint)
  527. * [`DOMDebugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setInstrumentationBreakpoint)
  528. * [`DOMDebugger.setXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setXHRBreakpoint)
  529. #### `DOMDebugger`: new types
  530. * [`DOMDebugger.DOMBreakpointType`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-DOMBreakpointType)
  531. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener)
  532. #### `DOMSnapshot`: new commands
  533. * [`DOMSnapshot.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-disable)
  534. * [`DOMSnapshot.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-enable)
  535. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot)
  536. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot)
  537. #### `DOMSnapshot`: new types
  538. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode)
  539. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox)
  540. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode)
  541. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle)
  542. * [`DOMSnapshot.NameValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NameValue)
  543. * [`DOMSnapshot.StringIndex`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StringIndex)
  544. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings)
  545. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData)
  546. * [`DOMSnapshot.RareBooleanData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareBooleanData)
  547. * [`DOMSnapshot.RareIntegerData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareIntegerData)
  548. * [`DOMSnapshot.Rectangle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-Rectangle)
  549. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot)
  550. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot)
  551. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot)
  552. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot)
  553. #### `DOMStorage`: new commands
  554. * [`DOMStorage.clear`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-clear)
  555. * [`DOMStorage.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-disable)
  556. * [`DOMStorage.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-enable)
  557. * [`DOMStorage.getDOMStorageItems`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-getDOMStorageItems)
  558. * [`DOMStorage.removeDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-removeDOMStorageItem)
  559. * [`DOMStorage.setDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-setDOMStorageItem)
  560. #### `DOMStorage`: new events
  561. * [`DOMStorage.domStorageItemAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemAdded)
  562. * [`DOMStorage.domStorageItemRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemRemoved)
  563. * [`DOMStorage.domStorageItemUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemUpdated)
  564. * [`DOMStorage.domStorageItemsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemsCleared)
  565. #### `DOMStorage`: new types
  566. * [`DOMStorage.StorageId`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-StorageId)
  567. * [`DOMStorage.Item`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-Item)
  568. #### `Database`: new commands
  569. * [`Database.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-disable)
  570. * [`Database.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-enable)
  571. * [`Database.executeSQL`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-executeSQL)
  572. * [`Database.getDatabaseTableNames`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-getDatabaseTableNames)
  573. #### `Database`: new event
  574. * [`Database.addDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#event-addDatabase)
  575. #### `Database`: new types
  576. * [`Database.DatabaseId`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-DatabaseId)
  577. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database)
  578. * [`Database.Error`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Error)
  579. #### `DeviceOrientation`: new commands
  580. * [`DeviceOrientation.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-clearDeviceOrientationOverride)
  581. * [`DeviceOrientation.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-setDeviceOrientationOverride)
  582. #### `Emulation`: new commands
  583. * [`Emulation.canEmulate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-canEmulate)
  584. * [`Emulation.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearDeviceMetricsOverride)
  585. * [`Emulation.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearGeolocationOverride)
  586. * [`Emulation.resetPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-resetPageScaleFactor)
  587. * [`Emulation.setFocusEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setFocusEmulationEnabled)
  588. * [`Emulation.setCPUThrottlingRate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setCPUThrottlingRate)
  589. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride)
  590. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride)
  591. * [`Emulation.setScrollbarsHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScrollbarsHidden)
  592. * [`Emulation.setDocumentCookieDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDocumentCookieDisabled)
  593. * [`Emulation.setEmitTouchEventsForMouse`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmitTouchEventsForMouse)
  594. * [`Emulation.setEmulatedMedia`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedMedia)
  595. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  596. * [`Emulation.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setGeolocationOverride)
  597. * [`Emulation.setIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setIdleOverride)
  598. * [`Emulation.clearIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearIdleOverride)
  599. * [`Emulation.setNavigatorOverrides`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setNavigatorOverrides)
  600. * [`Emulation.setPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setPageScaleFactor)
  601. * [`Emulation.setScriptExecutionDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScriptExecutionDisabled)
  602. * [`Emulation.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTouchEmulationEnabled)
  603. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy)
  604. * [`Emulation.setLocaleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setLocaleOverride)
  605. * [`Emulation.setTimezoneOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTimezoneOverride)
  606. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize)
  607. * [`Emulation.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setUserAgentOverride)
  608. #### `Emulation`: new event
  609. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired)
  610. #### `Emulation`: new types
  611. * [`Emulation.ScreenOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-ScreenOrientation)
  612. * [`Emulation.DisplayFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-DisplayFeature)
  613. * [`Emulation.MediaFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-MediaFeature)
  614. * [`Emulation.VirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-VirtualTimePolicy)
  615. * [`Emulation.UserAgentBrandVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentBrandVersion)
  616. * [`Emulation.UserAgentMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentMetadata)
  617. #### `HeadlessExperimental`: new commands
  618. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame)
  619. * [`HeadlessExperimental.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-disable)
  620. * [`HeadlessExperimental.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enable)
  621. #### `HeadlessExperimental`: new event
  622. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged)
  623. #### `HeadlessExperimental`: new type
  624. * [`HeadlessExperimental.ScreenshotParams`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#type-ScreenshotParams)
  625. #### `IO`: new commands
  626. * [`IO.close`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-close)
  627. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read)
  628. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob)
  629. #### `IO`: new type
  630. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle)
  631. #### `IndexedDB`: new commands
  632. * [`IndexedDB.clearObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-clearObjectStore)
  633. * [`IndexedDB.deleteDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteDatabase)
  634. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries)
  635. * [`IndexedDB.disable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-disable)
  636. * [`IndexedDB.enable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-enable)
  637. * [`IndexedDB.requestData`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestData)
  638. * [`IndexedDB.getMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getMetadata)
  639. * [`IndexedDB.requestDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabase)
  640. * [`IndexedDB.requestDatabaseNames`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabaseNames)
  641. #### `IndexedDB`: new types
  642. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores)
  643. * [`IndexedDB.ObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStore)
  644. * [`IndexedDB.ObjectStoreIndex`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStoreIndex)
  645. * [`IndexedDB.Key`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-Key)
  646. * [`IndexedDB.KeyRange`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyRange)
  647. * [`IndexedDB.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DataEntry)
  648. * [`IndexedDB.KeyPath`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyPath)
  649. #### `Input`: new commands
  650. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent)
  651. * [`Input.insertText`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-insertText)
  652. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent)
  653. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent)
  654. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent)
  655. * [`Input.setIgnoreInputEvents`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-setIgnoreInputEvents)
  656. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture)
  657. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture)
  658. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture)
  659. #### `Input`: new types
  660. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint)
  661. * [`Input.GestureSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-GestureSourceType)
  662. * [`Input.MouseButton`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-MouseButton)
  663. * [`Input.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TimeSinceEpoch)
  664. #### `Inspector`: new commands
  665. * [`Inspector.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-disable)
  666. * [`Inspector.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-enable)
  667. #### `Inspector`: new events
  668. * [`Inspector.detached`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-detached)
  669. * [`Inspector.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetCrashed)
  670. * [`Inspector.targetReloadedAfterCrash`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetReloadedAfterCrash)
  671. #### `LayerTree`: new commands
  672. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons)
  673. * [`LayerTree.disable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-disable)
  674. * [`LayerTree.enable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-enable)
  675. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot)
  676. * [`LayerTree.makeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-makeSnapshot)
  677. * [`LayerTree.profileSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-profileSnapshot)
  678. * [`LayerTree.releaseSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-releaseSnapshot)
  679. * [`LayerTree.replaySnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-replaySnapshot)
  680. * [`LayerTree.snapshotCommandLog`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-snapshotCommandLog)
  681. #### `LayerTree`: new events
  682. * [`LayerTree.layerPainted`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerPainted)
  683. * [`LayerTree.layerTreeDidChange`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerTreeDidChange)
  684. #### `LayerTree`: new types
  685. * [`LayerTree.LayerId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-LayerId)
  686. * [`LayerTree.SnapshotId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-SnapshotId)
  687. * [`LayerTree.ScrollRect`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-ScrollRect)
  688. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint)
  689. * [`LayerTree.PictureTile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PictureTile)
  690. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer)
  691. * [`LayerTree.PaintProfile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PaintProfile)
  692. #### `Log`: new commands
  693. * [`Log.clear`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-clear)
  694. * [`Log.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-disable)
  695. * [`Log.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-enable)
  696. * [`Log.startViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-startViolationsReport)
  697. * [`Log.stopViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-stopViolationsReport)
  698. #### `Log`: new event
  699. * [`Log.entryAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#event-entryAdded)
  700. #### `Log`: new types
  701. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry)
  702. * [`Log.ViolationSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-ViolationSetting)
  703. #### `Memory`: new commands
  704. * [`Memory.getDOMCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getDOMCounters)
  705. * [`Memory.prepareForLeakDetection`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-prepareForLeakDetection)
  706. * [`Memory.forciblyPurgeJavaScriptMemory`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-forciblyPurgeJavaScriptMemory)
  707. * [`Memory.setPressureNotificationsSuppressed`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-setPressureNotificationsSuppressed)
  708. * [`Memory.simulatePressureNotification`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-simulatePressureNotification)
  709. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  710. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  711. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile)
  712. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile)
  713. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  714. #### `Memory`: new types
  715. * [`Memory.PressureLevel`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-PressureLevel)
  716. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  717. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  718. * [`Memory.Module`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-Module)
  719. #### `Network`: new commands
  720. * [`Network.canClearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCache)
  721. * [`Network.canClearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCookies)
  722. * [`Network.canEmulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canEmulateNetworkConditions)
  723. * [`Network.clearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCache)
  724. * [`Network.clearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCookies)
  725. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest)
  726. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies)
  727. * [`Network.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-disable)
  728. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions)
  729. * [`Network.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enable)
  730. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies)
  731. * [`Network.getCertificate`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCertificate)
  732. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies)
  733. * [`Network.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBody)
  734. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData)
  735. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  736. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream)
  737. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR)
  738. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody)
  739. * [`Network.setBlockedURLs`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBlockedURLs)
  740. * [`Network.setBypassServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBypassServiceWorker)
  741. * [`Network.setCacheDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCacheDisabled)
  742. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie)
  743. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies)
  744. * [`Network.setDataSizeLimitsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setDataSizeLimitsForTest)
  745. * [`Network.setExtraHTTPHeaders`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setExtraHTTPHeaders)
  746. * [`Network.setAttachDebugHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setAttachDebugHeader)
  747. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception)
  748. * [`Network.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setUserAgentOverride)
  749. * [`Network.getSecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getSecurityIsolationStatus)
  750. * [`Network.loadNetworkResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-loadNetworkResource)
  751. #### `Network`: new events
  752. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived)
  753. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived)
  754. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed)
  755. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished)
  756. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted)
  757. * [`Network.requestServedFromCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestServedFromCache)
  758. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent)
  759. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority)
  760. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived)
  761. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived)
  762. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed)
  763. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated)
  764. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError)
  765. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived)
  766. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent)
  767. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived)
  768. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest)
  769. * [`Network.requestWillBeSentExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSentExtraInfo)
  770. * [`Network.responseReceivedExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceivedExtraInfo)
  771. #### `Network`: new types
  772. * [`Network.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceType)
  773. * [`Network.LoaderId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoaderId)
  774. * [`Network.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestId)
  775. * [`Network.InterceptionId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionId)
  776. * [`Network.ErrorReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ErrorReason)
  777. * [`Network.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TimeSinceEpoch)
  778. * [`Network.MonotonicTime`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-MonotonicTime)
  779. * [`Network.Headers`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Headers)
  780. * [`Network.ConnectionType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ConnectionType)
  781. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite)
  782. * [`Network.CookiePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookiePriority)
  783. * [`Network.ResourceTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceTiming)
  784. * [`Network.ResourcePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourcePriority)
  785. * [`Network.PostDataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-PostDataEntry)
  786. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request)
  787. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp)
  788. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails)
  789. * [`Network.CertificateTransparencyCompliance`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CertificateTransparencyCompliance)
  790. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason)
  791. * [`Network.ServiceWorkerResponseSource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ServiceWorkerResponseSource)
  792. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response)
  793. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest)
  794. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse)
  795. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame)
  796. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource)
  797. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator)
  798. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie)
  799. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason)
  800. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason)
  801. * [`Network.BlockedSetCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedSetCookieWithReason)
  802. * [`Network.BlockedCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedCookieWithReason)
  803. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam)
  804. * [`Network.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallenge)
  805. * [`Network.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse)
  806. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  807. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern)
  808. * [`Network.SignedExchangeSignature`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeSignature)
  809. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader)
  810. * [`Network.SignedExchangeErrorField`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeErrorField)
  811. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError)
  812. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo)
  813. * [`Network.CrossOriginOpenerPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyValue)
  814. * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus)
  815. * [`Network.CrossOriginEmbedderPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyValue)
  816. * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus)
  817. * [`Network.SecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityIsolationStatus)
  818. * [`Network.LoadNetworkResourcePageResult`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourcePageResult)
  819. * [`Network.LoadNetworkResourceOptions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourceOptions)
  820. #### `Overlay`: new commands
  821. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  822. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  823. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  824. * [`Overlay.getGridHighlightObjectsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getGridHighlightObjectsForTest)
  825. * [`Overlay.getSourceOrderHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getSourceOrderHighlightObjectForTest)
  826. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  827. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  828. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  829. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  830. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  831. * [`Overlay.highlightSourceOrder`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightSourceOrder)
  832. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  833. * [`Overlay.setShowAdHighlights`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowAdHighlights)
  834. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  835. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  836. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  837. * [`Overlay.setShowGridOverlays`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowGridOverlays)
  838. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  839. * [`Overlay.setShowLayoutShiftRegions`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowLayoutShiftRegions)
  840. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  841. * [`Overlay.setShowHitTestBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHitTestBorders)
  842. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  843. * [`Overlay.setShowHinge`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHinge)
  844. #### `Overlay`: new events
  845. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  846. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  847. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested)
  848. * [`Overlay.inspectModeCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectModeCanceled)
  849. #### `Overlay`: new types
  850. * [`Overlay.SourceOrderConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-SourceOrderConfig)
  851. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig)
  852. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  853. * [`Overlay.ColorFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ColorFormat)
  854. * [`Overlay.GridNodeHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridNodeHighlightConfig)
  855. * [`Overlay.HingeConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HingeConfig)
  856. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  857. #### `Page`: new commands
  858. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad)
  859. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument)
  860. * [`Page.bringToFront`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-bringToFront)
  861. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot)
  862. * [`Page.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureSnapshot)
  863. * [`Page.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceMetricsOverride)
  864. * [`Page.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceOrientationOverride)
  865. * [`Page.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearGeolocationOverride)
  866. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld)
  867. * [`Page.deleteCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-deleteCookie)
  868. * [`Page.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-disable)
  869. * [`Page.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-enable)
  870. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest)
  871. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors)
  872. * [`Page.getManifestIcons`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getManifestIcons)
  873. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies)
  874. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree)
  875. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics)
  876. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory)
  877. * [`Page.resetNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-resetNavigationHistory)
  878. * [`Page.getResourceContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceContent)
  879. * [`Page.getResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceTree)
  880. * [`Page.handleJavaScriptDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleJavaScriptDialog)
  881. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate)
  882. * [`Page.navigateToHistoryEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigateToHistoryEntry)
  883. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF)
  884. * [`Page.reload`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-reload)
  885. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad)
  886. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument)
  887. * [`Page.screencastFrameAck`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-screencastFrameAck)
  888. * [`Page.searchInResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-searchInResource)
  889. * [`Page.setAdBlockingEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setAdBlockingEnabled)
  890. * [`Page.setBypassCSP`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setBypassCSP)
  891. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride)
  892. * [`Page.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceOrientationOverride)
  893. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies)
  894. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes)
  895. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent)
  896. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior)
  897. * [`Page.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setGeolocationOverride)
  898. * [`Page.setLifecycleEventsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setLifecycleEventsEnabled)
  899. * [`Page.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setTouchEmulationEnabled)
  900. * [`Page.startScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-startScreencast)
  901. * [`Page.stopLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopLoading)
  902. * [`Page.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-crash)
  903. * [`Page.close`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-close)
  904. * [`Page.setWebLifecycleState`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setWebLifecycleState)
  905. * [`Page.stopScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopScreencast)
  906. * [`Page.setProduceCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setProduceCompilationCache)
  907. * [`Page.addCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addCompilationCache)
  908. * [`Page.clearCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearCompilationCache)
  909. * [`Page.generateTestReport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-generateTestReport)
  910. * [`Page.waitForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-waitForDebugger)
  911. * [`Page.setInterceptFileChooserDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setInterceptFileChooserDialog)
  912. #### `Page`: new events
  913. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired)
  914. * [`Page.fileChooserOpened`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-fileChooserOpened)
  915. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached)
  916. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation)
  917. * [`Page.frameDetached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameDetached)
  918. * [`Page.frameNavigated`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameNavigated)
  919. * [`Page.frameResized`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameResized)
  920. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  921. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation)
  922. * [`Page.frameStartedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStartedLoading)
  923. * [`Page.frameStoppedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStoppedLoading)
  924. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin)
  925. * [`Page.downloadProgress`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadProgress)
  926. * [`Page.interstitialHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialHidden)
  927. * [`Page.interstitialShown`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialShown)
  928. * [`Page.javascriptDialogClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogClosed)
  929. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening)
  930. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent)
  931. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired)
  932. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument)
  933. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame)
  934. * [`Page.screencastVisibilityChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastVisibilityChanged)
  935. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen)
  936. * [`Page.compilationCacheProduced`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-compilationCacheProduced)
  937. #### `Page`: new types
  938. * [`Page.FrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameId)
  939. * [`Page.AdFrameType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AdFrameType)
  940. * [`Page.SecureContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-SecureContextType)
  941. * [`Page.CrossOriginIsolatedContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-CrossOriginIsolatedContextType)
  942. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame)
  943. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource)
  944. * [`Page.FrameResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResourceTree)
  945. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree)
  946. * [`Page.ScriptIdentifier`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScriptIdentifier)
  947. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType)
  948. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry)
  949. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata)
  950. * [`Page.DialogType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-DialogType)
  951. * [`Page.AppManifestError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestError)
  952. * [`Page.AppManifestParsedProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestParsedProperties)
  953. * [`Page.LayoutViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-LayoutViewport)
  954. * [`Page.VisualViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-VisualViewport)
  955. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport)
  956. * [`Page.FontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontFamilies)
  957. * [`Page.FontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontSizes)
  958. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  959. * [`Page.ClientNavigationDisposition`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationDisposition)
  960. * [`Page.InstallabilityErrorArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityErrorArgument)
  961. * [`Page.InstallabilityError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityError)
  962. * [`Page.ReferrerPolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ReferrerPolicy)
  963. #### `Performance`: new commands
  964. * [`Performance.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-disable)
  965. * [`Performance.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-enable)
  966. * [`Performance.setTimeDomain`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-setTimeDomain)
  967. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics)
  968. #### `Performance`: new event
  969. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics)
  970. #### `Performance`: new type
  971. * [`Performance.Metric`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#type-Metric)
  972. #### `Security`: new commands
  973. * [`Security.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-disable)
  974. * [`Security.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-enable)
  975. * [`Security.setIgnoreCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setIgnoreCertificateErrors)
  976. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError)
  977. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors)
  978. #### `Security`: new events
  979. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError)
  980. * [`Security.visibleSecurityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-visibleSecurityStateChanged)
  981. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged)
  982. #### `Security`: new types
  983. * [`Security.CertificateId`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateId)
  984. * [`Security.MixedContentType`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-MixedContentType)
  985. * [`Security.SecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityState)
  986. * [`Security.CertificateSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateSecurityState)
  987. * [`Security.SafetyTipStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipStatus)
  988. * [`Security.SafetyTipInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipInfo)
  989. * [`Security.VisibleSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-VisibleSecurityState)
  990. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation)
  991. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus)
  992. * [`Security.CertificateErrorAction`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateErrorAction)
  993. #### `ServiceWorker`: new commands
  994. * [`ServiceWorker.deliverPushMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-deliverPushMessage)
  995. * [`ServiceWorker.disable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-disable)
  996. * [`ServiceWorker.dispatchSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchSyncEvent)
  997. * [`ServiceWorker.dispatchPeriodicSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchPeriodicSyncEvent)
  998. * [`ServiceWorker.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-enable)
  999. * [`ServiceWorker.inspectWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-inspectWorker)
  1000. * [`ServiceWorker.setForceUpdateOnPageLoad`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-setForceUpdateOnPageLoad)
  1001. * [`ServiceWorker.skipWaiting`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-skipWaiting)
  1002. * [`ServiceWorker.startWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-startWorker)
  1003. * [`ServiceWorker.stopAllWorkers`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopAllWorkers)
  1004. * [`ServiceWorker.stopWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopWorker)
  1005. * [`ServiceWorker.unregister`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-unregister)
  1006. * [`ServiceWorker.updateRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-updateRegistration)
  1007. #### `ServiceWorker`: new events
  1008. * [`ServiceWorker.workerErrorReported`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerErrorReported)
  1009. * [`ServiceWorker.workerRegistrationUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerRegistrationUpdated)
  1010. * [`ServiceWorker.workerVersionUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerVersionUpdated)
  1011. #### `ServiceWorker`: new types
  1012. * [`ServiceWorker.RegistrationID`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-RegistrationID)
  1013. * [`ServiceWorker.ServiceWorkerRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerRegistration)
  1014. * [`ServiceWorker.ServiceWorkerVersionRunningStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionRunningStatus)
  1015. * [`ServiceWorker.ServiceWorkerVersionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionStatus)
  1016. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion)
  1017. * [`ServiceWorker.ServiceWorkerErrorMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerErrorMessage)
  1018. #### `Storage`: new commands
  1019. * [`Storage.clearDataForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin)
  1020. * [`Storage.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getCookies)
  1021. * [`Storage.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-setCookies)
  1022. * [`Storage.clearCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearCookies)
  1023. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  1024. * [`Storage.trackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackCacheStorageForOrigin)
  1025. * [`Storage.trackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackIndexedDBForOrigin)
  1026. * [`Storage.untrackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackCacheStorageForOrigin)
  1027. * [`Storage.untrackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackIndexedDBForOrigin)
  1028. #### `Storage`: new events
  1029. * [`Storage.cacheStorageContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageContentUpdated)
  1030. * [`Storage.cacheStorageListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageListUpdated)
  1031. * [`Storage.indexedDBContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBContentUpdated)
  1032. * [`Storage.indexedDBListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBListUpdated)
  1033. #### `Storage`: new types
  1034. * [`Storage.StorageType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType)
  1035. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType)
  1036. #### `SystemInfo`: new commands
  1037. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo)
  1038. * [`SystemInfo.getProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getProcessInfo)
  1039. #### `SystemInfo`: new types
  1040. * [`SystemInfo.GPUDevice`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUDevice)
  1041. * [`SystemInfo.Size`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-Size)
  1042. * [`SystemInfo.VideoDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoDecodeAcceleratorCapability)
  1043. * [`SystemInfo.VideoEncodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoEncodeAcceleratorCapability)
  1044. * [`SystemInfo.SubsamplingFormat`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-SubsamplingFormat)
  1045. * [`SystemInfo.ImageType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageType)
  1046. * [`SystemInfo.ImageDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageDecodeAcceleratorCapability)
  1047. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo)
  1048. * [`SystemInfo.ProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessInfo)
  1049. #### `Target`: new commands
  1050. * [`Target.activateTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-activateTarget)
  1051. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget)
  1052. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget)
  1053. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget)
  1054. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol)
  1055. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext)
  1056. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts)
  1057. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget)
  1058. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget)
  1059. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext)
  1060. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo)
  1061. * [`Target.getTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargets)
  1062. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget)
  1063. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach)
  1064. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets)
  1065. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations)
  1066. #### `Target`: new events
  1067. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget)
  1068. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget)
  1069. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget)
  1070. * [`Target.targetCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCreated)
  1071. * [`Target.targetDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetDestroyed)
  1072. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed)
  1073. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged)
  1074. #### `Target`: new types
  1075. * [`Target.TargetID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID)
  1076. * [`Target.SessionID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-SessionID)
  1077. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo)
  1078. * [`Target.RemoteLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-RemoteLocation)
  1079. #### `Tethering`: new commands
  1080. * [`Tethering.bind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-bind)
  1081. * [`Tethering.unbind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-unbind)
  1082. #### `Tethering`: new event
  1083. * [`Tethering.accepted`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#event-accepted)
  1084. #### `Tracing`: new commands
  1085. * [`Tracing.end`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-end)
  1086. * [`Tracing.getCategories`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-getCategories)
  1087. * [`Tracing.recordClockSyncMarker`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-recordClockSyncMarker)
  1088. * [`Tracing.requestMemoryDump`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-requestMemoryDump)
  1089. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start)
  1090. #### `Tracing`: new events
  1091. * [`Tracing.bufferUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-bufferUsage)
  1092. * [`Tracing.dataCollected`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-dataCollected)
  1093. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete)
  1094. #### `Tracing`: new types
  1095. * [`Tracing.MemoryDumpConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-MemoryDumpConfig)
  1096. * [`Tracing.TraceConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TraceConfig)
  1097. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  1098. * [`Tracing.StreamCompression`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamCompression)
  1099. #### `Fetch`: new commands
  1100. * [`Fetch.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-disable)
  1101. * [`Fetch.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-enable)
  1102. * [`Fetch.failRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-failRequest)
  1103. * [`Fetch.fulfillRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-fulfillRequest)
  1104. * [`Fetch.continueRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest)
  1105. * [`Fetch.continueWithAuth`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueWithAuth)
  1106. * [`Fetch.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-getResponseBody)
  1107. * [`Fetch.takeResponseBodyAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-takeResponseBodyAsStream)
  1108. #### `Fetch`: new events
  1109. * [`Fetch.requestPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused)
  1110. * [`Fetch.authRequired`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-authRequired)
  1111. #### `Fetch`: new types
  1112. * [`Fetch.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestId)
  1113. * [`Fetch.RequestStage`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestStage)
  1114. * [`Fetch.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestPattern)
  1115. * [`Fetch.HeaderEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-HeaderEntry)
  1116. * [`Fetch.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallenge)
  1117. * [`Fetch.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallengeResponse)
  1118. #### `WebAudio`: new commands
  1119. * [`WebAudio.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-enable)
  1120. * [`WebAudio.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-disable)
  1121. * [`WebAudio.getRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-getRealtimeData)
  1122. #### `WebAudio`: new events
  1123. * [`WebAudio.contextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextCreated)
  1124. * [`WebAudio.contextWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextWillBeDestroyed)
  1125. * [`WebAudio.contextChanged`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextChanged)
  1126. * [`WebAudio.audioListenerCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerCreated)
  1127. * [`WebAudio.audioListenerWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerWillBeDestroyed)
  1128. * [`WebAudio.audioNodeCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeCreated)
  1129. * [`WebAudio.audioNodeWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeWillBeDestroyed)
  1130. * [`WebAudio.audioParamCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamCreated)
  1131. * [`WebAudio.audioParamWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamWillBeDestroyed)
  1132. * [`WebAudio.nodesConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesConnected)
  1133. * [`WebAudio.nodesDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesDisconnected)
  1134. * [`WebAudio.nodeParamConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamConnected)
  1135. * [`WebAudio.nodeParamDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamDisconnected)
  1136. #### `WebAudio`: new types
  1137. * [`WebAudio.GraphObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-GraphObjectId)
  1138. * [`WebAudio.ContextType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextType)
  1139. * [`WebAudio.ContextState`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextState)
  1140. * [`WebAudio.NodeType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-NodeType)
  1141. * [`WebAudio.ChannelCountMode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelCountMode)
  1142. * [`WebAudio.ChannelInterpretation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelInterpretation)
  1143. * [`WebAudio.ParamType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ParamType)
  1144. * [`WebAudio.AutomationRate`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AutomationRate)
  1145. * [`WebAudio.ContextRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextRealtimeData)
  1146. * [`WebAudio.BaseAudioContext`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-BaseAudioContext)
  1147. * [`WebAudio.AudioListener`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioListener)
  1148. * [`WebAudio.AudioNode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioNode)
  1149. * [`WebAudio.AudioParam`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioParam)
  1150. #### `WebAuthn`: new commands
  1151. * [`WebAuthn.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-enable)
  1152. * [`WebAuthn.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-disable)
  1153. * [`WebAuthn.addVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addVirtualAuthenticator)
  1154. * [`WebAuthn.removeVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeVirtualAuthenticator)
  1155. * [`WebAuthn.addCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addCredential)
  1156. * [`WebAuthn.getCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredential)
  1157. * [`WebAuthn.getCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredentials)
  1158. * [`WebAuthn.removeCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeCredential)
  1159. * [`WebAuthn.clearCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-clearCredentials)
  1160. * [`WebAuthn.setUserVerified`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setUserVerified)
  1161. * [`WebAuthn.setAutomaticPresenceSimulation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setAutomaticPresenceSimulation)
  1162. #### `WebAuthn`: new types
  1163. * [`WebAuthn.AuthenticatorId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorId)
  1164. * [`WebAuthn.AuthenticatorProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorProtocol)
  1165. * [`WebAuthn.AuthenticatorTransport`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorTransport)
  1166. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions)
  1167. * [`WebAuthn.Credential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-Credential)
  1168. #### `Media`: new commands
  1169. * [`Media.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-enable)
  1170. * [`Media.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-disable)
  1171. #### `Media`: new events
  1172. * [`Media.playerPropertiesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerPropertiesChanged)
  1173. * [`Media.playerEventsAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerEventsAdded)
  1174. * [`Media.playerMessagesLogged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerMessagesLogged)
  1175. * [`Media.playerErrorsRaised`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerErrorsRaised)
  1176. * [`Media.playersCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playersCreated)
  1177. #### `Media`: new types
  1178. * [`Media.PlayerId`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerId)
  1179. * [`Media.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-Timestamp)
  1180. * [`Media.PlayerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerMessage)
  1181. * [`Media.PlayerProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerProperty)
  1182. * [`Media.PlayerEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEvent)
  1183. * [`Media.PlayerError`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerError)
  1184. ## Roll protocol to r814172
  1185. ###### _2020-10-06 05:15:54_ | Diff: [e736452...f99d711](https://github.com/ChromeDevTools/devtools-protocol/compare/e736452...f99d711)
  1186. #### `Console`: removed domains
  1187. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  1188. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  1189. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  1190. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  1191. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  1192. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  1193. #### `Accessibility`: removed domains
  1194. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  1195. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  1196. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  1197. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  1198. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  1199. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  1200. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  1201. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  1202. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  1203. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  1204. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  1205. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  1206. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  1207. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  1208. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  1209. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  1210. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  1211. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  1212. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  1213. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  1214. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  1215. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  1216. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  1217. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  1218. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  1219. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  1220. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  1221. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  1222. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  1223. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  1224. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  1225. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  1226. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  1227. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  1228. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  1229. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  1230. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  1231. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  1232. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  1233. ## Roll protocol to r814141
  1234. ###### _2020-10-06 02:16:18_ | Diff: [46e9147...e736452](https://github.com/ChromeDevTools/devtools-protocol/compare/46e9147...e736452)
  1235. #### `Network`: modified type
  1236. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The properties's `columnNumber` _added_.
  1237. ## Roll protocol to r814033
  1238. ###### _2020-10-05 18:16:13_ | Diff: [3e55bd0...46e9147](https://github.com/ChromeDevTools/devtools-protocol/compare/3e55bd0...46e9147)
  1239. #### `Console`: new domains
  1240. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  1241. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  1242. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  1243. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  1244. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  1245. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  1246. #### `Console`: new commands
  1247. * [`Console.clearMessages`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-clearMessages)
  1248. * [`Console.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-disable)
  1249. * [`Console.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-enable)
  1250. #### `Console`: new event
  1251. * [`Console.messageAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#event-messageAdded)
  1252. #### `Console`: new type
  1253. * [`Console.ConsoleMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#type-ConsoleMessage)
  1254. #### `Debugger`: new commands
  1255. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation)
  1256. * [`Debugger.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-disable)
  1257. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable)
  1258. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame)
  1259. * [`Debugger.executeWasmEvaluator`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-executeWasmEvaluator)
  1260. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints)
  1261. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource)
  1262. * [`Debugger.getWasmBytecode`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getWasmBytecode)
  1263. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace)
  1264. * [`Debugger.pause`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pause)
  1265. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall)
  1266. * [`Debugger.removeBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-removeBreakpoint)
  1267. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame)
  1268. * [`Debugger.resume`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-resume)
  1269. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent)
  1270. * [`Debugger.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setAsyncCallStackDepth)
  1271. * [`Debugger.setBlackboxPatterns`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxPatterns)
  1272. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges)
  1273. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint)
  1274. * [`Debugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setInstrumentationBreakpoint)
  1275. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl)
  1276. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall)
  1277. * [`Debugger.setBreakpointsActive`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointsActive)
  1278. * [`Debugger.setPauseOnExceptions`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setPauseOnExceptions)
  1279. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue)
  1280. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource)
  1281. * [`Debugger.setSkipAllPauses`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setSkipAllPauses)
  1282. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue)
  1283. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto)
  1284. * [`Debugger.stepOut`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOut)
  1285. * [`Debugger.stepOver`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOver)
  1286. #### `Debugger`: new events
  1287. * [`Debugger.breakpointResolved`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-breakpointResolved)
  1288. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused)
  1289. * [`Debugger.resumed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-resumed)
  1290. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse)
  1291. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed)
  1292. #### `Debugger`: new types
  1293. * [`Debugger.BreakpointId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakpointId)
  1294. * [`Debugger.CallFrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrameId)
  1295. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location)
  1296. * [`Debugger.ScriptPosition`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptPosition)
  1297. * [`Debugger.LocationRange`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-LocationRange)
  1298. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame)
  1299. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope)
  1300. * [`Debugger.SearchMatch`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-SearchMatch)
  1301. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation)
  1302. * [`Debugger.ScriptLanguage`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptLanguage)
  1303. * [`Debugger.DebugSymbols`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-DebugSymbols)
  1304. #### `HeapProfiler`: new commands
  1305. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject)
  1306. * [`HeapProfiler.collectGarbage`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-collectGarbage)
  1307. * [`HeapProfiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-disable)
  1308. * [`HeapProfiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-enable)
  1309. * [`HeapProfiler.getHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getHeapObjectId)
  1310. * [`HeapProfiler.getObjectByHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getObjectByHeapObjectId)
  1311. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile)
  1312. * [`HeapProfiler.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startSampling)
  1313. * [`HeapProfiler.startTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startTrackingHeapObjects)
  1314. * [`HeapProfiler.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopSampling)
  1315. * [`HeapProfiler.stopTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopTrackingHeapObjects)
  1316. * [`HeapProfiler.takeHeapSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-takeHeapSnapshot)
  1317. #### `HeapProfiler`: new events
  1318. * [`HeapProfiler.addHeapSnapshotChunk`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-addHeapSnapshotChunk)
  1319. * [`HeapProfiler.heapStatsUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-heapStatsUpdate)
  1320. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId)
  1321. * [`HeapProfiler.reportHeapSnapshotProgress`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-reportHeapSnapshotProgress)
  1322. * [`HeapProfiler.resetProfiles`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-resetProfiles)
  1323. #### `HeapProfiler`: new types
  1324. * [`HeapProfiler.HeapSnapshotObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-HeapSnapshotObjectId)
  1325. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode)
  1326. * [`HeapProfiler.SamplingHeapProfileSample`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileSample)
  1327. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile)
  1328. #### `Profiler`: new commands
  1329. * [`Profiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disable)
  1330. * [`Profiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enable)
  1331. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage)
  1332. * [`Profiler.setSamplingInterval`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-setSamplingInterval)
  1333. * [`Profiler.start`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-start)
  1334. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage)
  1335. * [`Profiler.startTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startTypeProfile)
  1336. * [`Profiler.stop`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stop)
  1337. * [`Profiler.stopPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopPreciseCoverage)
  1338. * [`Profiler.stopTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopTypeProfile)
  1339. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage)
  1340. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile)
  1341. * [`Profiler.enableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableCounters)
  1342. * [`Profiler.disableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableCounters)
  1343. * [`Profiler.getCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getCounters)
  1344. * [`Profiler.enableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableRuntimeCallStats)
  1345. * [`Profiler.disableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableRuntimeCallStats)
  1346. * [`Profiler.getRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getRuntimeCallStats)
  1347. #### `Profiler`: new events
  1348. * [`Profiler.consoleProfileFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileFinished)
  1349. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted)
  1350. * [`Profiler.preciseCoverageDeltaUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-preciseCoverageDeltaUpdate)
  1351. #### `Profiler`: new types
  1352. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode)
  1353. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile)
  1354. * [`Profiler.PositionTickInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-PositionTickInfo)
  1355. * [`Profiler.CoverageRange`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CoverageRange)
  1356. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage)
  1357. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage)
  1358. * [`Profiler.TypeObject`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeObject)
  1359. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry)
  1360. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile)
  1361. * [`Profiler.CounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CounterInfo)
  1362. * [`Profiler.RuntimeCallCounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-RuntimeCallCounterInfo)
  1363. #### `Runtime`: new commands
  1364. * [`Runtime.awaitPromise`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise)
  1365. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn)
  1366. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript)
  1367. * [`Runtime.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-disable)
  1368. * [`Runtime.discardConsoleEntries`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-discardConsoleEntries)
  1369. * [`Runtime.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-enable)
  1370. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate)
  1371. * [`Runtime.getIsolateId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getIsolateId)
  1372. * [`Runtime.getHeapUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getHeapUsage)
  1373. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties)
  1374. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames)
  1375. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects)
  1376. * [`Runtime.releaseObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject)
  1377. * [`Runtime.releaseObjectGroup`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObjectGroup)
  1378. * [`Runtime.runIfWaitingForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runIfWaitingForDebugger)
  1379. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript)
  1380. * [`Runtime.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setAsyncCallStackDepth)
  1381. * [`Runtime.setCustomObjectFormatterEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setCustomObjectFormatterEnabled)
  1382. * [`Runtime.setMaxCallStackSizeToCapture`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setMaxCallStackSizeToCapture)
  1383. * [`Runtime.terminateExecution`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-terminateExecution)
  1384. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding)
  1385. * [`Runtime.removeBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-removeBinding)
  1386. #### `Runtime`: new events
  1387. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled)
  1388. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled)
  1389. * [`Runtime.exceptionRevoked`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionRevoked)
  1390. * [`Runtime.exceptionThrown`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionThrown)
  1391. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated)
  1392. * [`Runtime.executionContextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextDestroyed)
  1393. * [`Runtime.executionContextsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextsCleared)
  1394. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested)
  1395. #### `Runtime`: new types
  1396. * [`Runtime.ScriptId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ScriptId)
  1397. * [`Runtime.RemoteObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObjectId)
  1398. * [`Runtime.UnserializableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UnserializableValue)
  1399. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject)
  1400. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview)
  1401. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview)
  1402. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview)
  1403. * [`Runtime.EntryPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview)
  1404. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor)
  1405. * [`Runtime.InternalPropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor)
  1406. * [`Runtime.PrivatePropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor)
  1407. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument)
  1408. * [`Runtime.ExecutionContextId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextId)
  1409. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription)
  1410. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails)
  1411. * [`Runtime.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-Timestamp)
  1412. * [`Runtime.TimeDelta`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-TimeDelta)
  1413. * [`Runtime.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame)
  1414. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace)
  1415. * [`Runtime.UniqueDebuggerId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UniqueDebuggerId)
  1416. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId)
  1417. #### `Schema`: new command
  1418. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains)
  1419. #### `Schema`: new type
  1420. * [`Schema.Domain`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#type-Domain)
  1421. #### `Accessibility`: new domains
  1422. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  1423. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  1424. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  1425. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  1426. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  1427. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  1428. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  1429. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  1430. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  1431. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  1432. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  1433. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  1434. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  1435. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  1436. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  1437. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  1438. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  1439. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  1440. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  1441. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  1442. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  1443. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  1444. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  1445. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  1446. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  1447. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  1448. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  1449. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  1450. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  1451. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  1452. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  1453. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  1454. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  1455. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  1456. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  1457. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  1458. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  1459. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  1460. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  1461. #### `Accessibility`: new commands
  1462. * [`Accessibility.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-disable)
  1463. * [`Accessibility.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-enable)
  1464. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree)
  1465. * [`Accessibility.getFullAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getFullAXTree)
  1466. * [`Accessibility.queryAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-queryAXTree)
  1467. #### `Accessibility`: new types
  1468. * [`Accessibility.AXNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNodeId)
  1469. * [`Accessibility.AXValueType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueType)
  1470. * [`Accessibility.AXValueSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSourceType)
  1471. * [`Accessibility.AXValueNativeSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueNativeSourceType)
  1472. * [`Accessibility.AXValueSource`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSource)
  1473. * [`Accessibility.AXRelatedNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelatedNode)
  1474. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty)
  1475. * [`Accessibility.AXValue`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValue)
  1476. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName)
  1477. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode)
  1478. #### `Animation`: new commands
  1479. * [`Animation.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-disable)
  1480. * [`Animation.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-enable)
  1481. * [`Animation.getCurrentTime`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getCurrentTime)
  1482. * [`Animation.getPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getPlaybackRate)
  1483. * [`Animation.releaseAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-releaseAnimations)
  1484. * [`Animation.resolveAnimation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-resolveAnimation)
  1485. * [`Animation.seekAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-seekAnimations)
  1486. * [`Animation.setPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPaused)
  1487. * [`Animation.setPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPlaybackRate)
  1488. * [`Animation.setTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setTiming)
  1489. #### `Animation`: new events
  1490. * [`Animation.animationCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCanceled)
  1491. * [`Animation.animationCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCreated)
  1492. * [`Animation.animationStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationStarted)
  1493. #### `Animation`: new types
  1494. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation)
  1495. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect)
  1496. * [`Animation.KeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframesRule)
  1497. * [`Animation.KeyframeStyle`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframeStyle)
  1498. #### `ApplicationCache`: new commands
  1499. * [`ApplicationCache.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-enable)
  1500. * [`ApplicationCache.getApplicationCacheForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getApplicationCacheForFrame)
  1501. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests)
  1502. * [`ApplicationCache.getManifestForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getManifestForFrame)
  1503. #### `ApplicationCache`: new events
  1504. * [`ApplicationCache.applicationCacheStatusUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-applicationCacheStatusUpdated)
  1505. * [`ApplicationCache.networkStateUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-networkStateUpdated)
  1506. #### `ApplicationCache`: new types
  1507. * [`ApplicationCache.ApplicationCacheResource`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCacheResource)
  1508. * [`ApplicationCache.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCache)
  1509. * [`ApplicationCache.FrameWithManifest`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-FrameWithManifest)
  1510. #### `Audits`: new commands
  1511. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse)
  1512. * [`Audits.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-disable)
  1513. * [`Audits.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-enable)
  1514. #### `Audits`: new event
  1515. * [`Audits.issueAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#event-issueAdded)
  1516. #### `Audits`: new types
  1517. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie)
  1518. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  1519. * [`Audits.AffectedFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedFrame)
  1520. * [`Audits.SameSiteCookieExclusionReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieExclusionReason)
  1521. * [`Audits.SameSiteCookieWarningReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieWarningReason)
  1522. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  1523. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails)
  1524. * [`Audits.MixedContentResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResolutionStatus)
  1525. * [`Audits.MixedContentResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResourceType)
  1526. * [`Audits.MixedContentIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentIssueDetails)
  1527. * [`Audits.BlockedByResponseReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseReason)
  1528. * [`Audits.BlockedByResponseIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseIssueDetails)
  1529. * [`Audits.HeavyAdResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdResolutionStatus)
  1530. * [`Audits.HeavyAdReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdReason)
  1531. * [`Audits.HeavyAdIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdIssueDetails)
  1532. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  1533. * [`Audits.SourceCodeLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SourceCodeLocation)
  1534. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  1535. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode)
  1536. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails)
  1537. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue)
  1538. #### `BackgroundService`: new commands
  1539. * [`BackgroundService.startObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-startObserving)
  1540. * [`BackgroundService.stopObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-stopObserving)
  1541. * [`BackgroundService.setRecording`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-setRecording)
  1542. * [`BackgroundService.clearEvents`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-clearEvents)
  1543. #### `BackgroundService`: new events
  1544. * [`BackgroundService.recordingStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-recordingStateChanged)
  1545. * [`BackgroundService.backgroundServiceEventReceived`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-backgroundServiceEventReceived)
  1546. #### `BackgroundService`: new types
  1547. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName)
  1548. * [`BackgroundService.EventMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-EventMetadata)
  1549. * [`BackgroundService.BackgroundServiceEvent`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-BackgroundServiceEvent)
  1550. #### `Browser`: new commands
  1551. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission)
  1552. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions)
  1553. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions)
  1554. * [`Browser.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDownloadBehavior)
  1555. * [`Browser.close`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-close)
  1556. * [`Browser.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crash)
  1557. * [`Browser.crashGpuProcess`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crashGpuProcess)
  1558. * [`Browser.getVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getVersion)
  1559. * [`Browser.getBrowserCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getBrowserCommandLine)
  1560. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms)
  1561. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram)
  1562. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds)
  1563. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget)
  1564. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds)
  1565. * [`Browser.setDockTile`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDockTile)
  1566. #### `Browser`: new types
  1567. * [`Browser.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-BrowserContextID)
  1568. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID)
  1569. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState)
  1570. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds)
  1571. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType)
  1572. * [`Browser.PermissionSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionSetting)
  1573. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor)
  1574. * [`Browser.Bucket`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bucket)
  1575. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram)
  1576. #### `CSS`: new commands
  1577. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule)
  1578. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames)
  1579. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet)
  1580. * [`CSS.disable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-disable)
  1581. * [`CSS.enable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable)
  1582. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState)
  1583. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors)
  1584. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode)
  1585. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode)
  1586. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode)
  1587. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries)
  1588. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode)
  1589. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText)
  1590. * [`CSS.trackComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)
  1591. * [`CSS.takeComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)
  1592. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode)
  1593. * [`CSS.setKeyframeKey`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey)
  1594. * [`CSS.setMediaText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText)
  1595. * [`CSS.setRuleSelector`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector)
  1596. * [`CSS.setStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText)
  1597. * [`CSS.setStyleTexts`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts)
  1598. * [`CSS.startRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking)
  1599. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking)
  1600. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta)
  1601. * [`CSS.setLocalFontsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)
  1602. #### `CSS`: new events
  1603. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated)
  1604. * [`CSS.mediaQueryResultChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-mediaQueryResultChanged)
  1605. * [`CSS.styleSheetAdded`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetAdded)
  1606. * [`CSS.styleSheetChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetChanged)
  1607. * [`CSS.styleSheetRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetRemoved)
  1608. #### `CSS`: new types
  1609. * [`CSS.StyleSheetId`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetId)
  1610. * [`CSS.StyleSheetOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetOrigin)
  1611. * [`CSS.PseudoElementMatches`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PseudoElementMatches)
  1612. * [`CSS.InheritedStyleEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InheritedStyleEntry)
  1613. * [`CSS.RuleMatch`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleMatch)
  1614. * [`CSS.Value`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-Value)
  1615. * [`CSS.SelectorList`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SelectorList)
  1616. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader)
  1617. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule)
  1618. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage)
  1619. * [`CSS.SourceRange`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SourceRange)
  1620. * [`CSS.ShorthandEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-ShorthandEntry)
  1621. * [`CSS.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSComputedStyleProperty)
  1622. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle)
  1623. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty)
  1624. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia)
  1625. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery)
  1626. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression)
  1627. * [`CSS.PlatformFontUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PlatformFontUsage)
  1628. * [`CSS.FontVariationAxis`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontVariationAxis)
  1629. * [`CSS.FontFace`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontFace)
  1630. * [`CSS.CSSKeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframesRule)
  1631. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule)
  1632. * [`CSS.StyleDeclarationEdit`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleDeclarationEdit)
  1633. #### `CacheStorage`: new commands
  1634. * [`CacheStorage.deleteCache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteCache)
  1635. * [`CacheStorage.deleteEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteEntry)
  1636. * [`CacheStorage.requestCacheNames`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCacheNames)
  1637. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse)
  1638. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries)
  1639. #### `CacheStorage`: new types
  1640. * [`CacheStorage.CacheId`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CacheId)
  1641. * [`CacheStorage.CachedResponseType`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponseType)
  1642. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry)
  1643. * [`CacheStorage.Cache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Cache)
  1644. * [`CacheStorage.Header`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Header)
  1645. * [`CacheStorage.CachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponse)
  1646. #### `Cast`: new commands
  1647. * [`Cast.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-enable)
  1648. * [`Cast.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-disable)
  1649. * [`Cast.setSinkToUse`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-setSinkToUse)
  1650. * [`Cast.startTabMirroring`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-startTabMirroring)
  1651. * [`Cast.stopCasting`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-stopCasting)
  1652. #### `Cast`: new events
  1653. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated)
  1654. * [`Cast.issueUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-issueUpdated)
  1655. #### `Cast`: new type
  1656. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  1657. #### `DOM`: new commands
  1658. * [`DOM.collectClassNamesFromSubtree`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-collectClassNamesFromSubtree)
  1659. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo)
  1660. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode)
  1661. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  1662. * [`DOM.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-disable)
  1663. * [`DOM.discardSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-discardSearchResults)
  1664. * [`DOM.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-enable)
  1665. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus)
  1666. * [`DOM.getAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getAttributes)
  1667. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel)
  1668. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads)
  1669. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument)
  1670. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument)
  1671. * [`DOM.getNodesForSubtreeByStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodesForSubtreeByStyle)
  1672. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation)
  1673. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML)
  1674. * [`DOM.getRelayoutBoundary`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getRelayoutBoundary)
  1675. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults)
  1676. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight)
  1677. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode)
  1678. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect)
  1679. * [`DOM.markUndoableState`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-markUndoableState)
  1680. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo)
  1681. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch)
  1682. * [`DOM.pushNodeByPathToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodeByPathToFrontend)
  1683. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend)
  1684. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector)
  1685. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll)
  1686. * [`DOM.redo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-redo)
  1687. * [`DOM.removeAttribute`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeAttribute)
  1688. * [`DOM.removeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeNode)
  1689. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes)
  1690. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode)
  1691. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode)
  1692. * [`DOM.setAttributeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributeValue)
  1693. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText)
  1694. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles)
  1695. * [`DOM.setNodeStackTracesEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeStackTracesEnabled)
  1696. * [`DOM.getNodeStackTraces`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeStackTraces)
  1697. * [`DOM.getFileInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFileInfo)
  1698. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode)
  1699. * [`DOM.setNodeName`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeName)
  1700. * [`DOM.setNodeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeValue)
  1701. * [`DOM.setOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setOuterHTML)
  1702. * [`DOM.undo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-undo)
  1703. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner)
  1704. #### `DOM`: new events
  1705. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified)
  1706. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved)
  1707. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified)
  1708. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated)
  1709. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted)
  1710. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved)
  1711. * [`DOM.distributedNodesUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-distributedNodesUpdated)
  1712. * [`DOM.documentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-documentUpdated)
  1713. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated)
  1714. * [`DOM.pseudoElementAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementAdded)
  1715. * [`DOM.pseudoElementRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementRemoved)
  1716. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes)
  1717. * [`DOM.shadowRootPopped`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPopped)
  1718. * [`DOM.shadowRootPushed`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPushed)
  1719. #### `DOM`: new types
  1720. * [`DOM.NodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-NodeId)
  1721. * [`DOM.BackendNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNodeId)
  1722. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode)
  1723. * [`DOM.PseudoType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-PseudoType)
  1724. * [`DOM.ShadowRootType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShadowRootType)
  1725. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node)
  1726. * [`DOM.RGBA`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-RGBA)
  1727. * [`DOM.Quad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Quad)
  1728. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel)
  1729. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo)
  1730. * [`DOM.Rect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Rect)
  1731. * [`DOM.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-CSSComputedStyleProperty)
  1732. #### `DOMDebugger`: new commands
  1733. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners)
  1734. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint)
  1735. * [`DOMDebugger.removeEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeEventListenerBreakpoint)
  1736. * [`DOMDebugger.removeInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeInstrumentationBreakpoint)
  1737. * [`DOMDebugger.removeXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeXHRBreakpoint)
  1738. * [`DOMDebugger.setDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setDOMBreakpoint)
  1739. * [`DOMDebugger.setEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setEventListenerBreakpoint)
  1740. * [`DOMDebugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setInstrumentationBreakpoint)
  1741. * [`DOMDebugger.setXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setXHRBreakpoint)
  1742. #### `DOMDebugger`: new types
  1743. * [`DOMDebugger.DOMBreakpointType`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-DOMBreakpointType)
  1744. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener)
  1745. #### `DOMSnapshot`: new commands
  1746. * [`DOMSnapshot.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-disable)
  1747. * [`DOMSnapshot.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-enable)
  1748. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot)
  1749. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot)
  1750. #### `DOMSnapshot`: new types
  1751. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode)
  1752. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox)
  1753. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode)
  1754. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle)
  1755. * [`DOMSnapshot.NameValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NameValue)
  1756. * [`DOMSnapshot.StringIndex`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StringIndex)
  1757. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings)
  1758. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData)
  1759. * [`DOMSnapshot.RareBooleanData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareBooleanData)
  1760. * [`DOMSnapshot.RareIntegerData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareIntegerData)
  1761. * [`DOMSnapshot.Rectangle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-Rectangle)
  1762. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot)
  1763. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot)
  1764. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot)
  1765. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot)
  1766. #### `DOMStorage`: new commands
  1767. * [`DOMStorage.clear`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-clear)
  1768. * [`DOMStorage.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-disable)
  1769. * [`DOMStorage.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-enable)
  1770. * [`DOMStorage.getDOMStorageItems`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-getDOMStorageItems)
  1771. * [`DOMStorage.removeDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-removeDOMStorageItem)
  1772. * [`DOMStorage.setDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-setDOMStorageItem)
  1773. #### `DOMStorage`: new events
  1774. * [`DOMStorage.domStorageItemAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemAdded)
  1775. * [`DOMStorage.domStorageItemRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemRemoved)
  1776. * [`DOMStorage.domStorageItemUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemUpdated)
  1777. * [`DOMStorage.domStorageItemsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemsCleared)
  1778. #### `DOMStorage`: new types
  1779. * [`DOMStorage.StorageId`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-StorageId)
  1780. * [`DOMStorage.Item`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-Item)
  1781. #### `Database`: new commands
  1782. * [`Database.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-disable)
  1783. * [`Database.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-enable)
  1784. * [`Database.executeSQL`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-executeSQL)
  1785. * [`Database.getDatabaseTableNames`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-getDatabaseTableNames)
  1786. #### `Database`: new event
  1787. * [`Database.addDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#event-addDatabase)
  1788. #### `Database`: new types
  1789. * [`Database.DatabaseId`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-DatabaseId)
  1790. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database)
  1791. * [`Database.Error`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Error)
  1792. #### `DeviceOrientation`: new commands
  1793. * [`DeviceOrientation.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-clearDeviceOrientationOverride)
  1794. * [`DeviceOrientation.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-setDeviceOrientationOverride)
  1795. #### `Emulation`: new commands
  1796. * [`Emulation.canEmulate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-canEmulate)
  1797. * [`Emulation.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearDeviceMetricsOverride)
  1798. * [`Emulation.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearGeolocationOverride)
  1799. * [`Emulation.resetPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-resetPageScaleFactor)
  1800. * [`Emulation.setFocusEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setFocusEmulationEnabled)
  1801. * [`Emulation.setCPUThrottlingRate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setCPUThrottlingRate)
  1802. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride)
  1803. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride)
  1804. * [`Emulation.setScrollbarsHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScrollbarsHidden)
  1805. * [`Emulation.setDocumentCookieDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDocumentCookieDisabled)
  1806. * [`Emulation.setEmitTouchEventsForMouse`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmitTouchEventsForMouse)
  1807. * [`Emulation.setEmulatedMedia`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedMedia)
  1808. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  1809. * [`Emulation.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setGeolocationOverride)
  1810. * [`Emulation.setIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setIdleOverride)
  1811. * [`Emulation.clearIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearIdleOverride)
  1812. * [`Emulation.setNavigatorOverrides`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setNavigatorOverrides)
  1813. * [`Emulation.setPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setPageScaleFactor)
  1814. * [`Emulation.setScriptExecutionDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScriptExecutionDisabled)
  1815. * [`Emulation.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTouchEmulationEnabled)
  1816. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy)
  1817. * [`Emulation.setLocaleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setLocaleOverride)
  1818. * [`Emulation.setTimezoneOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTimezoneOverride)
  1819. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize)
  1820. * [`Emulation.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setUserAgentOverride)
  1821. #### `Emulation`: new event
  1822. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired)
  1823. #### `Emulation`: new types
  1824. * [`Emulation.ScreenOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-ScreenOrientation)
  1825. * [`Emulation.DisplayFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-DisplayFeature)
  1826. * [`Emulation.MediaFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-MediaFeature)
  1827. * [`Emulation.VirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-VirtualTimePolicy)
  1828. * [`Emulation.UserAgentBrandVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentBrandVersion)
  1829. * [`Emulation.UserAgentMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentMetadata)
  1830. #### `HeadlessExperimental`: new commands
  1831. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame)
  1832. * [`HeadlessExperimental.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-disable)
  1833. * [`HeadlessExperimental.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enable)
  1834. #### `HeadlessExperimental`: new event
  1835. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged)
  1836. #### `HeadlessExperimental`: new type
  1837. * [`HeadlessExperimental.ScreenshotParams`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#type-ScreenshotParams)
  1838. #### `IO`: new commands
  1839. * [`IO.close`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-close)
  1840. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read)
  1841. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob)
  1842. #### `IO`: new type
  1843. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle)
  1844. #### `IndexedDB`: new commands
  1845. * [`IndexedDB.clearObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-clearObjectStore)
  1846. * [`IndexedDB.deleteDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteDatabase)
  1847. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries)
  1848. * [`IndexedDB.disable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-disable)
  1849. * [`IndexedDB.enable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-enable)
  1850. * [`IndexedDB.requestData`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestData)
  1851. * [`IndexedDB.getMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getMetadata)
  1852. * [`IndexedDB.requestDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabase)
  1853. * [`IndexedDB.requestDatabaseNames`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabaseNames)
  1854. #### `IndexedDB`: new types
  1855. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores)
  1856. * [`IndexedDB.ObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStore)
  1857. * [`IndexedDB.ObjectStoreIndex`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStoreIndex)
  1858. * [`IndexedDB.Key`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-Key)
  1859. * [`IndexedDB.KeyRange`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyRange)
  1860. * [`IndexedDB.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DataEntry)
  1861. * [`IndexedDB.KeyPath`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyPath)
  1862. #### `Input`: new commands
  1863. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent)
  1864. * [`Input.insertText`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-insertText)
  1865. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent)
  1866. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent)
  1867. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent)
  1868. * [`Input.setIgnoreInputEvents`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-setIgnoreInputEvents)
  1869. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture)
  1870. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture)
  1871. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture)
  1872. #### `Input`: new types
  1873. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint)
  1874. * [`Input.GestureSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-GestureSourceType)
  1875. * [`Input.MouseButton`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-MouseButton)
  1876. * [`Input.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TimeSinceEpoch)
  1877. #### `Inspector`: new commands
  1878. * [`Inspector.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-disable)
  1879. * [`Inspector.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-enable)
  1880. #### `Inspector`: new events
  1881. * [`Inspector.detached`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-detached)
  1882. * [`Inspector.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetCrashed)
  1883. * [`Inspector.targetReloadedAfterCrash`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetReloadedAfterCrash)
  1884. #### `LayerTree`: new commands
  1885. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons)
  1886. * [`LayerTree.disable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-disable)
  1887. * [`LayerTree.enable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-enable)
  1888. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot)
  1889. * [`LayerTree.makeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-makeSnapshot)
  1890. * [`LayerTree.profileSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-profileSnapshot)
  1891. * [`LayerTree.releaseSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-releaseSnapshot)
  1892. * [`LayerTree.replaySnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-replaySnapshot)
  1893. * [`LayerTree.snapshotCommandLog`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-snapshotCommandLog)
  1894. #### `LayerTree`: new events
  1895. * [`LayerTree.layerPainted`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerPainted)
  1896. * [`LayerTree.layerTreeDidChange`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerTreeDidChange)
  1897. #### `LayerTree`: new types
  1898. * [`LayerTree.LayerId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-LayerId)
  1899. * [`LayerTree.SnapshotId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-SnapshotId)
  1900. * [`LayerTree.ScrollRect`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-ScrollRect)
  1901. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint)
  1902. * [`LayerTree.PictureTile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PictureTile)
  1903. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer)
  1904. * [`LayerTree.PaintProfile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PaintProfile)
  1905. #### `Log`: new commands
  1906. * [`Log.clear`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-clear)
  1907. * [`Log.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-disable)
  1908. * [`Log.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-enable)
  1909. * [`Log.startViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-startViolationsReport)
  1910. * [`Log.stopViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-stopViolationsReport)
  1911. #### `Log`: new event
  1912. * [`Log.entryAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#event-entryAdded)
  1913. #### `Log`: new types
  1914. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry)
  1915. * [`Log.ViolationSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-ViolationSetting)
  1916. #### `Memory`: new commands
  1917. * [`Memory.getDOMCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getDOMCounters)
  1918. * [`Memory.prepareForLeakDetection`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-prepareForLeakDetection)
  1919. * [`Memory.forciblyPurgeJavaScriptMemory`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-forciblyPurgeJavaScriptMemory)
  1920. * [`Memory.setPressureNotificationsSuppressed`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-setPressureNotificationsSuppressed)
  1921. * [`Memory.simulatePressureNotification`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-simulatePressureNotification)
  1922. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  1923. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  1924. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile)
  1925. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile)
  1926. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  1927. #### `Memory`: new types
  1928. * [`Memory.PressureLevel`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-PressureLevel)
  1929. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  1930. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  1931. * [`Memory.Module`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-Module)
  1932. #### `Network`: new commands
  1933. * [`Network.canClearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCache)
  1934. * [`Network.canClearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCookies)
  1935. * [`Network.canEmulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canEmulateNetworkConditions)
  1936. * [`Network.clearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCache)
  1937. * [`Network.clearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCookies)
  1938. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest)
  1939. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies)
  1940. * [`Network.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-disable)
  1941. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions)
  1942. * [`Network.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enable)
  1943. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies)
  1944. * [`Network.getCertificate`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCertificate)
  1945. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies)
  1946. * [`Network.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBody)
  1947. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData)
  1948. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  1949. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream)
  1950. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR)
  1951. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody)
  1952. * [`Network.setBlockedURLs`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBlockedURLs)
  1953. * [`Network.setBypassServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBypassServiceWorker)
  1954. * [`Network.setCacheDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCacheDisabled)
  1955. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie)
  1956. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies)
  1957. * [`Network.setDataSizeLimitsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setDataSizeLimitsForTest)
  1958. * [`Network.setExtraHTTPHeaders`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setExtraHTTPHeaders)
  1959. * [`Network.setAttachDebugHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setAttachDebugHeader)
  1960. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception)
  1961. * [`Network.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setUserAgentOverride)
  1962. * [`Network.getSecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getSecurityIsolationStatus)
  1963. * [`Network.loadNetworkResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-loadNetworkResource)
  1964. #### `Network`: new events
  1965. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived)
  1966. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived)
  1967. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed)
  1968. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished)
  1969. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted)
  1970. * [`Network.requestServedFromCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestServedFromCache)
  1971. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent)
  1972. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority)
  1973. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived)
  1974. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived)
  1975. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed)
  1976. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated)
  1977. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError)
  1978. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived)
  1979. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent)
  1980. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived)
  1981. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest)
  1982. * [`Network.requestWillBeSentExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSentExtraInfo)
  1983. * [`Network.responseReceivedExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceivedExtraInfo)
  1984. #### `Network`: new types
  1985. * [`Network.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceType)
  1986. * [`Network.LoaderId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoaderId)
  1987. * [`Network.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestId)
  1988. * [`Network.InterceptionId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionId)
  1989. * [`Network.ErrorReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ErrorReason)
  1990. * [`Network.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TimeSinceEpoch)
  1991. * [`Network.MonotonicTime`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-MonotonicTime)
  1992. * [`Network.Headers`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Headers)
  1993. * [`Network.ConnectionType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ConnectionType)
  1994. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite)
  1995. * [`Network.CookiePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookiePriority)
  1996. * [`Network.ResourceTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceTiming)
  1997. * [`Network.ResourcePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourcePriority)
  1998. * [`Network.PostDataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-PostDataEntry)
  1999. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request)
  2000. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp)
  2001. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails)
  2002. * [`Network.CertificateTransparencyCompliance`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CertificateTransparencyCompliance)
  2003. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason)
  2004. * [`Network.ServiceWorkerResponseSource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ServiceWorkerResponseSource)
  2005. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response)
  2006. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest)
  2007. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse)
  2008. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame)
  2009. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource)
  2010. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator)
  2011. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie)
  2012. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason)
  2013. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason)
  2014. * [`Network.BlockedSetCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedSetCookieWithReason)
  2015. * [`Network.BlockedCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedCookieWithReason)
  2016. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam)
  2017. * [`Network.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallenge)
  2018. * [`Network.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse)
  2019. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  2020. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern)
  2021. * [`Network.SignedExchangeSignature`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeSignature)
  2022. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader)
  2023. * [`Network.SignedExchangeErrorField`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeErrorField)
  2024. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError)
  2025. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo)
  2026. * [`Network.CrossOriginOpenerPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyValue)
  2027. * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus)
  2028. * [`Network.CrossOriginEmbedderPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyValue)
  2029. * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus)
  2030. * [`Network.SecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityIsolationStatus)
  2031. * [`Network.LoadNetworkResourcePageResult`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourcePageResult)
  2032. * [`Network.LoadNetworkResourceOptions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourceOptions)
  2033. #### `Overlay`: new commands
  2034. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  2035. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  2036. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  2037. * [`Overlay.getGridHighlightObjectsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getGridHighlightObjectsForTest)
  2038. * [`Overlay.getSourceOrderHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getSourceOrderHighlightObjectForTest)
  2039. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  2040. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  2041. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  2042. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  2043. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  2044. * [`Overlay.highlightSourceOrder`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightSourceOrder)
  2045. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  2046. * [`Overlay.setShowAdHighlights`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowAdHighlights)
  2047. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  2048. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  2049. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  2050. * [`Overlay.setShowGridOverlays`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowGridOverlays)
  2051. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  2052. * [`Overlay.setShowLayoutShiftRegions`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowLayoutShiftRegions)
  2053. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  2054. * [`Overlay.setShowHitTestBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHitTestBorders)
  2055. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  2056. * [`Overlay.setShowHinge`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHinge)
  2057. #### `Overlay`: new events
  2058. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  2059. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  2060. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested)
  2061. * [`Overlay.inspectModeCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectModeCanceled)
  2062. #### `Overlay`: new types
  2063. * [`Overlay.SourceOrderConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-SourceOrderConfig)
  2064. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig)
  2065. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  2066. * [`Overlay.ColorFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ColorFormat)
  2067. * [`Overlay.GridNodeHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridNodeHighlightConfig)
  2068. * [`Overlay.HingeConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HingeConfig)
  2069. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  2070. #### `Page`: new commands
  2071. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad)
  2072. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument)
  2073. * [`Page.bringToFront`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-bringToFront)
  2074. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot)
  2075. * [`Page.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureSnapshot)
  2076. * [`Page.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceMetricsOverride)
  2077. * [`Page.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceOrientationOverride)
  2078. * [`Page.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearGeolocationOverride)
  2079. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld)
  2080. * [`Page.deleteCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-deleteCookie)
  2081. * [`Page.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-disable)
  2082. * [`Page.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-enable)
  2083. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest)
  2084. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors)
  2085. * [`Page.getManifestIcons`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getManifestIcons)
  2086. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies)
  2087. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree)
  2088. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics)
  2089. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory)
  2090. * [`Page.resetNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-resetNavigationHistory)
  2091. * [`Page.getResourceContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceContent)
  2092. * [`Page.getResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceTree)
  2093. * [`Page.handleJavaScriptDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleJavaScriptDialog)
  2094. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate)
  2095. * [`Page.navigateToHistoryEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigateToHistoryEntry)
  2096. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF)
  2097. * [`Page.reload`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-reload)
  2098. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad)
  2099. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument)
  2100. * [`Page.screencastFrameAck`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-screencastFrameAck)
  2101. * [`Page.searchInResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-searchInResource)
  2102. * [`Page.setAdBlockingEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setAdBlockingEnabled)
  2103. * [`Page.setBypassCSP`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setBypassCSP)
  2104. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride)
  2105. * [`Page.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceOrientationOverride)
  2106. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies)
  2107. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes)
  2108. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent)
  2109. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior)
  2110. * [`Page.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setGeolocationOverride)
  2111. * [`Page.setLifecycleEventsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setLifecycleEventsEnabled)
  2112. * [`Page.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setTouchEmulationEnabled)
  2113. * [`Page.startScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-startScreencast)
  2114. * [`Page.stopLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopLoading)
  2115. * [`Page.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-crash)
  2116. * [`Page.close`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-close)
  2117. * [`Page.setWebLifecycleState`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setWebLifecycleState)
  2118. * [`Page.stopScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopScreencast)
  2119. * [`Page.setProduceCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setProduceCompilationCache)
  2120. * [`Page.addCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addCompilationCache)
  2121. * [`Page.clearCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearCompilationCache)
  2122. * [`Page.generateTestReport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-generateTestReport)
  2123. * [`Page.waitForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-waitForDebugger)
  2124. * [`Page.setInterceptFileChooserDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setInterceptFileChooserDialog)
  2125. #### `Page`: new events
  2126. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired)
  2127. * [`Page.fileChooserOpened`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-fileChooserOpened)
  2128. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached)
  2129. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation)
  2130. * [`Page.frameDetached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameDetached)
  2131. * [`Page.frameNavigated`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameNavigated)
  2132. * [`Page.frameResized`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameResized)
  2133. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  2134. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation)
  2135. * [`Page.frameStartedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStartedLoading)
  2136. * [`Page.frameStoppedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStoppedLoading)
  2137. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin)
  2138. * [`Page.downloadProgress`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadProgress)
  2139. * [`Page.interstitialHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialHidden)
  2140. * [`Page.interstitialShown`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialShown)
  2141. * [`Page.javascriptDialogClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogClosed)
  2142. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening)
  2143. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent)
  2144. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired)
  2145. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument)
  2146. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame)
  2147. * [`Page.screencastVisibilityChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastVisibilityChanged)
  2148. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen)
  2149. * [`Page.compilationCacheProduced`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-compilationCacheProduced)
  2150. #### `Page`: new types
  2151. * [`Page.FrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameId)
  2152. * [`Page.AdFrameType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AdFrameType)
  2153. * [`Page.SecureContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-SecureContextType)
  2154. * [`Page.CrossOriginIsolatedContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-CrossOriginIsolatedContextType)
  2155. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame)
  2156. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource)
  2157. * [`Page.FrameResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResourceTree)
  2158. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree)
  2159. * [`Page.ScriptIdentifier`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScriptIdentifier)
  2160. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType)
  2161. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry)
  2162. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata)
  2163. * [`Page.DialogType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-DialogType)
  2164. * [`Page.AppManifestError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestError)
  2165. * [`Page.AppManifestParsedProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestParsedProperties)
  2166. * [`Page.LayoutViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-LayoutViewport)
  2167. * [`Page.VisualViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-VisualViewport)
  2168. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport)
  2169. * [`Page.FontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontFamilies)
  2170. * [`Page.FontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontSizes)
  2171. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  2172. * [`Page.ClientNavigationDisposition`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationDisposition)
  2173. * [`Page.InstallabilityErrorArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityErrorArgument)
  2174. * [`Page.InstallabilityError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityError)
  2175. * [`Page.ReferrerPolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ReferrerPolicy)
  2176. #### `Performance`: new commands
  2177. * [`Performance.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-disable)
  2178. * [`Performance.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-enable)
  2179. * [`Performance.setTimeDomain`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-setTimeDomain)
  2180. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics)
  2181. #### `Performance`: new event
  2182. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics)
  2183. #### `Performance`: new type
  2184. * [`Performance.Metric`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#type-Metric)
  2185. #### `Security`: new commands
  2186. * [`Security.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-disable)
  2187. * [`Security.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-enable)
  2188. * [`Security.setIgnoreCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setIgnoreCertificateErrors)
  2189. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError)
  2190. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors)
  2191. #### `Security`: new events
  2192. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError)
  2193. * [`Security.visibleSecurityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-visibleSecurityStateChanged)
  2194. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged)
  2195. #### `Security`: new types
  2196. * [`Security.CertificateId`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateId)
  2197. * [`Security.MixedContentType`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-MixedContentType)
  2198. * [`Security.SecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityState)
  2199. * [`Security.CertificateSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateSecurityState)
  2200. * [`Security.SafetyTipStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipStatus)
  2201. * [`Security.SafetyTipInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipInfo)
  2202. * [`Security.VisibleSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-VisibleSecurityState)
  2203. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation)
  2204. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus)
  2205. * [`Security.CertificateErrorAction`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateErrorAction)
  2206. #### `ServiceWorker`: new commands
  2207. * [`ServiceWorker.deliverPushMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-deliverPushMessage)
  2208. * [`ServiceWorker.disable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-disable)
  2209. * [`ServiceWorker.dispatchSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchSyncEvent)
  2210. * [`ServiceWorker.dispatchPeriodicSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchPeriodicSyncEvent)
  2211. * [`ServiceWorker.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-enable)
  2212. * [`ServiceWorker.inspectWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-inspectWorker)
  2213. * [`ServiceWorker.setForceUpdateOnPageLoad`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-setForceUpdateOnPageLoad)
  2214. * [`ServiceWorker.skipWaiting`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-skipWaiting)
  2215. * [`ServiceWorker.startWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-startWorker)
  2216. * [`ServiceWorker.stopAllWorkers`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopAllWorkers)
  2217. * [`ServiceWorker.stopWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopWorker)
  2218. * [`ServiceWorker.unregister`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-unregister)
  2219. * [`ServiceWorker.updateRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-updateRegistration)
  2220. #### `ServiceWorker`: new events
  2221. * [`ServiceWorker.workerErrorReported`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerErrorReported)
  2222. * [`ServiceWorker.workerRegistrationUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerRegistrationUpdated)
  2223. * [`ServiceWorker.workerVersionUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerVersionUpdated)
  2224. #### `ServiceWorker`: new types
  2225. * [`ServiceWorker.RegistrationID`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-RegistrationID)
  2226. * [`ServiceWorker.ServiceWorkerRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerRegistration)
  2227. * [`ServiceWorker.ServiceWorkerVersionRunningStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionRunningStatus)
  2228. * [`ServiceWorker.ServiceWorkerVersionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionStatus)
  2229. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion)
  2230. * [`ServiceWorker.ServiceWorkerErrorMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerErrorMessage)
  2231. #### `Storage`: new commands
  2232. * [`Storage.clearDataForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin)
  2233. * [`Storage.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getCookies)
  2234. * [`Storage.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-setCookies)
  2235. * [`Storage.clearCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearCookies)
  2236. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  2237. * [`Storage.trackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackCacheStorageForOrigin)
  2238. * [`Storage.trackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackIndexedDBForOrigin)
  2239. * [`Storage.untrackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackCacheStorageForOrigin)
  2240. * [`Storage.untrackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackIndexedDBForOrigin)
  2241. #### `Storage`: new events
  2242. * [`Storage.cacheStorageContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageContentUpdated)
  2243. * [`Storage.cacheStorageListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageListUpdated)
  2244. * [`Storage.indexedDBContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBContentUpdated)
  2245. * [`Storage.indexedDBListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBListUpdated)
  2246. #### `Storage`: new types
  2247. * [`Storage.StorageType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType)
  2248. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType)
  2249. #### `SystemInfo`: new commands
  2250. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo)
  2251. * [`SystemInfo.getProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getProcessInfo)
  2252. #### `SystemInfo`: new types
  2253. * [`SystemInfo.GPUDevice`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUDevice)
  2254. * [`SystemInfo.Size`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-Size)
  2255. * [`SystemInfo.VideoDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoDecodeAcceleratorCapability)
  2256. * [`SystemInfo.VideoEncodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoEncodeAcceleratorCapability)
  2257. * [`SystemInfo.SubsamplingFormat`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-SubsamplingFormat)
  2258. * [`SystemInfo.ImageType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageType)
  2259. * [`SystemInfo.ImageDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageDecodeAcceleratorCapability)
  2260. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo)
  2261. * [`SystemInfo.ProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessInfo)
  2262. #### `Target`: new commands
  2263. * [`Target.activateTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-activateTarget)
  2264. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget)
  2265. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget)
  2266. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget)
  2267. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol)
  2268. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext)
  2269. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts)
  2270. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget)
  2271. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget)
  2272. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext)
  2273. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo)
  2274. * [`Target.getTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargets)
  2275. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget)
  2276. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach)
  2277. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets)
  2278. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations)
  2279. #### `Target`: new events
  2280. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget)
  2281. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget)
  2282. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget)
  2283. * [`Target.targetCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCreated)
  2284. * [`Target.targetDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetDestroyed)
  2285. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed)
  2286. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged)
  2287. #### `Target`: new types
  2288. * [`Target.TargetID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID)
  2289. * [`Target.SessionID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-SessionID)
  2290. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo)
  2291. * [`Target.RemoteLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-RemoteLocation)
  2292. #### `Tethering`: new commands
  2293. * [`Tethering.bind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-bind)
  2294. * [`Tethering.unbind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-unbind)
  2295. #### `Tethering`: new event
  2296. * [`Tethering.accepted`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#event-accepted)
  2297. #### `Tracing`: new commands
  2298. * [`Tracing.end`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-end)
  2299. * [`Tracing.getCategories`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-getCategories)
  2300. * [`Tracing.recordClockSyncMarker`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-recordClockSyncMarker)
  2301. * [`Tracing.requestMemoryDump`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-requestMemoryDump)
  2302. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start)
  2303. #### `Tracing`: new events
  2304. * [`Tracing.bufferUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-bufferUsage)
  2305. * [`Tracing.dataCollected`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-dataCollected)
  2306. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete)
  2307. #### `Tracing`: new types
  2308. * [`Tracing.MemoryDumpConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-MemoryDumpConfig)
  2309. * [`Tracing.TraceConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TraceConfig)
  2310. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  2311. * [`Tracing.StreamCompression`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamCompression)
  2312. #### `Fetch`: new commands
  2313. * [`Fetch.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-disable)
  2314. * [`Fetch.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-enable)
  2315. * [`Fetch.failRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-failRequest)
  2316. * [`Fetch.fulfillRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-fulfillRequest)
  2317. * [`Fetch.continueRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest)
  2318. * [`Fetch.continueWithAuth`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueWithAuth)
  2319. * [`Fetch.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-getResponseBody)
  2320. * [`Fetch.takeResponseBodyAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-takeResponseBodyAsStream)
  2321. #### `Fetch`: new events
  2322. * [`Fetch.requestPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused)
  2323. * [`Fetch.authRequired`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-authRequired)
  2324. #### `Fetch`: new types
  2325. * [`Fetch.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestId)
  2326. * [`Fetch.RequestStage`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestStage)
  2327. * [`Fetch.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestPattern)
  2328. * [`Fetch.HeaderEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-HeaderEntry)
  2329. * [`Fetch.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallenge)
  2330. * [`Fetch.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallengeResponse)
  2331. #### `WebAudio`: new commands
  2332. * [`WebAudio.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-enable)
  2333. * [`WebAudio.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-disable)
  2334. * [`WebAudio.getRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-getRealtimeData)
  2335. #### `WebAudio`: new events
  2336. * [`WebAudio.contextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextCreated)
  2337. * [`WebAudio.contextWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextWillBeDestroyed)
  2338. * [`WebAudio.contextChanged`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextChanged)
  2339. * [`WebAudio.audioListenerCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerCreated)
  2340. * [`WebAudio.audioListenerWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerWillBeDestroyed)
  2341. * [`WebAudio.audioNodeCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeCreated)
  2342. * [`WebAudio.audioNodeWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeWillBeDestroyed)
  2343. * [`WebAudio.audioParamCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamCreated)
  2344. * [`WebAudio.audioParamWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamWillBeDestroyed)
  2345. * [`WebAudio.nodesConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesConnected)
  2346. * [`WebAudio.nodesDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesDisconnected)
  2347. * [`WebAudio.nodeParamConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamConnected)
  2348. * [`WebAudio.nodeParamDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamDisconnected)
  2349. #### `WebAudio`: new types
  2350. * [`WebAudio.GraphObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-GraphObjectId)
  2351. * [`WebAudio.ContextType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextType)
  2352. * [`WebAudio.ContextState`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextState)
  2353. * [`WebAudio.NodeType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-NodeType)
  2354. * [`WebAudio.ChannelCountMode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelCountMode)
  2355. * [`WebAudio.ChannelInterpretation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelInterpretation)
  2356. * [`WebAudio.ParamType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ParamType)
  2357. * [`WebAudio.AutomationRate`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AutomationRate)
  2358. * [`WebAudio.ContextRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextRealtimeData)
  2359. * [`WebAudio.BaseAudioContext`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-BaseAudioContext)
  2360. * [`WebAudio.AudioListener`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioListener)
  2361. * [`WebAudio.AudioNode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioNode)
  2362. * [`WebAudio.AudioParam`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioParam)
  2363. #### `WebAuthn`: new commands
  2364. * [`WebAuthn.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-enable)
  2365. * [`WebAuthn.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-disable)
  2366. * [`WebAuthn.addVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addVirtualAuthenticator)
  2367. * [`WebAuthn.removeVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeVirtualAuthenticator)
  2368. * [`WebAuthn.addCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addCredential)
  2369. * [`WebAuthn.getCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredential)
  2370. * [`WebAuthn.getCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredentials)
  2371. * [`WebAuthn.removeCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeCredential)
  2372. * [`WebAuthn.clearCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-clearCredentials)
  2373. * [`WebAuthn.setUserVerified`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setUserVerified)
  2374. * [`WebAuthn.setAutomaticPresenceSimulation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setAutomaticPresenceSimulation)
  2375. #### `WebAuthn`: new types
  2376. * [`WebAuthn.AuthenticatorId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorId)
  2377. * [`WebAuthn.AuthenticatorProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorProtocol)
  2378. * [`WebAuthn.AuthenticatorTransport`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorTransport)
  2379. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions)
  2380. * [`WebAuthn.Credential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-Credential)
  2381. #### `Media`: new commands
  2382. * [`Media.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-enable)
  2383. * [`Media.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-disable)
  2384. #### `Media`: new events
  2385. * [`Media.playerPropertiesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerPropertiesChanged)
  2386. * [`Media.playerEventsAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerEventsAdded)
  2387. * [`Media.playerMessagesLogged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerMessagesLogged)
  2388. * [`Media.playerErrorsRaised`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerErrorsRaised)
  2389. * [`Media.playersCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playersCreated)
  2390. #### `Media`: new types
  2391. * [`Media.PlayerId`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerId)
  2392. * [`Media.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-Timestamp)
  2393. * [`Media.PlayerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerMessage)
  2394. * [`Media.PlayerProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerProperty)
  2395. * [`Media.PlayerEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEvent)
  2396. * [`Media.PlayerError`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerError)
  2397. ## Roll protocol to r813956
  2398. ###### _2020-10-05 16:16:54_ | Diff: [4ee1d5c...3e55bd0](https://github.com/ChromeDevTools/devtools-protocol/compare/4ee1d5c...3e55bd0)
  2399. #### `Console`: removed domains
  2400. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  2401. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  2402. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  2403. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  2404. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  2405. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  2406. #### `Accessibility`: removed domains
  2407. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  2408. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  2409. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  2410. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  2411. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  2412. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  2413. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  2414. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  2415. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  2416. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  2417. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  2418. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  2419. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  2420. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  2421. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  2422. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  2423. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  2424. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  2425. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  2426. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  2427. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  2428. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  2429. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  2430. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  2431. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  2432. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  2433. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  2434. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  2435. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  2436. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  2437. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  2438. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  2439. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  2440. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  2441. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  2442. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  2443. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  2444. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  2445. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  2446. ## Roll protocol to r813570
  2447. ###### _2020-10-04 17:32:25_ | Diff: [874a0ee...4ee1d5c](https://github.com/ChromeDevTools/devtools-protocol/compare/874a0ee...4ee1d5c)
  2448. #### `Console`: new domains
  2449. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  2450. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  2451. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  2452. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  2453. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  2454. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  2455. #### `Console`: new commands
  2456. * [`Console.clearMessages`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-clearMessages)
  2457. * [`Console.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-disable)
  2458. * [`Console.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-enable)
  2459. #### `Console`: new event
  2460. * [`Console.messageAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#event-messageAdded)
  2461. #### `Console`: new type
  2462. * [`Console.ConsoleMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#type-ConsoleMessage)
  2463. #### `Debugger`: new commands
  2464. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation)
  2465. * [`Debugger.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-disable)
  2466. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable)
  2467. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame)
  2468. * [`Debugger.executeWasmEvaluator`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-executeWasmEvaluator)
  2469. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints)
  2470. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource)
  2471. * [`Debugger.getWasmBytecode`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getWasmBytecode)
  2472. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace)
  2473. * [`Debugger.pause`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pause)
  2474. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall)
  2475. * [`Debugger.removeBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-removeBreakpoint)
  2476. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame)
  2477. * [`Debugger.resume`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-resume)
  2478. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent)
  2479. * [`Debugger.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setAsyncCallStackDepth)
  2480. * [`Debugger.setBlackboxPatterns`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxPatterns)
  2481. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges)
  2482. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint)
  2483. * [`Debugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setInstrumentationBreakpoint)
  2484. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl)
  2485. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall)
  2486. * [`Debugger.setBreakpointsActive`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointsActive)
  2487. * [`Debugger.setPauseOnExceptions`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setPauseOnExceptions)
  2488. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue)
  2489. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource)
  2490. * [`Debugger.setSkipAllPauses`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setSkipAllPauses)
  2491. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue)
  2492. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto)
  2493. * [`Debugger.stepOut`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOut)
  2494. * [`Debugger.stepOver`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOver)
  2495. #### `Debugger`: new events
  2496. * [`Debugger.breakpointResolved`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-breakpointResolved)
  2497. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused)
  2498. * [`Debugger.resumed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-resumed)
  2499. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse)
  2500. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed)
  2501. #### `Debugger`: new types
  2502. * [`Debugger.BreakpointId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakpointId)
  2503. * [`Debugger.CallFrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrameId)
  2504. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location)
  2505. * [`Debugger.ScriptPosition`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptPosition)
  2506. * [`Debugger.LocationRange`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-LocationRange)
  2507. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame)
  2508. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope)
  2509. * [`Debugger.SearchMatch`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-SearchMatch)
  2510. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation)
  2511. * [`Debugger.ScriptLanguage`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptLanguage)
  2512. * [`Debugger.DebugSymbols`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-DebugSymbols)
  2513. #### `HeapProfiler`: new commands
  2514. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject)
  2515. * [`HeapProfiler.collectGarbage`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-collectGarbage)
  2516. * [`HeapProfiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-disable)
  2517. * [`HeapProfiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-enable)
  2518. * [`HeapProfiler.getHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getHeapObjectId)
  2519. * [`HeapProfiler.getObjectByHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getObjectByHeapObjectId)
  2520. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile)
  2521. * [`HeapProfiler.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startSampling)
  2522. * [`HeapProfiler.startTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startTrackingHeapObjects)
  2523. * [`HeapProfiler.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopSampling)
  2524. * [`HeapProfiler.stopTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopTrackingHeapObjects)
  2525. * [`HeapProfiler.takeHeapSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-takeHeapSnapshot)
  2526. #### `HeapProfiler`: new events
  2527. * [`HeapProfiler.addHeapSnapshotChunk`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-addHeapSnapshotChunk)
  2528. * [`HeapProfiler.heapStatsUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-heapStatsUpdate)
  2529. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId)
  2530. * [`HeapProfiler.reportHeapSnapshotProgress`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-reportHeapSnapshotProgress)
  2531. * [`HeapProfiler.resetProfiles`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-resetProfiles)
  2532. #### `HeapProfiler`: new types
  2533. * [`HeapProfiler.HeapSnapshotObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-HeapSnapshotObjectId)
  2534. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode)
  2535. * [`HeapProfiler.SamplingHeapProfileSample`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileSample)
  2536. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile)
  2537. #### `Profiler`: new commands
  2538. * [`Profiler.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disable)
  2539. * [`Profiler.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enable)
  2540. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage)
  2541. * [`Profiler.setSamplingInterval`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-setSamplingInterval)
  2542. * [`Profiler.start`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-start)
  2543. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage)
  2544. * [`Profiler.startTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startTypeProfile)
  2545. * [`Profiler.stop`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stop)
  2546. * [`Profiler.stopPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopPreciseCoverage)
  2547. * [`Profiler.stopTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopTypeProfile)
  2548. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage)
  2549. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile)
  2550. * [`Profiler.enableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableCounters)
  2551. * [`Profiler.disableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableCounters)
  2552. * [`Profiler.getCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getCounters)
  2553. * [`Profiler.enableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableRuntimeCallStats)
  2554. * [`Profiler.disableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableRuntimeCallStats)
  2555. * [`Profiler.getRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getRuntimeCallStats)
  2556. #### `Profiler`: new events
  2557. * [`Profiler.consoleProfileFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileFinished)
  2558. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted)
  2559. * [`Profiler.preciseCoverageDeltaUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-preciseCoverageDeltaUpdate)
  2560. #### `Profiler`: new types
  2561. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode)
  2562. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile)
  2563. * [`Profiler.PositionTickInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-PositionTickInfo)
  2564. * [`Profiler.CoverageRange`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CoverageRange)
  2565. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage)
  2566. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage)
  2567. * [`Profiler.TypeObject`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeObject)
  2568. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry)
  2569. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile)
  2570. * [`Profiler.CounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CounterInfo)
  2571. * [`Profiler.RuntimeCallCounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-RuntimeCallCounterInfo)
  2572. #### `Runtime`: new commands
  2573. * [`Runtime.awaitPromise`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise)
  2574. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn)
  2575. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript)
  2576. * [`Runtime.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-disable)
  2577. * [`Runtime.discardConsoleEntries`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-discardConsoleEntries)
  2578. * [`Runtime.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-enable)
  2579. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate)
  2580. * [`Runtime.getIsolateId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getIsolateId)
  2581. * [`Runtime.getHeapUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getHeapUsage)
  2582. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties)
  2583. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames)
  2584. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects)
  2585. * [`Runtime.releaseObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject)
  2586. * [`Runtime.releaseObjectGroup`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObjectGroup)
  2587. * [`Runtime.runIfWaitingForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runIfWaitingForDebugger)
  2588. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript)
  2589. * [`Runtime.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setAsyncCallStackDepth)
  2590. * [`Runtime.setCustomObjectFormatterEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setCustomObjectFormatterEnabled)
  2591. * [`Runtime.setMaxCallStackSizeToCapture`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setMaxCallStackSizeToCapture)
  2592. * [`Runtime.terminateExecution`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-terminateExecution)
  2593. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding)
  2594. * [`Runtime.removeBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-removeBinding)
  2595. #### `Runtime`: new events
  2596. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled)
  2597. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled)
  2598. * [`Runtime.exceptionRevoked`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionRevoked)
  2599. * [`Runtime.exceptionThrown`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionThrown)
  2600. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated)
  2601. * [`Runtime.executionContextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextDestroyed)
  2602. * [`Runtime.executionContextsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextsCleared)
  2603. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested)
  2604. #### `Runtime`: new types
  2605. * [`Runtime.ScriptId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ScriptId)
  2606. * [`Runtime.RemoteObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObjectId)
  2607. * [`Runtime.UnserializableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UnserializableValue)
  2608. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject)
  2609. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview)
  2610. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview)
  2611. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview)
  2612. * [`Runtime.EntryPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview)
  2613. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor)
  2614. * [`Runtime.InternalPropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor)
  2615. * [`Runtime.PrivatePropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor)
  2616. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument)
  2617. * [`Runtime.ExecutionContextId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextId)
  2618. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription)
  2619. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails)
  2620. * [`Runtime.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-Timestamp)
  2621. * [`Runtime.TimeDelta`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-TimeDelta)
  2622. * [`Runtime.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame)
  2623. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace)
  2624. * [`Runtime.UniqueDebuggerId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UniqueDebuggerId)
  2625. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId)
  2626. #### `Schema`: new command
  2627. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains)
  2628. #### `Schema`: new type
  2629. * [`Schema.Domain`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#type-Domain)
  2630. #### `Accessibility`: new domains
  2631. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  2632. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  2633. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  2634. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  2635. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  2636. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  2637. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  2638. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  2639. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  2640. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  2641. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  2642. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  2643. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  2644. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  2645. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  2646. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  2647. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  2648. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  2649. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  2650. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  2651. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  2652. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  2653. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  2654. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  2655. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  2656. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  2657. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  2658. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  2659. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  2660. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  2661. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  2662. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  2663. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  2664. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  2665. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  2666. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  2667. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  2668. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  2669. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  2670. #### `Accessibility`: new commands
  2671. * [`Accessibility.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-disable)
  2672. * [`Accessibility.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-enable)
  2673. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree)
  2674. * [`Accessibility.getFullAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getFullAXTree)
  2675. * [`Accessibility.queryAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-queryAXTree)
  2676. #### `Accessibility`: new types
  2677. * [`Accessibility.AXNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNodeId)
  2678. * [`Accessibility.AXValueType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueType)
  2679. * [`Accessibility.AXValueSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSourceType)
  2680. * [`Accessibility.AXValueNativeSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueNativeSourceType)
  2681. * [`Accessibility.AXValueSource`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSource)
  2682. * [`Accessibility.AXRelatedNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelatedNode)
  2683. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty)
  2684. * [`Accessibility.AXValue`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValue)
  2685. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName)
  2686. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode)
  2687. #### `Animation`: new commands
  2688. * [`Animation.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-disable)
  2689. * [`Animation.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-enable)
  2690. * [`Animation.getCurrentTime`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getCurrentTime)
  2691. * [`Animation.getPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-getPlaybackRate)
  2692. * [`Animation.releaseAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-releaseAnimations)
  2693. * [`Animation.resolveAnimation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-resolveAnimation)
  2694. * [`Animation.seekAnimations`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-seekAnimations)
  2695. * [`Animation.setPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPaused)
  2696. * [`Animation.setPlaybackRate`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setPlaybackRate)
  2697. * [`Animation.setTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-setTiming)
  2698. #### `Animation`: new events
  2699. * [`Animation.animationCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCanceled)
  2700. * [`Animation.animationCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationCreated)
  2701. * [`Animation.animationStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationStarted)
  2702. #### `Animation`: new types
  2703. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation)
  2704. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect)
  2705. * [`Animation.KeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframesRule)
  2706. * [`Animation.KeyframeStyle`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframeStyle)
  2707. #### `ApplicationCache`: new commands
  2708. * [`ApplicationCache.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-enable)
  2709. * [`ApplicationCache.getApplicationCacheForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getApplicationCacheForFrame)
  2710. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests)
  2711. * [`ApplicationCache.getManifestForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getManifestForFrame)
  2712. #### `ApplicationCache`: new events
  2713. * [`ApplicationCache.applicationCacheStatusUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-applicationCacheStatusUpdated)
  2714. * [`ApplicationCache.networkStateUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-networkStateUpdated)
  2715. #### `ApplicationCache`: new types
  2716. * [`ApplicationCache.ApplicationCacheResource`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCacheResource)
  2717. * [`ApplicationCache.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCache)
  2718. * [`ApplicationCache.FrameWithManifest`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-FrameWithManifest)
  2719. #### `Audits`: new commands
  2720. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse)
  2721. * [`Audits.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-disable)
  2722. * [`Audits.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-enable)
  2723. #### `Audits`: new event
  2724. * [`Audits.issueAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#event-issueAdded)
  2725. #### `Audits`: new types
  2726. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie)
  2727. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  2728. * [`Audits.AffectedFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedFrame)
  2729. * [`Audits.SameSiteCookieExclusionReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieExclusionReason)
  2730. * [`Audits.SameSiteCookieWarningReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieWarningReason)
  2731. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  2732. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails)
  2733. * [`Audits.MixedContentResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResolutionStatus)
  2734. * [`Audits.MixedContentResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResourceType)
  2735. * [`Audits.MixedContentIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentIssueDetails)
  2736. * [`Audits.BlockedByResponseReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseReason)
  2737. * [`Audits.BlockedByResponseIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseIssueDetails)
  2738. * [`Audits.HeavyAdResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdResolutionStatus)
  2739. * [`Audits.HeavyAdReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdReason)
  2740. * [`Audits.HeavyAdIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdIssueDetails)
  2741. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  2742. * [`Audits.SourceCodeLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SourceCodeLocation)
  2743. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  2744. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode)
  2745. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails)
  2746. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue)
  2747. #### `BackgroundService`: new commands
  2748. * [`BackgroundService.startObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-startObserving)
  2749. * [`BackgroundService.stopObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-stopObserving)
  2750. * [`BackgroundService.setRecording`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-setRecording)
  2751. * [`BackgroundService.clearEvents`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-clearEvents)
  2752. #### `BackgroundService`: new events
  2753. * [`BackgroundService.recordingStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-recordingStateChanged)
  2754. * [`BackgroundService.backgroundServiceEventReceived`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-backgroundServiceEventReceived)
  2755. #### `BackgroundService`: new types
  2756. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName)
  2757. * [`BackgroundService.EventMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-EventMetadata)
  2758. * [`BackgroundService.BackgroundServiceEvent`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-BackgroundServiceEvent)
  2759. #### `Browser`: new commands
  2760. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission)
  2761. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions)
  2762. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions)
  2763. * [`Browser.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDownloadBehavior)
  2764. * [`Browser.close`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-close)
  2765. * [`Browser.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crash)
  2766. * [`Browser.crashGpuProcess`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crashGpuProcess)
  2767. * [`Browser.getVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getVersion)
  2768. * [`Browser.getBrowserCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getBrowserCommandLine)
  2769. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms)
  2770. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram)
  2771. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds)
  2772. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget)
  2773. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds)
  2774. * [`Browser.setDockTile`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDockTile)
  2775. #### `Browser`: new types
  2776. * [`Browser.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-BrowserContextID)
  2777. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID)
  2778. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState)
  2779. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds)
  2780. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType)
  2781. * [`Browser.PermissionSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionSetting)
  2782. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor)
  2783. * [`Browser.Bucket`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bucket)
  2784. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram)
  2785. #### `CSS`: new commands
  2786. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule)
  2787. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames)
  2788. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet)
  2789. * [`CSS.disable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-disable)
  2790. * [`CSS.enable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable)
  2791. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState)
  2792. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors)
  2793. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode)
  2794. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode)
  2795. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode)
  2796. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries)
  2797. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode)
  2798. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText)
  2799. * [`CSS.trackComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)
  2800. * [`CSS.takeComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)
  2801. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode)
  2802. * [`CSS.setKeyframeKey`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey)
  2803. * [`CSS.setMediaText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText)
  2804. * [`CSS.setRuleSelector`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector)
  2805. * [`CSS.setStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText)
  2806. * [`CSS.setStyleTexts`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts)
  2807. * [`CSS.startRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking)
  2808. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking)
  2809. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta)
  2810. * [`CSS.setLocalFontsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)
  2811. #### `CSS`: new events
  2812. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated)
  2813. * [`CSS.mediaQueryResultChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-mediaQueryResultChanged)
  2814. * [`CSS.styleSheetAdded`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetAdded)
  2815. * [`CSS.styleSheetChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetChanged)
  2816. * [`CSS.styleSheetRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetRemoved)
  2817. #### `CSS`: new types
  2818. * [`CSS.StyleSheetId`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetId)
  2819. * [`CSS.StyleSheetOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetOrigin)
  2820. * [`CSS.PseudoElementMatches`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PseudoElementMatches)
  2821. * [`CSS.InheritedStyleEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InheritedStyleEntry)
  2822. * [`CSS.RuleMatch`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleMatch)
  2823. * [`CSS.Value`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-Value)
  2824. * [`CSS.SelectorList`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SelectorList)
  2825. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader)
  2826. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule)
  2827. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage)
  2828. * [`CSS.SourceRange`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SourceRange)
  2829. * [`CSS.ShorthandEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-ShorthandEntry)
  2830. * [`CSS.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSComputedStyleProperty)
  2831. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle)
  2832. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty)
  2833. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia)
  2834. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery)
  2835. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression)
  2836. * [`CSS.PlatformFontUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PlatformFontUsage)
  2837. * [`CSS.FontVariationAxis`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontVariationAxis)
  2838. * [`CSS.FontFace`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontFace)
  2839. * [`CSS.CSSKeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframesRule)
  2840. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule)
  2841. * [`CSS.StyleDeclarationEdit`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleDeclarationEdit)
  2842. #### `CacheStorage`: new commands
  2843. * [`CacheStorage.deleteCache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteCache)
  2844. * [`CacheStorage.deleteEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteEntry)
  2845. * [`CacheStorage.requestCacheNames`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCacheNames)
  2846. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse)
  2847. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries)
  2848. #### `CacheStorage`: new types
  2849. * [`CacheStorage.CacheId`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CacheId)
  2850. * [`CacheStorage.CachedResponseType`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponseType)
  2851. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry)
  2852. * [`CacheStorage.Cache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Cache)
  2853. * [`CacheStorage.Header`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Header)
  2854. * [`CacheStorage.CachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponse)
  2855. #### `Cast`: new commands
  2856. * [`Cast.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-enable)
  2857. * [`Cast.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-disable)
  2858. * [`Cast.setSinkToUse`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-setSinkToUse)
  2859. * [`Cast.startTabMirroring`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-startTabMirroring)
  2860. * [`Cast.stopCasting`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-stopCasting)
  2861. #### `Cast`: new events
  2862. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated)
  2863. * [`Cast.issueUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-issueUpdated)
  2864. #### `Cast`: new type
  2865. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  2866. #### `DOM`: new commands
  2867. * [`DOM.collectClassNamesFromSubtree`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-collectClassNamesFromSubtree)
  2868. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo)
  2869. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode)
  2870. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  2871. * [`DOM.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-disable)
  2872. * [`DOM.discardSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-discardSearchResults)
  2873. * [`DOM.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-enable)
  2874. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus)
  2875. * [`DOM.getAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getAttributes)
  2876. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel)
  2877. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads)
  2878. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument)
  2879. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument)
  2880. * [`DOM.getNodesForSubtreeByStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodesForSubtreeByStyle)
  2881. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation)
  2882. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML)
  2883. * [`DOM.getRelayoutBoundary`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getRelayoutBoundary)
  2884. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults)
  2885. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight)
  2886. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode)
  2887. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect)
  2888. * [`DOM.markUndoableState`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-markUndoableState)
  2889. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo)
  2890. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch)
  2891. * [`DOM.pushNodeByPathToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodeByPathToFrontend)
  2892. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend)
  2893. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector)
  2894. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll)
  2895. * [`DOM.redo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-redo)
  2896. * [`DOM.removeAttribute`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeAttribute)
  2897. * [`DOM.removeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeNode)
  2898. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes)
  2899. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode)
  2900. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode)
  2901. * [`DOM.setAttributeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributeValue)
  2902. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText)
  2903. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles)
  2904. * [`DOM.setNodeStackTracesEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeStackTracesEnabled)
  2905. * [`DOM.getNodeStackTraces`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeStackTraces)
  2906. * [`DOM.getFileInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFileInfo)
  2907. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode)
  2908. * [`DOM.setNodeName`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeName)
  2909. * [`DOM.setNodeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeValue)
  2910. * [`DOM.setOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setOuterHTML)
  2911. * [`DOM.undo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-undo)
  2912. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner)
  2913. #### `DOM`: new events
  2914. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified)
  2915. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved)
  2916. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified)
  2917. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated)
  2918. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted)
  2919. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved)
  2920. * [`DOM.distributedNodesUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-distributedNodesUpdated)
  2921. * [`DOM.documentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-documentUpdated)
  2922. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated)
  2923. * [`DOM.pseudoElementAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementAdded)
  2924. * [`DOM.pseudoElementRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementRemoved)
  2925. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes)
  2926. * [`DOM.shadowRootPopped`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPopped)
  2927. * [`DOM.shadowRootPushed`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPushed)
  2928. #### `DOM`: new types
  2929. * [`DOM.NodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-NodeId)
  2930. * [`DOM.BackendNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNodeId)
  2931. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode)
  2932. * [`DOM.PseudoType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-PseudoType)
  2933. * [`DOM.ShadowRootType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShadowRootType)
  2934. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node)
  2935. * [`DOM.RGBA`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-RGBA)
  2936. * [`DOM.Quad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Quad)
  2937. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel)
  2938. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo)
  2939. * [`DOM.Rect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Rect)
  2940. * [`DOM.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-CSSComputedStyleProperty)
  2941. #### `DOMDebugger`: new commands
  2942. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners)
  2943. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint)
  2944. * [`DOMDebugger.removeEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeEventListenerBreakpoint)
  2945. * [`DOMDebugger.removeInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeInstrumentationBreakpoint)
  2946. * [`DOMDebugger.removeXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeXHRBreakpoint)
  2947. * [`DOMDebugger.setDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setDOMBreakpoint)
  2948. * [`DOMDebugger.setEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setEventListenerBreakpoint)
  2949. * [`DOMDebugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setInstrumentationBreakpoint)
  2950. * [`DOMDebugger.setXHRBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setXHRBreakpoint)
  2951. #### `DOMDebugger`: new types
  2952. * [`DOMDebugger.DOMBreakpointType`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-DOMBreakpointType)
  2953. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener)
  2954. #### `DOMSnapshot`: new commands
  2955. * [`DOMSnapshot.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-disable)
  2956. * [`DOMSnapshot.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-enable)
  2957. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot)
  2958. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot)
  2959. #### `DOMSnapshot`: new types
  2960. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode)
  2961. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox)
  2962. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode)
  2963. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle)
  2964. * [`DOMSnapshot.NameValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NameValue)
  2965. * [`DOMSnapshot.StringIndex`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StringIndex)
  2966. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings)
  2967. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData)
  2968. * [`DOMSnapshot.RareBooleanData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareBooleanData)
  2969. * [`DOMSnapshot.RareIntegerData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareIntegerData)
  2970. * [`DOMSnapshot.Rectangle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-Rectangle)
  2971. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot)
  2972. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot)
  2973. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot)
  2974. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot)
  2975. #### `DOMStorage`: new commands
  2976. * [`DOMStorage.clear`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-clear)
  2977. * [`DOMStorage.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-disable)
  2978. * [`DOMStorage.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-enable)
  2979. * [`DOMStorage.getDOMStorageItems`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-getDOMStorageItems)
  2980. * [`DOMStorage.removeDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-removeDOMStorageItem)
  2981. * [`DOMStorage.setDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-setDOMStorageItem)
  2982. #### `DOMStorage`: new events
  2983. * [`DOMStorage.domStorageItemAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemAdded)
  2984. * [`DOMStorage.domStorageItemRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemRemoved)
  2985. * [`DOMStorage.domStorageItemUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemUpdated)
  2986. * [`DOMStorage.domStorageItemsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemsCleared)
  2987. #### `DOMStorage`: new types
  2988. * [`DOMStorage.StorageId`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-StorageId)
  2989. * [`DOMStorage.Item`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-Item)
  2990. #### `Database`: new commands
  2991. * [`Database.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-disable)
  2992. * [`Database.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-enable)
  2993. * [`Database.executeSQL`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-executeSQL)
  2994. * [`Database.getDatabaseTableNames`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-getDatabaseTableNames)
  2995. #### `Database`: new event
  2996. * [`Database.addDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#event-addDatabase)
  2997. #### `Database`: new types
  2998. * [`Database.DatabaseId`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-DatabaseId)
  2999. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database)
  3000. * [`Database.Error`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Error)
  3001. #### `DeviceOrientation`: new commands
  3002. * [`DeviceOrientation.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-clearDeviceOrientationOverride)
  3003. * [`DeviceOrientation.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/DeviceOrientation/#method-setDeviceOrientationOverride)
  3004. #### `Emulation`: new commands
  3005. * [`Emulation.canEmulate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-canEmulate)
  3006. * [`Emulation.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearDeviceMetricsOverride)
  3007. * [`Emulation.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearGeolocationOverride)
  3008. * [`Emulation.resetPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-resetPageScaleFactor)
  3009. * [`Emulation.setFocusEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setFocusEmulationEnabled)
  3010. * [`Emulation.setCPUThrottlingRate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setCPUThrottlingRate)
  3011. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride)
  3012. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride)
  3013. * [`Emulation.setScrollbarsHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScrollbarsHidden)
  3014. * [`Emulation.setDocumentCookieDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDocumentCookieDisabled)
  3015. * [`Emulation.setEmitTouchEventsForMouse`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmitTouchEventsForMouse)
  3016. * [`Emulation.setEmulatedMedia`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedMedia)
  3017. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  3018. * [`Emulation.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setGeolocationOverride)
  3019. * [`Emulation.setIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setIdleOverride)
  3020. * [`Emulation.clearIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearIdleOverride)
  3021. * [`Emulation.setNavigatorOverrides`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setNavigatorOverrides)
  3022. * [`Emulation.setPageScaleFactor`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setPageScaleFactor)
  3023. * [`Emulation.setScriptExecutionDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScriptExecutionDisabled)
  3024. * [`Emulation.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTouchEmulationEnabled)
  3025. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy)
  3026. * [`Emulation.setLocaleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setLocaleOverride)
  3027. * [`Emulation.setTimezoneOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTimezoneOverride)
  3028. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize)
  3029. * [`Emulation.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setUserAgentOverride)
  3030. #### `Emulation`: new event
  3031. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired)
  3032. #### `Emulation`: new types
  3033. * [`Emulation.ScreenOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-ScreenOrientation)
  3034. * [`Emulation.DisplayFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-DisplayFeature)
  3035. * [`Emulation.MediaFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-MediaFeature)
  3036. * [`Emulation.VirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-VirtualTimePolicy)
  3037. * [`Emulation.UserAgentBrandVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentBrandVersion)
  3038. * [`Emulation.UserAgentMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentMetadata)
  3039. #### `HeadlessExperimental`: new commands
  3040. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame)
  3041. * [`HeadlessExperimental.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-disable)
  3042. * [`HeadlessExperimental.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enable)
  3043. #### `HeadlessExperimental`: new event
  3044. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged)
  3045. #### `HeadlessExperimental`: new type
  3046. * [`HeadlessExperimental.ScreenshotParams`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#type-ScreenshotParams)
  3047. #### `IO`: new commands
  3048. * [`IO.close`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-close)
  3049. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read)
  3050. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob)
  3051. #### `IO`: new type
  3052. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle)
  3053. #### `IndexedDB`: new commands
  3054. * [`IndexedDB.clearObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-clearObjectStore)
  3055. * [`IndexedDB.deleteDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteDatabase)
  3056. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries)
  3057. * [`IndexedDB.disable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-disable)
  3058. * [`IndexedDB.enable`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-enable)
  3059. * [`IndexedDB.requestData`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestData)
  3060. * [`IndexedDB.getMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getMetadata)
  3061. * [`IndexedDB.requestDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabase)
  3062. * [`IndexedDB.requestDatabaseNames`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabaseNames)
  3063. #### `IndexedDB`: new types
  3064. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores)
  3065. * [`IndexedDB.ObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStore)
  3066. * [`IndexedDB.ObjectStoreIndex`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStoreIndex)
  3067. * [`IndexedDB.Key`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-Key)
  3068. * [`IndexedDB.KeyRange`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyRange)
  3069. * [`IndexedDB.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DataEntry)
  3070. * [`IndexedDB.KeyPath`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyPath)
  3071. #### `Input`: new commands
  3072. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent)
  3073. * [`Input.insertText`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-insertText)
  3074. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent)
  3075. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent)
  3076. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent)
  3077. * [`Input.setIgnoreInputEvents`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-setIgnoreInputEvents)
  3078. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture)
  3079. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture)
  3080. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture)
  3081. #### `Input`: new types
  3082. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint)
  3083. * [`Input.GestureSourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-GestureSourceType)
  3084. * [`Input.MouseButton`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-MouseButton)
  3085. * [`Input.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TimeSinceEpoch)
  3086. #### `Inspector`: new commands
  3087. * [`Inspector.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-disable)
  3088. * [`Inspector.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#method-enable)
  3089. #### `Inspector`: new events
  3090. * [`Inspector.detached`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-detached)
  3091. * [`Inspector.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetCrashed)
  3092. * [`Inspector.targetReloadedAfterCrash`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetReloadedAfterCrash)
  3093. #### `LayerTree`: new commands
  3094. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons)
  3095. * [`LayerTree.disable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-disable)
  3096. * [`LayerTree.enable`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-enable)
  3097. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot)
  3098. * [`LayerTree.makeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-makeSnapshot)
  3099. * [`LayerTree.profileSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-profileSnapshot)
  3100. * [`LayerTree.releaseSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-releaseSnapshot)
  3101. * [`LayerTree.replaySnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-replaySnapshot)
  3102. * [`LayerTree.snapshotCommandLog`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-snapshotCommandLog)
  3103. #### `LayerTree`: new events
  3104. * [`LayerTree.layerPainted`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerPainted)
  3105. * [`LayerTree.layerTreeDidChange`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerTreeDidChange)
  3106. #### `LayerTree`: new types
  3107. * [`LayerTree.LayerId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-LayerId)
  3108. * [`LayerTree.SnapshotId`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-SnapshotId)
  3109. * [`LayerTree.ScrollRect`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-ScrollRect)
  3110. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint)
  3111. * [`LayerTree.PictureTile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PictureTile)
  3112. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer)
  3113. * [`LayerTree.PaintProfile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PaintProfile)
  3114. #### `Log`: new commands
  3115. * [`Log.clear`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-clear)
  3116. * [`Log.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-disable)
  3117. * [`Log.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-enable)
  3118. * [`Log.startViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-startViolationsReport)
  3119. * [`Log.stopViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-stopViolationsReport)
  3120. #### `Log`: new event
  3121. * [`Log.entryAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#event-entryAdded)
  3122. #### `Log`: new types
  3123. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry)
  3124. * [`Log.ViolationSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-ViolationSetting)
  3125. #### `Memory`: new commands
  3126. * [`Memory.getDOMCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getDOMCounters)
  3127. * [`Memory.prepareForLeakDetection`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-prepareForLeakDetection)
  3128. * [`Memory.forciblyPurgeJavaScriptMemory`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-forciblyPurgeJavaScriptMemory)
  3129. * [`Memory.setPressureNotificationsSuppressed`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-setPressureNotificationsSuppressed)
  3130. * [`Memory.simulatePressureNotification`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-simulatePressureNotification)
  3131. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  3132. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  3133. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile)
  3134. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile)
  3135. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  3136. #### `Memory`: new types
  3137. * [`Memory.PressureLevel`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-PressureLevel)
  3138. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  3139. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  3140. * [`Memory.Module`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-Module)
  3141. #### `Network`: new commands
  3142. * [`Network.canClearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCache)
  3143. * [`Network.canClearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCookies)
  3144. * [`Network.canEmulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canEmulateNetworkConditions)
  3145. * [`Network.clearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCache)
  3146. * [`Network.clearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-clearBrowserCookies)
  3147. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest)
  3148. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies)
  3149. * [`Network.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-disable)
  3150. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions)
  3151. * [`Network.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enable)
  3152. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies)
  3153. * [`Network.getCertificate`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCertificate)
  3154. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies)
  3155. * [`Network.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBody)
  3156. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData)
  3157. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  3158. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream)
  3159. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR)
  3160. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody)
  3161. * [`Network.setBlockedURLs`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBlockedURLs)
  3162. * [`Network.setBypassServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBypassServiceWorker)
  3163. * [`Network.setCacheDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCacheDisabled)
  3164. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie)
  3165. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies)
  3166. * [`Network.setDataSizeLimitsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setDataSizeLimitsForTest)
  3167. * [`Network.setExtraHTTPHeaders`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setExtraHTTPHeaders)
  3168. * [`Network.setAttachDebugHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setAttachDebugHeader)
  3169. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception)
  3170. * [`Network.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setUserAgentOverride)
  3171. * [`Network.getSecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getSecurityIsolationStatus)
  3172. * [`Network.loadNetworkResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-loadNetworkResource)
  3173. #### `Network`: new events
  3174. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived)
  3175. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived)
  3176. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed)
  3177. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished)
  3178. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted)
  3179. * [`Network.requestServedFromCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestServedFromCache)
  3180. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent)
  3181. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority)
  3182. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived)
  3183. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived)
  3184. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed)
  3185. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated)
  3186. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError)
  3187. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived)
  3188. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent)
  3189. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived)
  3190. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest)
  3191. * [`Network.requestWillBeSentExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSentExtraInfo)
  3192. * [`Network.responseReceivedExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceivedExtraInfo)
  3193. #### `Network`: new types
  3194. * [`Network.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceType)
  3195. * [`Network.LoaderId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoaderId)
  3196. * [`Network.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestId)
  3197. * [`Network.InterceptionId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionId)
  3198. * [`Network.ErrorReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ErrorReason)
  3199. * [`Network.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TimeSinceEpoch)
  3200. * [`Network.MonotonicTime`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-MonotonicTime)
  3201. * [`Network.Headers`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Headers)
  3202. * [`Network.ConnectionType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ConnectionType)
  3203. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite)
  3204. * [`Network.CookiePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookiePriority)
  3205. * [`Network.ResourceTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceTiming)
  3206. * [`Network.ResourcePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourcePriority)
  3207. * [`Network.PostDataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-PostDataEntry)
  3208. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request)
  3209. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp)
  3210. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails)
  3211. * [`Network.CertificateTransparencyCompliance`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CertificateTransparencyCompliance)
  3212. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason)
  3213. * [`Network.ServiceWorkerResponseSource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ServiceWorkerResponseSource)
  3214. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response)
  3215. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest)
  3216. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse)
  3217. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame)
  3218. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource)
  3219. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator)
  3220. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie)
  3221. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason)
  3222. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason)
  3223. * [`Network.BlockedSetCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedSetCookieWithReason)
  3224. * [`Network.BlockedCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedCookieWithReason)
  3225. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam)
  3226. * [`Network.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallenge)
  3227. * [`Network.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse)
  3228. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  3229. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern)
  3230. * [`Network.SignedExchangeSignature`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeSignature)
  3231. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader)
  3232. * [`Network.SignedExchangeErrorField`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeErrorField)
  3233. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError)
  3234. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo)
  3235. * [`Network.CrossOriginOpenerPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyValue)
  3236. * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus)
  3237. * [`Network.CrossOriginEmbedderPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyValue)
  3238. * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus)
  3239. * [`Network.SecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityIsolationStatus)
  3240. * [`Network.LoadNetworkResourcePageResult`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourcePageResult)
  3241. * [`Network.LoadNetworkResourceOptions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourceOptions)
  3242. #### `Overlay`: new commands
  3243. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  3244. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  3245. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  3246. * [`Overlay.getGridHighlightObjectsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getGridHighlightObjectsForTest)
  3247. * [`Overlay.getSourceOrderHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getSourceOrderHighlightObjectForTest)
  3248. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  3249. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  3250. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  3251. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  3252. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  3253. * [`Overlay.highlightSourceOrder`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightSourceOrder)
  3254. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  3255. * [`Overlay.setShowAdHighlights`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowAdHighlights)
  3256. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  3257. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  3258. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  3259. * [`Overlay.setShowGridOverlays`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowGridOverlays)
  3260. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  3261. * [`Overlay.setShowLayoutShiftRegions`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowLayoutShiftRegions)
  3262. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  3263. * [`Overlay.setShowHitTestBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHitTestBorders)
  3264. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  3265. * [`Overlay.setShowHinge`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHinge)
  3266. #### `Overlay`: new events
  3267. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  3268. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  3269. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested)
  3270. * [`Overlay.inspectModeCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectModeCanceled)
  3271. #### `Overlay`: new types
  3272. * [`Overlay.SourceOrderConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-SourceOrderConfig)
  3273. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig)
  3274. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  3275. * [`Overlay.ColorFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ColorFormat)
  3276. * [`Overlay.GridNodeHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridNodeHighlightConfig)
  3277. * [`Overlay.HingeConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HingeConfig)
  3278. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  3279. #### `Page`: new commands
  3280. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad)
  3281. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument)
  3282. * [`Page.bringToFront`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-bringToFront)
  3283. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot)
  3284. * [`Page.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureSnapshot)
  3285. * [`Page.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceMetricsOverride)
  3286. * [`Page.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceOrientationOverride)
  3287. * [`Page.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearGeolocationOverride)
  3288. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld)
  3289. * [`Page.deleteCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-deleteCookie)
  3290. * [`Page.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-disable)
  3291. * [`Page.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-enable)
  3292. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest)
  3293. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors)
  3294. * [`Page.getManifestIcons`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getManifestIcons)
  3295. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies)
  3296. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree)
  3297. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics)
  3298. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory)
  3299. * [`Page.resetNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-resetNavigationHistory)
  3300. * [`Page.getResourceContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceContent)
  3301. * [`Page.getResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceTree)
  3302. * [`Page.handleJavaScriptDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleJavaScriptDialog)
  3303. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate)
  3304. * [`Page.navigateToHistoryEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigateToHistoryEntry)
  3305. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF)
  3306. * [`Page.reload`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-reload)
  3307. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad)
  3308. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument)
  3309. * [`Page.screencastFrameAck`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-screencastFrameAck)
  3310. * [`Page.searchInResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-searchInResource)
  3311. * [`Page.setAdBlockingEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setAdBlockingEnabled)
  3312. * [`Page.setBypassCSP`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setBypassCSP)
  3313. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride)
  3314. * [`Page.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceOrientationOverride)
  3315. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies)
  3316. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes)
  3317. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent)
  3318. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior)
  3319. * [`Page.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setGeolocationOverride)
  3320. * [`Page.setLifecycleEventsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setLifecycleEventsEnabled)
  3321. * [`Page.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setTouchEmulationEnabled)
  3322. * [`Page.startScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-startScreencast)
  3323. * [`Page.stopLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopLoading)
  3324. * [`Page.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-crash)
  3325. * [`Page.close`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-close)
  3326. * [`Page.setWebLifecycleState`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setWebLifecycleState)
  3327. * [`Page.stopScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopScreencast)
  3328. * [`Page.setProduceCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setProduceCompilationCache)
  3329. * [`Page.addCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addCompilationCache)
  3330. * [`Page.clearCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearCompilationCache)
  3331. * [`Page.generateTestReport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-generateTestReport)
  3332. * [`Page.waitForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-waitForDebugger)
  3333. * [`Page.setInterceptFileChooserDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setInterceptFileChooserDialog)
  3334. #### `Page`: new events
  3335. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired)
  3336. * [`Page.fileChooserOpened`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-fileChooserOpened)
  3337. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached)
  3338. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation)
  3339. * [`Page.frameDetached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameDetached)
  3340. * [`Page.frameNavigated`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameNavigated)
  3341. * [`Page.frameResized`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameResized)
  3342. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  3343. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation)
  3344. * [`Page.frameStartedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStartedLoading)
  3345. * [`Page.frameStoppedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStoppedLoading)
  3346. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin)
  3347. * [`Page.downloadProgress`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadProgress)
  3348. * [`Page.interstitialHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialHidden)
  3349. * [`Page.interstitialShown`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-interstitialShown)
  3350. * [`Page.javascriptDialogClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogClosed)
  3351. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening)
  3352. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent)
  3353. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired)
  3354. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument)
  3355. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame)
  3356. * [`Page.screencastVisibilityChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastVisibilityChanged)
  3357. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen)
  3358. * [`Page.compilationCacheProduced`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-compilationCacheProduced)
  3359. #### `Page`: new types
  3360. * [`Page.FrameId`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameId)
  3361. * [`Page.AdFrameType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AdFrameType)
  3362. * [`Page.SecureContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-SecureContextType)
  3363. * [`Page.CrossOriginIsolatedContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-CrossOriginIsolatedContextType)
  3364. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame)
  3365. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource)
  3366. * [`Page.FrameResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResourceTree)
  3367. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree)
  3368. * [`Page.ScriptIdentifier`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScriptIdentifier)
  3369. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType)
  3370. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry)
  3371. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata)
  3372. * [`Page.DialogType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-DialogType)
  3373. * [`Page.AppManifestError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestError)
  3374. * [`Page.AppManifestParsedProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestParsedProperties)
  3375. * [`Page.LayoutViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-LayoutViewport)
  3376. * [`Page.VisualViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-VisualViewport)
  3377. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport)
  3378. * [`Page.FontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontFamilies)
  3379. * [`Page.FontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontSizes)
  3380. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  3381. * [`Page.ClientNavigationDisposition`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationDisposition)
  3382. * [`Page.InstallabilityErrorArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityErrorArgument)
  3383. * [`Page.InstallabilityError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityError)
  3384. * [`Page.ReferrerPolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ReferrerPolicy)
  3385. #### `Performance`: new commands
  3386. * [`Performance.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-disable)
  3387. * [`Performance.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-enable)
  3388. * [`Performance.setTimeDomain`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-setTimeDomain)
  3389. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics)
  3390. #### `Performance`: new event
  3391. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics)
  3392. #### `Performance`: new type
  3393. * [`Performance.Metric`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#type-Metric)
  3394. #### `Security`: new commands
  3395. * [`Security.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-disable)
  3396. * [`Security.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-enable)
  3397. * [`Security.setIgnoreCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setIgnoreCertificateErrors)
  3398. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError)
  3399. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors)
  3400. #### `Security`: new events
  3401. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError)
  3402. * [`Security.visibleSecurityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-visibleSecurityStateChanged)
  3403. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged)
  3404. #### `Security`: new types
  3405. * [`Security.CertificateId`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateId)
  3406. * [`Security.MixedContentType`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-MixedContentType)
  3407. * [`Security.SecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityState)
  3408. * [`Security.CertificateSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateSecurityState)
  3409. * [`Security.SafetyTipStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipStatus)
  3410. * [`Security.SafetyTipInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipInfo)
  3411. * [`Security.VisibleSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-VisibleSecurityState)
  3412. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation)
  3413. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus)
  3414. * [`Security.CertificateErrorAction`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateErrorAction)
  3415. #### `ServiceWorker`: new commands
  3416. * [`ServiceWorker.deliverPushMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-deliverPushMessage)
  3417. * [`ServiceWorker.disable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-disable)
  3418. * [`ServiceWorker.dispatchSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchSyncEvent)
  3419. * [`ServiceWorker.dispatchPeriodicSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchPeriodicSyncEvent)
  3420. * [`ServiceWorker.enable`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-enable)
  3421. * [`ServiceWorker.inspectWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-inspectWorker)
  3422. * [`ServiceWorker.setForceUpdateOnPageLoad`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-setForceUpdateOnPageLoad)
  3423. * [`ServiceWorker.skipWaiting`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-skipWaiting)
  3424. * [`ServiceWorker.startWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-startWorker)
  3425. * [`ServiceWorker.stopAllWorkers`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopAllWorkers)
  3426. * [`ServiceWorker.stopWorker`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopWorker)
  3427. * [`ServiceWorker.unregister`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-unregister)
  3428. * [`ServiceWorker.updateRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-updateRegistration)
  3429. #### `ServiceWorker`: new events
  3430. * [`ServiceWorker.workerErrorReported`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerErrorReported)
  3431. * [`ServiceWorker.workerRegistrationUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerRegistrationUpdated)
  3432. * [`ServiceWorker.workerVersionUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerVersionUpdated)
  3433. #### `ServiceWorker`: new types
  3434. * [`ServiceWorker.RegistrationID`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-RegistrationID)
  3435. * [`ServiceWorker.ServiceWorkerRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerRegistration)
  3436. * [`ServiceWorker.ServiceWorkerVersionRunningStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionRunningStatus)
  3437. * [`ServiceWorker.ServiceWorkerVersionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersionStatus)
  3438. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion)
  3439. * [`ServiceWorker.ServiceWorkerErrorMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerErrorMessage)
  3440. #### `Storage`: new commands
  3441. * [`Storage.clearDataForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin)
  3442. * [`Storage.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getCookies)
  3443. * [`Storage.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-setCookies)
  3444. * [`Storage.clearCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearCookies)
  3445. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  3446. * [`Storage.trackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackCacheStorageForOrigin)
  3447. * [`Storage.trackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackIndexedDBForOrigin)
  3448. * [`Storage.untrackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackCacheStorageForOrigin)
  3449. * [`Storage.untrackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackIndexedDBForOrigin)
  3450. #### `Storage`: new events
  3451. * [`Storage.cacheStorageContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageContentUpdated)
  3452. * [`Storage.cacheStorageListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageListUpdated)
  3453. * [`Storage.indexedDBContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBContentUpdated)
  3454. * [`Storage.indexedDBListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBListUpdated)
  3455. #### `Storage`: new types
  3456. * [`Storage.StorageType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType)
  3457. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType)
  3458. #### `SystemInfo`: new commands
  3459. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo)
  3460. * [`SystemInfo.getProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getProcessInfo)
  3461. #### `SystemInfo`: new types
  3462. * [`SystemInfo.GPUDevice`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUDevice)
  3463. * [`SystemInfo.Size`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-Size)
  3464. * [`SystemInfo.VideoDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoDecodeAcceleratorCapability)
  3465. * [`SystemInfo.VideoEncodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoEncodeAcceleratorCapability)
  3466. * [`SystemInfo.SubsamplingFormat`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-SubsamplingFormat)
  3467. * [`SystemInfo.ImageType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageType)
  3468. * [`SystemInfo.ImageDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageDecodeAcceleratorCapability)
  3469. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo)
  3470. * [`SystemInfo.ProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessInfo)
  3471. #### `Target`: new commands
  3472. * [`Target.activateTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-activateTarget)
  3473. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget)
  3474. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget)
  3475. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget)
  3476. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol)
  3477. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext)
  3478. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts)
  3479. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget)
  3480. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget)
  3481. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext)
  3482. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo)
  3483. * [`Target.getTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargets)
  3484. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget)
  3485. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach)
  3486. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets)
  3487. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations)
  3488. #### `Target`: new events
  3489. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget)
  3490. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget)
  3491. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget)
  3492. * [`Target.targetCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCreated)
  3493. * [`Target.targetDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetDestroyed)
  3494. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed)
  3495. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged)
  3496. #### `Target`: new types
  3497. * [`Target.TargetID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID)
  3498. * [`Target.SessionID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-SessionID)
  3499. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo)
  3500. * [`Target.RemoteLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-RemoteLocation)
  3501. #### `Tethering`: new commands
  3502. * [`Tethering.bind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-bind)
  3503. * [`Tethering.unbind`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#method-unbind)
  3504. #### `Tethering`: new event
  3505. * [`Tethering.accepted`](https://chromedevtools.github.io/devtools-protocol/tot/Tethering/#event-accepted)
  3506. #### `Tracing`: new commands
  3507. * [`Tracing.end`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-end)
  3508. * [`Tracing.getCategories`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-getCategories)
  3509. * [`Tracing.recordClockSyncMarker`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-recordClockSyncMarker)
  3510. * [`Tracing.requestMemoryDump`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-requestMemoryDump)
  3511. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start)
  3512. #### `Tracing`: new events
  3513. * [`Tracing.bufferUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-bufferUsage)
  3514. * [`Tracing.dataCollected`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-dataCollected)
  3515. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete)
  3516. #### `Tracing`: new types
  3517. * [`Tracing.MemoryDumpConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-MemoryDumpConfig)
  3518. * [`Tracing.TraceConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TraceConfig)
  3519. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  3520. * [`Tracing.StreamCompression`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamCompression)
  3521. #### `Fetch`: new commands
  3522. * [`Fetch.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-disable)
  3523. * [`Fetch.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-enable)
  3524. * [`Fetch.failRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-failRequest)
  3525. * [`Fetch.fulfillRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-fulfillRequest)
  3526. * [`Fetch.continueRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest)
  3527. * [`Fetch.continueWithAuth`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueWithAuth)
  3528. * [`Fetch.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-getResponseBody)
  3529. * [`Fetch.takeResponseBodyAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-takeResponseBodyAsStream)
  3530. #### `Fetch`: new events
  3531. * [`Fetch.requestPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused)
  3532. * [`Fetch.authRequired`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-authRequired)
  3533. #### `Fetch`: new types
  3534. * [`Fetch.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestId)
  3535. * [`Fetch.RequestStage`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestStage)
  3536. * [`Fetch.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestPattern)
  3537. * [`Fetch.HeaderEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-HeaderEntry)
  3538. * [`Fetch.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallenge)
  3539. * [`Fetch.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallengeResponse)
  3540. #### `WebAudio`: new commands
  3541. * [`WebAudio.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-enable)
  3542. * [`WebAudio.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-disable)
  3543. * [`WebAudio.getRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-getRealtimeData)
  3544. #### `WebAudio`: new events
  3545. * [`WebAudio.contextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextCreated)
  3546. * [`WebAudio.contextWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextWillBeDestroyed)
  3547. * [`WebAudio.contextChanged`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextChanged)
  3548. * [`WebAudio.audioListenerCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerCreated)
  3549. * [`WebAudio.audioListenerWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerWillBeDestroyed)
  3550. * [`WebAudio.audioNodeCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeCreated)
  3551. * [`WebAudio.audioNodeWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeWillBeDestroyed)
  3552. * [`WebAudio.audioParamCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamCreated)
  3553. * [`WebAudio.audioParamWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamWillBeDestroyed)
  3554. * [`WebAudio.nodesConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesConnected)
  3555. * [`WebAudio.nodesDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesDisconnected)
  3556. * [`WebAudio.nodeParamConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamConnected)
  3557. * [`WebAudio.nodeParamDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamDisconnected)
  3558. #### `WebAudio`: new types
  3559. * [`WebAudio.GraphObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-GraphObjectId)
  3560. * [`WebAudio.ContextType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextType)
  3561. * [`WebAudio.ContextState`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextState)
  3562. * [`WebAudio.NodeType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-NodeType)
  3563. * [`WebAudio.ChannelCountMode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelCountMode)
  3564. * [`WebAudio.ChannelInterpretation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelInterpretation)
  3565. * [`WebAudio.ParamType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ParamType)
  3566. * [`WebAudio.AutomationRate`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AutomationRate)
  3567. * [`WebAudio.ContextRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextRealtimeData)
  3568. * [`WebAudio.BaseAudioContext`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-BaseAudioContext)
  3569. * [`WebAudio.AudioListener`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioListener)
  3570. * [`WebAudio.AudioNode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioNode)
  3571. * [`WebAudio.AudioParam`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioParam)
  3572. #### `WebAuthn`: new commands
  3573. * [`WebAuthn.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-enable)
  3574. * [`WebAuthn.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-disable)
  3575. * [`WebAuthn.addVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addVirtualAuthenticator)
  3576. * [`WebAuthn.removeVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeVirtualAuthenticator)
  3577. * [`WebAuthn.addCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addCredential)
  3578. * [`WebAuthn.getCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredential)
  3579. * [`WebAuthn.getCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredentials)
  3580. * [`WebAuthn.removeCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeCredential)
  3581. * [`WebAuthn.clearCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-clearCredentials)
  3582. * [`WebAuthn.setUserVerified`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setUserVerified)
  3583. * [`WebAuthn.setAutomaticPresenceSimulation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setAutomaticPresenceSimulation)
  3584. #### `WebAuthn`: new types
  3585. * [`WebAuthn.AuthenticatorId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorId)
  3586. * [`WebAuthn.AuthenticatorProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorProtocol)
  3587. * [`WebAuthn.AuthenticatorTransport`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorTransport)
  3588. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions)
  3589. * [`WebAuthn.Credential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-Credential)
  3590. #### `Media`: new commands
  3591. * [`Media.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-enable)
  3592. * [`Media.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-disable)
  3593. #### `Media`: new events
  3594. * [`Media.playerPropertiesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerPropertiesChanged)
  3595. * [`Media.playerEventsAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerEventsAdded)
  3596. * [`Media.playerMessagesLogged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerMessagesLogged)
  3597. * [`Media.playerErrorsRaised`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerErrorsRaised)
  3598. * [`Media.playersCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playersCreated)
  3599. #### `Media`: new types
  3600. * [`Media.PlayerId`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerId)
  3601. * [`Media.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-Timestamp)
  3602. * [`Media.PlayerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerMessage)
  3603. * [`Media.PlayerProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerProperty)
  3604. * [`Media.PlayerEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEvent)
  3605. * [`Media.PlayerError`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerError)
  3606. ## Roll protocol to r813570
  3607. ###### _2020-10-04 08:16:04_ | Diff: [e98f67b...874a0ee](https://github.com/ChromeDevTools/devtools-protocol/compare/e98f67b...874a0ee)
  3608. #### `Console`: removed domains
  3609. * [`Console.Console`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Console)
  3610. * [`Console.Debugger`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Debugger)
  3611. * [`Console.HeapProfiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-HeapProfiler)
  3612. * [`Console.Profiler`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Profiler)
  3613. * [`Console.Runtime`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Runtime)
  3614. * [`Console.Schema`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#domain-Schema)
  3615. #### `Accessibility`: removed domains
  3616. * [`Accessibility.Accessibility`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Accessibility)
  3617. * [`Accessibility.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Animation)
  3618. * [`Accessibility.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ApplicationCache)
  3619. * [`Accessibility.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Audits)
  3620. * [`Accessibility.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-BackgroundService)
  3621. * [`Accessibility.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Browser)
  3622. * [`Accessibility.CSS`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CSS)
  3623. * [`Accessibility.CacheStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-CacheStorage)
  3624. * [`Accessibility.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Cast)
  3625. * [`Accessibility.DOM`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOM)
  3626. * [`Accessibility.DOMDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMDebugger)
  3627. * [`Accessibility.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMSnapshot)
  3628. * [`Accessibility.DOMStorage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DOMStorage)
  3629. * [`Accessibility.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Database)
  3630. * [`Accessibility.DeviceOrientation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-DeviceOrientation)
  3631. * [`Accessibility.Emulation`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Emulation)
  3632. * [`Accessibility.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-HeadlessExperimental)
  3633. * [`Accessibility.IO`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IO)
  3634. * [`Accessibility.IndexedDB`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-IndexedDB)
  3635. * [`Accessibility.Input`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Input)
  3636. * [`Accessibility.Inspector`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Inspector)
  3637. * [`Accessibility.LayerTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-LayerTree)
  3638. * [`Accessibility.Log`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Log)
  3639. * [`Accessibility.Memory`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Memory)
  3640. * [`Accessibility.Network`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Network)
  3641. * [`Accessibility.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Overlay)
  3642. * [`Accessibility.Page`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Page)
  3643. * [`Accessibility.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Performance)
  3644. * [`Accessibility.Security`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Security)
  3645. * [`Accessibility.ServiceWorker`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-ServiceWorker)
  3646. * [`Accessibility.Storage`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Storage)
  3647. * [`Accessibility.SystemInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-SystemInfo)
  3648. * [`Accessibility.Target`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Target)
  3649. * [`Accessibility.Tethering`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tethering)
  3650. * [`Accessibility.Tracing`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Tracing)
  3651. * [`Accessibility.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Fetch)
  3652. * [`Accessibility.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAudio)
  3653. * [`Accessibility.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-WebAuthn)
  3654. * [`Accessibility.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#domain-Media)
  3655. ## Roll protocol to r813281
  3656. ###### _2020-10-02 11:16:02_ | Diff: [81d36b6...e98f67b](https://github.com/ChromeDevTools/devtools-protocol/compare/81d36b6...e98f67b)
  3657. #### `WebAuthn`: modified type
  3658. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions) - The `automaticPresenceSimulation` in the properties had `name` _updated_. The `automaticPresenceSimulation` in the properties had `description` _updated_. The `isUserVerified` in the properties had `name` _updated_. The `isUserVerified` in the properties had `description` _updated_. The properties's `isUserVerified` _added_.
  3659. ## Roll protocol to r812116
  3660. ###### _2020-09-30 09:16:20_ | Diff: [9f36776...81d36b6](https://github.com/ChromeDevTools/devtools-protocol/compare/9f36776...81d36b6)
  3661. #### `Target`: modified type
  3662. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The `canAccessOpener` in the properties had `description` _updated_. The `browserContextId` in the properties had `name` _updated_. The `browserContextId` in the properties had `$ref` _updated_. The properties's `description` _added_. The properties's `browserContextId` _added_.
  3663. ## Roll protocol to r810467
  3664. ###### _2020-09-24 21:16:27_ | Diff: [362b549...9f36776](https://github.com/ChromeDevTools/devtools-protocol/compare/362b549...9f36776)
  3665. #### `Network`: modified command
  3666. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The `success` in the return value had `description` _updated_. The return value's `deprecated` _added_.
  3667. #### `Target`: modified command
  3668. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget) - The return value's `description` _added_. The return value's `deprecated` _added_.
  3669. ## Roll protocol to r810188
  3670. ###### _2020-09-24 07:16:32_ | Diff: [ea0b910...362b549](https://github.com/ChromeDevTools/devtools-protocol/compare/ea0b910...362b549)
  3671. #### `Network`: new command
  3672. * [`Network.loadNetworkResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-loadNetworkResource)
  3673. #### `Network`: new types
  3674. * [`Network.LoadNetworkResourcePageResult`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourcePageResult)
  3675. * [`Network.LoadNetworkResourceOptions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-LoadNetworkResourceOptions)
  3676. ## Roll protocol to r809251
  3677. ###### _2020-09-22 02:16:18_ | Diff: [01dd54b...ea0b910](https://github.com/ChromeDevTools/devtools-protocol/compare/01dd54b...ea0b910)
  3678. #### `Accessibility`: new command
  3679. * [`Accessibility.queryAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-queryAXTree)
  3680. ## Roll protocol to r808307
  3681. ###### _2020-09-18 04:16:16_ | Diff: [9e2e943...01dd54b](https://github.com/ChromeDevTools/devtools-protocol/compare/9e2e943...01dd54b)
  3682. #### `Network`: modified types
  3683. * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus) - The properties's `reportOnlyValue` _added_. The properties's `reportingEndpoint` _added_. The properties's `reportOnlyReportingEndpoint` _added_.
  3684. * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus) - The properties's `reportOnlyValue` _added_. The properties's `reportingEndpoint` _added_. The properties's `reportOnlyReportingEndpoint` _added_.
  3685. ## Roll protocol to r806843
  3686. ###### _2020-09-14 19:16:32_ | Diff: [2155b85...9e2e943](https://github.com/ChromeDevTools/devtools-protocol/compare/2155b85...9e2e943)
  3687. #### `Fetch`: modified types
  3688. * [`Fetch.RequestStage`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestStage) - `experimental` removed.
  3689. * [`Fetch.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestPattern) - `experimental` removed.
  3690. * [`Fetch.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallenge) - `experimental` removed.
  3691. * [`Fetch.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallengeResponse) - `experimental` removed.
  3692. ## Roll protocol to r806611
  3693. ###### _2020-09-14 05:16:27_ | Diff: [176b07f...2155b85](https://github.com/ChromeDevTools/devtools-protocol/compare/176b07f...2155b85)
  3694. #### `Overlay`: modified type
  3695. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The properties's `gridBackgroundColor` _added_.
  3696. ## Roll protocol to r806105
  3697. ###### _2020-09-11 02:16:20_ | Diff: [23323c5...176b07f](https://github.com/ChromeDevTools/devtools-protocol/compare/23323c5...176b07f)
  3698. #### `CSS`: modified type
  3699. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The `isMutable` in the properties had `description` _updated_. The `startLine` in the properties had `name` _updated_. The `startLine` in the properties had `description` _updated_. The `startLine` in the properties had `type` _updated_. The `startColumn` in the properties had `name` _updated_. The `startColumn` in the properties had `description` _updated_. The `length` in the properties had `name` _updated_. The `length` in the properties had `description` _updated_. The `endLine` in the properties had `name` _updated_. The `endLine` in the properties had `description` _updated_. The `endColumn` in the properties had `name` _updated_. The `endColumn` in the properties had `description` _updated_. The properties's `endColumn` _added_.
  3700. ## Roll protocol to r805376
  3701. ###### _2020-09-09 10:16:20_ | Diff: [caa0ede...23323c5](https://github.com/ChromeDevTools/devtools-protocol/compare/caa0ede...23323c5)
  3702. #### `WebAudio`: modified type
  3703. * [`WebAudio.AudioListener`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioListener) - `description` updated.
  3704. ## Roll protocol to r805182
  3705. ###### _2020-09-08 19:16:15_ | Diff: [4f48bef...caa0ede](https://github.com/ChromeDevTools/devtools-protocol/compare/4f48bef...caa0ede)
  3706. #### `Profiler`: new commands
  3707. * [`Profiler.enableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableCounters)
  3708. * [`Profiler.disableCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableCounters)
  3709. * [`Profiler.getCounters`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getCounters)
  3710. #### `Profiler`: modified command
  3711. * [`Profiler.getRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getRuntimeCallStats) - The `result` in the return value had `description` _updated_. The `result` in the return value had `$ref` _updated_.
  3712. #### `Profiler`: new type
  3713. * [`Profiler.RuntimeCallCounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-RuntimeCallCounterInfo)
  3714. ## Roll protocol to r802093
  3715. ###### _2020-08-26 20:16:11_ | Diff: [4d26309...4f48bef](https://github.com/ChromeDevTools/devtools-protocol/compare/4d26309...4f48bef)
  3716. #### `Network`: new command
  3717. * [`Network.setAttachDebugHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setAttachDebugHeader)
  3718. ## Roll protocol to r801017
  3719. ###### _2020-08-24 09:16:09_ | Diff: [5ac7d2e...4d26309](https://github.com/ChromeDevTools/devtools-protocol/compare/5ac7d2e...4d26309)
  3720. #### `Browser`: modified type
  3721. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor) - The properties's `allowWithoutSanitization` _removed_. The `type` in the properties had `name` _updated_. The `type` in the properties had `description` _updated_. The `type` in the properties had `type` _updated_.
  3722. ## Roll protocol to r799653
  3723. ###### _2020-08-19 09:16:16_ | Diff: [0e651b0...5ac7d2e](https://github.com/ChromeDevTools/devtools-protocol/compare/0e651b0...5ac7d2e)
  3724. #### `Page`: new types
  3725. * [`Page.SecureContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-SecureContextType)
  3726. * [`Page.CrossOriginIsolatedContextType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-CrossOriginIsolatedContextType)
  3727. #### `Page`: modified type
  3728. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The properties's `secureContextType` _added_. The properties's `crossOriginIsolatedContextType` _added_.
  3729. ## Roll protocol to r799090
  3730. ###### _2020-08-18 07:16:17_ | Diff: [3c9bb33...0e651b0](https://github.com/ChromeDevTools/devtools-protocol/compare/3c9bb33...0e651b0)
  3731. #### `Network`: new command
  3732. * [`Network.getSecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getSecurityIsolationStatus)
  3733. #### `Network`: new types
  3734. * [`Network.CrossOriginOpenerPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyValue)
  3735. * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus)
  3736. * [`Network.CrossOriginEmbedderPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyValue)
  3737. * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus)
  3738. * [`Network.SecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityIsolationStatus)
  3739. ## Roll protocol to r796752
  3740. ###### _2020-08-11 02:16:15_ | Diff: [6b171b5...3c9bb33](https://github.com/ChromeDevTools/devtools-protocol/compare/6b171b5...3c9bb33)
  3741. #### `DOM`: new command
  3742. * [`DOM.getNodesForSubtreeByStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodesForSubtreeByStyle)
  3743. #### `DOM`: new type
  3744. * [`DOM.CSSComputedStyleProperty`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-CSSComputedStyleProperty)
  3745. ## Roll protocol to r795450
  3746. ###### _2020-08-06 07:16:06_ | Diff: [c89b1a6...6b171b5](https://github.com/ChromeDevTools/devtools-protocol/compare/c89b1a6...6b171b5)
  3747. #### `Audits`: modified type
  3748. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails) - The `violatingNodeId` in the properties had `type` _removed_. The properties's `$ref` _added_.
  3749. ## Roll protocol to r795133
  3750. ###### _2020-08-05 12:16:31_ | Diff: [40517aa...c89b1a6](https://github.com/ChromeDevTools/devtools-protocol/compare/40517aa...c89b1a6)
  3751. #### `DOM`: modified command
  3752. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument) - `description` updated. `deprecated` added.
  3753. ## Roll protocol to r795004
  3754. ###### _2020-08-05 07:16:20_ | Diff: [9f93887...40517aa](https://github.com/ChromeDevTools/devtools-protocol/compare/9f93887...40517aa)
  3755. #### `Target`: modified type
  3756. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The `browserContextId` in the properties had `optional` _removed_. The `browserContextId` in the properties had `$ref` _removed_. The `browserContextId` in the properties had `name` _updated_. The properties's `description` _added_. The properties's `type` _added_. The properties's `browserContextId` _added_.
  3757. ## Roll protocol to r794659
  3758. ###### _2020-08-04 12:16:29_ | Diff: [92769fe...9f93887](https://github.com/ChromeDevTools/devtools-protocol/compare/92769fe...9f93887)
  3759. #### `Debugger`: modified commands
  3760. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto) - The parameters's `skipList` _added_.
  3761. * [`Debugger.stepOver`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepOver)
  3762. #### `Debugger`: new type
  3763. * [`Debugger.LocationRange`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-LocationRange)
  3764. ## Roll protocol to r794596
  3765. ###### _2020-08-04 10:16:13_ | Diff: [8f538a9...92769fe](https://github.com/ChromeDevTools/devtools-protocol/compare/8f538a9...92769fe)
  3766. #### `Audits`: modified type
  3767. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails) - The properties's `violatingNodeId` _added_.
  3768. ## Roll protocol to r794471
  3769. ###### _2020-08-04 04:16:10_ | Diff: [6dad424...8f538a9](https://github.com/ChromeDevTools/devtools-protocol/compare/6dad424...8f538a9)
  3770. #### `CSS`: new commands
  3771. * [`CSS.trackComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-trackComputedStyleUpdates)
  3772. * [`CSS.takeComputedStyleUpdates`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeComputedStyleUpdates)
  3773. ## Roll protocol to r794453
  3774. ###### _2020-08-04 03:16:08_ | Diff: [efe2c1f...6dad424](https://github.com/ChromeDevTools/devtools-protocol/compare/efe2c1f...6dad424)
  3775. #### `Overlay`: modified type
  3776. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderDash` in the properties had `type` _removed_. The `cellBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `rowHatchColor` in the properties had `$ref` _removed_. The `columnGapColor` in the properties had `$ref` _removed_. The `columnHatchColor` in the properties had `$ref` _removed_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The `areaBorderColor` in the properties had `name` _updated_. The `areaBorderColor` in the properties had `description` _updated_. The properties's `deprecated` _added_ (2 times). The properties's `$ref` _added_ (2 times). The properties's `type` _added_ (4 times). The properties's `rowHatchColor` _added_. The properties's `columnGapColor` _added_. The properties's `columnHatchColor` _added_. The properties's `areaBorderColor` _added_.
  3777. ## Roll protocol to r794398
  3778. ###### _2020-08-03 22:16:06_ | Diff: [979117d...efe2c1f](https://github.com/ChromeDevTools/devtools-protocol/compare/979117d...efe2c1f)
  3779. #### `Page`: modified type
  3780. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The `unreachableUrl` in the properties had `experimental` _removed_. The `unreachableUrl` in the properties had `optional` _removed_. The `adFrameType` in the properties had `$ref` _removed_. The `securityOrigin` in the properties had `name` _updated_. The `securityOrigin` in the properties had `description` _updated_. The `mimeType` in the properties had `name` _updated_. The `mimeType` in the properties had `description` _updated_. The `unreachableUrl` in the properties had `name` _updated_. The `unreachableUrl` in the properties had `description` _updated_. The `adFrameType` in the properties had `name` _updated_. The `adFrameType` in the properties had `description` _updated_. The properties's `experimental` _added_. The properties's `type` _added_. The properties's `adFrameType` _added_.
  3781. ## Roll protocol to r793541
  3782. ###### _2020-07-31 01:16:13_ | Diff: [f67ba47...979117d](https://github.com/ChromeDevTools/devtools-protocol/compare/f67ba47...979117d)
  3783. #### `Audits`: modified type
  3784. * [`Audits.BlockedByResponseIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseIssueDetails) - The `frame` in the properties had `name` _updated_. The `reason` in the properties had `name` _updated_. The `reason` in the properties had `$ref` _updated_. The properties's `optional` _added_. The properties's `reason` _added_.
  3785. ## Roll protocol to r792906
  3786. ###### _2020-07-29 15:16:14_ | Diff: [158ed24...f67ba47](https://github.com/ChromeDevTools/devtools-protocol/compare/158ed24...f67ba47)
  3787. #### `Overlay`: new commands
  3788. * [`Overlay.getSourceOrderHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getSourceOrderHighlightObjectForTest)
  3789. * [`Overlay.highlightSourceOrder`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightSourceOrder)
  3790. #### `Overlay`: new type
  3791. * [`Overlay.SourceOrderConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-SourceOrderConfig)
  3792. ## Roll protocol to r792754
  3793. ###### _2020-07-29 10:16:33_ | Diff: [25ef76c...158ed24](https://github.com/ChromeDevTools/devtools-protocol/compare/25ef76c...158ed24)
  3794. #### `Emulation`: new commands
  3795. * [`Emulation.setIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setIdleOverride)
  3796. * [`Emulation.clearIdleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearIdleOverride)
  3797. ## Roll protocol to r792702
  3798. ###### _2020-07-29 08:16:16_ | Diff: [6404206...25ef76c](https://github.com/ChromeDevTools/devtools-protocol/compare/6404206...25ef76c)
  3799. #### `Audits`: modified type
  3800. * [`Audits.SameSiteCookieExclusionReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieExclusionReason) - The enum's `ExcludeSameSiteLax` _added_. The enum's `ExcludeSameSiteStrict` _added_.
  3801. ## Roll protocol to r792050
  3802. ###### _2020-07-27 16:16:18_ | Diff: [5b2db53...6404206](https://github.com/ChromeDevTools/devtools-protocol/compare/5b2db53...6404206)
  3803. #### `Debugger`: modified events
  3804. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse) - The parameters's `embedderName` _added_.
  3805. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The parameters's `embedderName` _added_.
  3806. ## Roll protocol to r791394
  3807. ###### _2020-07-25 02:16:14_ | Diff: [c5d82e9...5b2db53](https://github.com/ChromeDevTools/devtools-protocol/compare/c5d82e9...5b2db53)
  3808. #### `Network`: modified command
  3809. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - The `urls` in the parameters had `description` _updated_.
  3810. ## Roll protocol to r790520
  3811. ###### _2020-07-21 13:16:17_ | Diff: [bfd8ad7...7f76206](https://github.com/ChromeDevTools/devtools-protocol/compare/bfd8ad7...7f76206)
  3812. #### `Network`: new type
  3813. * [`Network.PostDataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-PostDataEntry)
  3814. #### `Network`: modified type
  3815. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `mixedContentType` in the properties had `$ref` _removed_. The `referrerPolicy` in the properties had `type` _removed_. The `referrerPolicy` in the properties had `enum` _removed_. The `isLinkPreload` in the properties had `optional` _removed_. The `mixedContentType` in the properties had `name` _updated_. The `mixedContentType` in the properties had `description` _updated_. The `initialPriority` in the properties had `name` _updated_. The `initialPriority` in the properties had `description` _updated_. The `initialPriority` in the properties had `$ref` _updated_. The `referrerPolicy` in the properties had `name` _updated_. The `referrerPolicy` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `name` _updated_. The `isLinkPreload` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `type` _updated_. The properties's `experimental` _added_. The properties's `type` _added_. The properties's `items` _added_. The properties's `optional` _added_. The properties's `$ref` _added_. The properties's `enum` _added_. The properties's `isLinkPreload` _added_.
  3816. ## Roll protocol to r789877
  3817. ###### _2020-07-20 03:16:15_ | Diff: [2dc3bb9...294ad98](https://github.com/ChromeDevTools/devtools-protocol/compare/2dc3bb9...294ad98)
  3818. #### `Overlay`: modified type
  3819. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderColor` in the properties had `$ref` _removed_. The `gridBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `gridBorderColor` in the properties had `name` _updated_. The `gridBorderColor` in the properties had `description` _updated_. The `cellBorderColor` in the properties had `name` _updated_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The `areaBorderColor` in the properties had `name` _updated_. The `areaBorderColor` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `areaBorderColor` _added_.
  3820. ## Roll protocol to r789773
  3821. ###### _2020-07-18 03:16:27_ | Diff: [ffbd7f9...2dc3bb9](https://github.com/ChromeDevTools/devtools-protocol/compare/ffbd7f9...2dc3bb9)
  3822. #### `Overlay`: modified type
  3823. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderColor` in the properties had `$ref` _removed_. The `gridBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `gridBorderColor` in the properties had `name` _updated_. The `gridBorderColor` in the properties had `description` _updated_. The `cellBorderColor` in the properties had `name` _updated_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The `areaBorderColor` in the properties had `name` _updated_. The `areaBorderColor` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `areaBorderColor` _added_.
  3824. ## Roll protocol to r788664
  3825. ###### _2020-07-15 09:16:17_ | Diff: [1e13543...ffbd7f9](https://github.com/ChromeDevTools/devtools-protocol/compare/1e13543...ffbd7f9)
  3826. #### `Audits`: new type
  3827. * [`Audits.SourceCodeLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SourceCodeLocation)
  3828. #### `Audits`: modified type
  3829. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails) - The properties's `sourceCodeLocation` _added_.
  3830. ## Roll protocol to r788135
  3831. ###### _2020-07-14 06:16:33_ | Diff: [40acafd...1e13543](https://github.com/ChromeDevTools/devtools-protocol/compare/40acafd...1e13543)
  3832. #### `Page`: new type
  3833. * [`Page.AdFrameType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AdFrameType)
  3834. #### `Page`: modified type
  3835. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The properties's `adFrameType` _added_.
  3836. ## Roll protocol to r787341
  3837. ###### _2020-07-10 13:16:13_ | Diff: [65755e2...370db8f](https://github.com/ChromeDevTools/devtools-protocol/compare/65755e2...370db8f)
  3838. #### `Overlay`: new commands
  3839. * [`Overlay.getGridHighlightObjectsForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getGridHighlightObjectsForTest)
  3840. * [`Overlay.setShowGridOverlays`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowGridOverlays)
  3841. #### `Overlay`: new type
  3842. * [`Overlay.GridNodeHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridNodeHighlightConfig)
  3843. ## Roll protocol to r787108
  3844. ###### _2020-07-09 23:16:07_ | Diff: [88c2dab...65755e2](https://github.com/ChromeDevTools/devtools-protocol/compare/88c2dab...65755e2)
  3845. #### `CSS`: new type
  3846. * [`CSS.FontVariationAxis`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontVariationAxis)
  3847. #### `CSS`: modified type
  3848. * [`CSS.FontFace`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontFace) - `description` updated. The properties's `fontVariationAxes` _added_.
  3849. ## Roll protocol to r786951
  3850. ###### _2020-07-09 15:16:05_ | Diff: [3e005aa...88c2dab](https://github.com/ChromeDevTools/devtools-protocol/compare/3e005aa...88c2dab)
  3851. #### `Emulation`: modified command
  3852. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `displayFeature` _added_.
  3853. #### `Emulation`: new type
  3854. * [`Emulation.DisplayFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-DisplayFeature)
  3855. ## Roll protocol to r786047
  3856. ###### _2020-07-07 16:16:12_ | Diff: [448edcd...d0d50cd](https://github.com/ChromeDevTools/devtools-protocol/compare/448edcd...d0d50cd)
  3857. #### `Overlay`: modified type
  3858. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderColor` in the properties had `$ref` _removed_. The `gridBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `gridBorderColor` in the properties had `name` _updated_. The `gridBorderColor` in the properties had `description` _updated_. The `cellBorderColor` in the properties had `name` _updated_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `columnHatchColor` _added_. The properties's `areaBorderColor` _added_.
  3859. ## Roll protocol to r785822
  3860. ###### _2020-07-07 10:16:29_ | Diff: [20413fc...448edcd](https://github.com/ChromeDevTools/devtools-protocol/compare/20413fc...448edcd)
  3861. #### `WebAuthn`: new command
  3862. * [`WebAuthn.setAutomaticPresenceSimulation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setAutomaticPresenceSimulation)
  3863. ## Roll protocol to r784747
  3864. ###### _2020-07-02 02:16:05_ | Diff: [f814796...20413fc](https://github.com/ChromeDevTools/devtools-protocol/compare/f814796...20413fc)
  3865. #### `Audits`: new types
  3866. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  3867. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  3868. #### `Audits`: modified types
  3869. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `ContentSecurityPolicyIssue` _added_.
  3870. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `contentSecurityPolicyIssueDetails` _added_.
  3871. ## Roll protocol to r783643
  3872. ###### _2020-06-29 13:16:10_ | Diff: [c480f8a...cde4dcd](https://github.com/ChromeDevTools/devtools-protocol/compare/c480f8a...cde4dcd)
  3873. #### `Audits`: removed types
  3874. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  3875. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  3876. #### `Audits`: modified types
  3877. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `ContentSecurityPolicyIssue` _removed_.
  3878. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `contentSecurityPolicyIssueDetails` _removed_.
  3879. ## Roll protocol to r783602
  3880. ###### _2020-06-29 11:16:09_ | Diff: [38c54b5...c480f8a](https://github.com/ChromeDevTools/devtools-protocol/compare/38c54b5...c480f8a)
  3881. #### `Audits`: new types
  3882. * [`Audits.ContentSecurityPolicyViolationType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyViolationType)
  3883. * [`Audits.ContentSecurityPolicyIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-ContentSecurityPolicyIssueDetails)
  3884. #### `Audits`: modified types
  3885. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `ContentSecurityPolicyIssue` _added_.
  3886. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `contentSecurityPolicyIssueDetails` _added_.
  3887. ## Roll protocol to r783554
  3888. ###### _2020-06-29 09:17:02_ | Diff: [dae56d1...38c54b5](https://github.com/ChromeDevTools/devtools-protocol/compare/dae56d1...38c54b5)
  3889. #### `CSS`: new command
  3890. * [`CSS.setLocalFontsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setLocalFontsEnabled)
  3891. ## Roll protocol to r780980
  3892. ###### _2020-06-22 14:16:09_ | Diff: [1ec1519...9277d63](https://github.com/ChromeDevTools/devtools-protocol/compare/1ec1519...9277d63)
  3893. #### `Audits`: new types
  3894. * [`Audits.HeavyAdResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdResolutionStatus)
  3895. * [`Audits.HeavyAdReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdReason)
  3896. * [`Audits.HeavyAdIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-HeavyAdIssueDetails)
  3897. #### `Audits`: modified types
  3898. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `HeavyAdIssue` _added_.
  3899. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `heavyAdIssueDetails` _added_.
  3900. ## Roll protocol to r780876
  3901. ###### _2020-06-22 11:16:04_ | Diff: [2488f11...1ec1519](https://github.com/ChromeDevTools/devtools-protocol/compare/2488f11...1ec1519)
  3902. #### `Input`: modified command
  3903. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The parameters's `commands` _added_.
  3904. ## Roll protocol to r780326
  3905. ###### _2020-06-19 09:16:14_ | Diff: [c99e7da...2488f11](https://github.com/ChromeDevTools/devtools-protocol/compare/c99e7da...2488f11)
  3906. #### `Runtime`: modified command
  3907. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `allowUnsafeEvalBlockedByCSP` _added_.
  3908. ## Roll protocol to r779350
  3909. ###### _2020-06-17 09:16:03_ | Diff: [447fb97...c99e7da](https://github.com/ChromeDevTools/devtools-protocol/compare/447fb97...c99e7da)
  3910. #### `Overlay`: modified command
  3911. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The `colorFormat` in the parameters had `description` _updated_. The parameters's `showAccessibilityInfo` _added_.
  3912. #### `Overlay`: modified type
  3913. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The `contentColor` in the properties had `$ref` _removed_. The `showExtensionLines` in the properties had `name` _updated_. The `showExtensionLines` in the properties had `description` _updated_. The `contentColor` in the properties had `name` _updated_. The `contentColor` in the properties had `description` _updated_. The `paddingColor` in the properties had `name` _updated_. The `paddingColor` in the properties had `description` _updated_. The `borderColor` in the properties had `name` _updated_. The `borderColor` in the properties had `description` _updated_. The `marginColor` in the properties had `name` _updated_. The `marginColor` in the properties had `description` _updated_. The `eventTargetColor` in the properties had `name` _updated_. The `eventTargetColor` in the properties had `description` _updated_. The `shapeColor` in the properties had `name` _updated_. The `shapeColor` in the properties had `description` _updated_. The `shapeMarginColor` in the properties had `name` _updated_. The `shapeMarginColor` in the properties had `description` _updated_. The `cssGridColor` in the properties had `name` _updated_. The `cssGridColor` in the properties had `description` _updated_. The `colorFormat` in the properties had `name` _updated_. The `colorFormat` in the properties had `description` _updated_. The `colorFormat` in the properties had `$ref` _updated_. The `gridHighlightConfig` in the properties had `name` _updated_. The `gridHighlightConfig` in the properties had `description` _updated_. The `gridHighlightConfig` in the properties had `$ref` _updated_. The properties's `type` _added_. The properties's `gridHighlightConfig` _added_.
  3914. ## Roll protocol to r778922
  3915. ###### _2020-06-16 12:16:05_ | Diff: [2049521...447fb97](https://github.com/ChromeDevTools/devtools-protocol/compare/2049521...447fb97)
  3916. #### `Overlay`: modified command
  3917. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The parameters's `showAccessibilityInfo` _removed_. The `colorFormat` in the parameters had `description` _updated_.
  3918. #### `Overlay`: modified type
  3919. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `gridHighlightConfig` _removed_. The `showExtensionLines` in the properties had `type` _removed_. The `showAccessibilityInfo` in the properties had `name` _updated_. The `showAccessibilityInfo` in the properties had `description` _updated_. The `showExtensionLines` in the properties had `name` _updated_. The `showExtensionLines` in the properties had `description` _updated_. The `contentColor` in the properties had `name` _updated_. The `contentColor` in the properties had `description` _updated_. The `paddingColor` in the properties had `name` _updated_. The `paddingColor` in the properties had `description` _updated_. The `borderColor` in the properties had `name` _updated_. The `borderColor` in the properties had `description` _updated_. The `marginColor` in the properties had `name` _updated_. The `marginColor` in the properties had `description` _updated_. The `eventTargetColor` in the properties had `name` _updated_. The `eventTargetColor` in the properties had `description` _updated_. The `shapeColor` in the properties had `name` _updated_. The `shapeColor` in the properties had `description` _updated_. The `shapeMarginColor` in the properties had `name` _updated_. The `shapeMarginColor` in the properties had `description` _updated_. The `cssGridColor` in the properties had `name` _updated_. The `cssGridColor` in the properties had `description` _updated_. The `cssGridColor` in the properties had `$ref` _updated_. The `colorFormat` in the properties had `name` _updated_. The `colorFormat` in the properties had `description` _updated_. The `colorFormat` in the properties had `$ref` _updated_. The properties's `$ref` _added_.
  3920. ## Roll protocol to r778805
  3921. ###### _2020-06-16 08:16:09_ | Diff: [5894100...2049521](https://github.com/ChromeDevTools/devtools-protocol/compare/5894100...2049521)
  3922. #### `Overlay`: modified command
  3923. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The `colorFormat` in the parameters had `description` _updated_. The parameters's `showAccessibilityInfo` _added_.
  3924. #### `Overlay`: modified type
  3925. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The `contentColor` in the properties had `$ref` _removed_. The `showExtensionLines` in the properties had `name` _updated_. The `showExtensionLines` in the properties had `description` _updated_. The `contentColor` in the properties had `name` _updated_. The `contentColor` in the properties had `description` _updated_. The `paddingColor` in the properties had `name` _updated_. The `paddingColor` in the properties had `description` _updated_. The `borderColor` in the properties had `name` _updated_. The `borderColor` in the properties had `description` _updated_. The `marginColor` in the properties had `name` _updated_. The `marginColor` in the properties had `description` _updated_. The `eventTargetColor` in the properties had `name` _updated_. The `eventTargetColor` in the properties had `description` _updated_. The `shapeColor` in the properties had `name` _updated_. The `shapeColor` in the properties had `description` _updated_. The `shapeMarginColor` in the properties had `name` _updated_. The `shapeMarginColor` in the properties had `description` _updated_. The `cssGridColor` in the properties had `name` _updated_. The `cssGridColor` in the properties had `description` _updated_. The `colorFormat` in the properties had `name` _updated_. The `colorFormat` in the properties had `description` _updated_. The `colorFormat` in the properties had `$ref` _updated_. The `gridHighlightConfig` in the properties had `name` _updated_. The `gridHighlightConfig` in the properties had `description` _updated_. The `gridHighlightConfig` in the properties had `$ref` _updated_. The properties's `type` _added_. The properties's `gridHighlightConfig` _added_.
  3926. ## Roll protocol to r778734
  3927. ###### _2020-06-16 04:16:09_ | Diff: [65bf0bb...5894100](https://github.com/ChromeDevTools/devtools-protocol/compare/65bf0bb...5894100)
  3928. #### `Overlay`: modified type
  3929. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderColor` in the properties had `$ref` _removed_. The `gridBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `gridBorderColor` in the properties had `name` _updated_. The `gridBorderColor` in the properties had `description` _updated_. The `cellBorderColor` in the properties had `name` _updated_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `columnHatchColor` _added_.
  3930. ## Roll protocol to r777489
  3931. ###### _2020-06-11 14:16:12_ | Diff: [6e822e3...65bf0bb](https://github.com/ChromeDevTools/devtools-protocol/compare/6e822e3...65bf0bb)
  3932. #### `Overlay`: modified type
  3933. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig) - The `gridBorderColor` in the properties had `$ref` _removed_. The `gridBorderDash` in the properties had `type` _removed_. The `rowGapColor` in the properties had `$ref` _removed_. The `gridBorderColor` in the properties had `name` _updated_. The `gridBorderColor` in the properties had `description` _updated_. The `cellBorderColor` in the properties had `name` _updated_. The `cellBorderColor` in the properties had `description` _updated_. The `gridBorderDash` in the properties had `name` _updated_. The `gridBorderDash` in the properties had `description` _updated_. The `cellBorderDash` in the properties had `name` _updated_. The `cellBorderDash` in the properties had `description` _updated_. The `rowGapColor` in the properties had `name` _updated_. The `rowGapColor` in the properties had `description` _updated_. The `rowHatchColor` in the properties had `name` _updated_. The `rowHatchColor` in the properties had `description` _updated_. The `columnGapColor` in the properties had `name` _updated_. The `columnGapColor` in the properties had `description` _updated_. The `columnHatchColor` in the properties had `name` _updated_. The `columnHatchColor` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `columnHatchColor` _added_.
  3934. ## Roll protocol to r776922
  3935. ###### _2020-06-10 06:16:14_ | Diff: [c5f2d31...6e822e3](https://github.com/ChromeDevTools/devtools-protocol/compare/c5f2d31...6e822e3)
  3936. #### `Runtime`: modified type
  3937. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `subtype` in the properties had `anyref` _updated_.
  3938. ## Roll protocol to r776422
  3939. ###### _2020-06-09 00:16:08_ | Diff: [bca028b...c5f2d31](https://github.com/ChromeDevTools/devtools-protocol/compare/bca028b...c5f2d31)
  3940. #### `CSS`: modified type
  3941. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The `startLine` in the properties had `name` _updated_. The `startLine` in the properties had `description` _updated_. The `startLine` in the properties had `type` _updated_. The `startColumn` in the properties had `name` _updated_. The `startColumn` in the properties had `description` _updated_. The `length` in the properties had `name` _updated_. The `length` in the properties had `description` _updated_. The `endLine` in the properties had `name` _updated_. The `endLine` in the properties had `description` _updated_. The `endColumn` in the properties had `name` _updated_. The `endColumn` in the properties had `description` _updated_. The properties's `endColumn` _added_.
  3942. ## Roll protocol to r774686
  3943. ###### _2020-06-03 10:15:57_ | Diff: [3386102...8d9fa2d](https://github.com/ChromeDevTools/devtools-protocol/compare/3386102...8d9fa2d)
  3944. #### `Target`: modified command
  3945. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - The parameters's `proxyServer` _added_. The parameters's `proxyBypassList` _added_.
  3946. ## Roll protocol to r772852
  3947. ###### _2020-05-28 13:16:11_ | Diff: [69d3d03...3386102](https://github.com/ChromeDevTools/devtools-protocol/compare/69d3d03...3386102)
  3948. #### `Network`: new type
  3949. * [`Network.ServiceWorkerResponseSource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ServiceWorkerResponseSource)
  3950. #### `Network`: modified type
  3951. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `protocol` in the properties had `type` _removed_. The `securityDetails` in the properties had `$ref` _removed_. The `protocol` in the properties had `name` _updated_. The `protocol` in the properties had `description` _updated_. The `securityState` in the properties had `name` _updated_. The `securityState` in the properties had `description` _updated_. The `securityState` in the properties had `$ref` _updated_. The `securityDetails` in the properties had `name` _updated_. The `securityDetails` in the properties had `description` _updated_. The properties's `$ref` _added_. The properties's `optional` _added_. The properties's `type` _added_. The properties's `protocol` _added_. The properties's `securityState` _added_. The properties's `securityDetails` _added_.
  3952. ## Roll protocol to r770484
  3953. ###### _2020-05-20 00:16:02_ | Diff: [2cb3356...69d3d03](https://github.com/ChromeDevTools/devtools-protocol/compare/2cb3356...69d3d03)
  3954. #### `Network`: modified type
  3955. * [`Network.ResourceTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceTiming) - The `pushStart` in the properties had `experimental` _removed_. The `pushEnd` in the properties had `experimental` _removed_. The `sendStart` in the properties had `name` _updated_. The `sendStart` in the properties had `description` _updated_. The `sendEnd` in the properties had `name` _updated_. The `sendEnd` in the properties had `description` _updated_. The `pushStart` in the properties had `name` _updated_. The `pushStart` in the properties had `description` _updated_. The `pushEnd` in the properties had `name` _updated_. The `pushEnd` in the properties had `description` _updated_. The `receiveHeadersEnd` in the properties had `name` _updated_. The `receiveHeadersEnd` in the properties had `description` _updated_. The properties's `experimental` _added_ (3 times). The properties's `pushEnd` _added_. The properties's `receiveHeadersEnd` _added_.
  3956. ## Roll protocol to r770080
  3957. ###### _2020-05-19 05:16:05_ | Diff: [c669e10...2cb3356](https://github.com/ChromeDevTools/devtools-protocol/compare/c669e10...2cb3356)
  3958. #### `Audits`: new types
  3959. * [`Audits.BlockedByResponseReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseReason)
  3960. * [`Audits.BlockedByResponseIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-BlockedByResponseIssueDetails)
  3961. #### `Audits`: modified types
  3962. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `BlockedByResponseIssue` _added_.
  3963. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `blockedByResponseIssueDetails` _added_.
  3964. ## Roll protocol to r767361
  3965. ###### _2020-05-11 10:16:19_ | Diff: [76c859e...0a94929](https://github.com/ChromeDevTools/devtools-protocol/compare/76c859e...0a94929)
  3966. #### `Audits`: modified type
  3967. * [`Audits.SameSiteCookieWarningReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieWarningReason) - The enum's `WarnSameSiteCrossSchemeInsecureUrlStrict` _removed_. The enum's `WarnSameSiteCrossSchemeSecureUrlMethodUnsafe` _updated_. The enum's `WarnSameSiteCrossSchemeSecureUrlLax` _updated_. The enum's `WarnSameSiteCrossSchemeSecureUrlStrict` _updated_. The enum's `WarnSameSiteCrossSchemeInsecureUrlMethodUnsafe` _updated_. The enum's `WarnSameSiteCrossSchemeInsecureUrlLax` _updated_.
  3968. ## Roll protocol to r767035
  3969. ###### _2020-05-08 16:17:20_ | Diff: [08a3c82...76c859e](https://github.com/ChromeDevTools/devtools-protocol/compare/08a3c82...76c859e)
  3970. #### `Page`: modified event
  3971. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin) - The `filename` in the parameters had `name` _updated_. The `filename` in the parameters had `description` _updated_.
  3972. ## Roll protocol to r766630
  3973. ###### _2020-05-07 16:16:09_ | Diff: [0e007a5...08a3c82](https://github.com/ChromeDevTools/devtools-protocol/compare/0e007a5...08a3c82)
  3974. #### `Page`: modified event
  3975. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin) - The parameters's `filename` _added_.
  3976. ## Roll protocol to r766603
  3977. ###### _2020-05-07 15:16:08_ | Diff: [795f478...0e007a5](https://github.com/ChromeDevTools/devtools-protocol/compare/795f478...0e007a5)
  3978. #### `Overlay`: new type
  3979. * [`Overlay.GridHighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-GridHighlightConfig)
  3980. #### `Overlay`: modified type
  3981. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `gridHighlightConfig` _added_.
  3982. ## Roll protocol to r766377
  3983. ###### _2020-05-07 05:15:58_ | Diff: [4577b7f...795f478](https://github.com/ChromeDevTools/devtools-protocol/compare/4577b7f...795f478)
  3984. #### `Network`: modified event
  3985. * [`Network.requestWillBeSentExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSentExtraInfo) - The `blockedCookies` in the parameters had `name` _updated_. The `blockedCookies` in the parameters had `description` _updated_.
  3986. ## Roll protocol to r766017
  3987. ###### _2020-05-06 09:17:41_ | Diff: [90a2227...4577b7f](https://github.com/ChromeDevTools/devtools-protocol/compare/90a2227...4577b7f)
  3988. #### `Debugger`: new command
  3989. * [`Debugger.executeWasmEvaluator`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-executeWasmEvaluator)
  3990. #### `Debugger`: modified event
  3991. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The parameters's `debugSymbols` _added_.
  3992. #### `Debugger`: new type
  3993. * [`Debugger.DebugSymbols`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-DebugSymbols)
  3994. ## Roll protocol to r765803
  3995. ###### _2020-05-05 16:16:02_ | Diff: [6b310c4...90a2227](https://github.com/ChromeDevTools/devtools-protocol/compare/6b310c4...90a2227)
  3996. #### `Emulation`: modified command
  3997. * [`Emulation.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setUserAgentOverride) - The parameters's `userAgentMetadata` _added_.
  3998. #### `Emulation`: new types
  3999. * [`Emulation.UserAgentBrandVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentBrandVersion)
  4000. * [`Emulation.UserAgentMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-UserAgentMetadata)
  4001. #### `Network`: modified command
  4002. * [`Network.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setUserAgentOverride) - The parameters's `userAgentMetadata` _added_.
  4003. ## Roll protocol to r765004
  4004. ###### _2020-05-04 01:16:14_ | Diff: [61f90ac...6b310c4](https://github.com/ChromeDevTools/devtools-protocol/compare/61f90ac...6b310c4)
  4005. #### `Overlay`: modified command
  4006. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The parameters's `colorFormat` _added_.
  4007. #### `Overlay`: new type
  4008. * [`Overlay.ColorFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-ColorFormat)
  4009. #### `Overlay`: modified type
  4010. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `colorFormat` _added_.
  4011. ## Roll protocol to r764791
  4012. ###### _2020-05-01 14:16:14_ | Diff: [fb81f45...61f90ac](https://github.com/ChromeDevTools/devtools-protocol/compare/fb81f45...61f90ac)
  4013. #### `Overlay`: new command
  4014. * [`Overlay.setShowHinge`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHinge)
  4015. #### `Overlay`: new type
  4016. * [`Overlay.HingeConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HingeConfig)
  4017. ## Roll protocol to r762508
  4018. ###### _2020-04-24 14:16:30_ | Diff: [37db537...fb81f45](https://github.com/ChromeDevTools/devtools-protocol/compare/37db537...fb81f45)
  4019. #### `Page`: modified event
  4020. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation) - The parameters's `disposition` _added_.
  4021. #### `Page`: new type
  4022. * [`Page.ClientNavigationDisposition`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationDisposition)
  4023. ## Roll protocol to r762397
  4024. ###### _2020-04-24 10:17:12_ | Diff: [a7f028b...37db537](https://github.com/ChromeDevTools/devtools-protocol/compare/a7f028b...37db537)
  4025. #### `Media`: new events
  4026. * [`Media.playerMessagesLogged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerMessagesLogged)
  4027. * [`Media.playerErrorsRaised`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerErrorsRaised)
  4028. #### `Media`: new types
  4029. * [`Media.PlayerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerMessage)
  4030. * [`Media.PlayerError`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerError)
  4031. #### `Media`: removed type
  4032. * [`Media.PlayerEventType`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEventType)
  4033. #### `Media`: modified types
  4034. * [`Media.PlayerProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerProperty) - The `value` in the properties had `optional` _removed_. `description` updated.
  4035. * [`Media.PlayerEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEvent) - The properties's `name` _removed_. The properties's `value` _removed_. The `timestamp` in the properties had `description` _removed_. The `timestamp` in the properties had `$ref` _removed_. The `type` in the properties had `name` _updated_. The `type` in the properties had `$ref` _updated_. The `timestamp` in the properties had `name` _updated_. `description` added. The properties's `type` _added_.
  4036. ## Roll protocol to r761827
  4037. ###### _2020-04-23 00:16:09_ | Diff: [65061a8...a7f028b](https://github.com/ChromeDevTools/devtools-protocol/compare/65061a8...a7f028b)
  4038. #### `Audits`: new types
  4039. * [`Audits.AffectedFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedFrame)
  4040. * [`Audits.MixedContentResolutionStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResolutionStatus)
  4041. * [`Audits.MixedContentResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentResourceType)
  4042. * [`Audits.MixedContentIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-MixedContentIssueDetails)
  4043. #### `Audits`: modified types
  4044. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - The enum's `MixedContentIssue` _added_.
  4045. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - The properties's `mixedContentIssueDetails` _added_.
  4046. ## Roll protocol to r760817
  4047. ###### _2020-04-20 21:16:08_ | Diff: [f973935...65061a8](https://github.com/ChromeDevTools/devtools-protocol/compare/f973935...65061a8)
  4048. #### `Runtime`: modified type
  4049. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `1` in the properties had `anyref` _added_.
  4050. ## Roll protocol to r758979
  4051. ###### _2020-04-14 13:16:08_ | Diff: [fc07ba2...4b02082](https://github.com/ChromeDevTools/devtools-protocol/compare/fc07ba2...4b02082)
  4052. #### `Browser`: modified commands
  4053. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission) - The `origin` in the parameters had `optional` _removed_. The `origin` in the parameters had `type` _removed_. The `setting` in the parameters had `$ref` _removed_. The `origin` in the parameters had `name` _updated_. The `origin` in the parameters had `description` _updated_. The `permission` in the parameters had `name` _updated_. The `permission` in the parameters had `description` _updated_. The `permission` in the parameters had `$ref` _updated_. The `setting` in the parameters had `name` _updated_. The `setting` in the parameters had `description` _updated_. The parameters's `$ref` _added_. The parameters's `optional` _added_. The parameters's `type` _added_.
  4054. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions) - The `origin` in the parameters had `description` _removed_. The `origin` in the parameters had `optional` _removed_. The `permissions` in the parameters had `items` _removed_. The `origin` in the parameters had `name` _updated_. The `origin` in the parameters had `type` _updated_. The `permissions` in the parameters had `name` _updated_. The `permissions` in the parameters had `type` _updated_. The parameters's `items` _added_. The parameters's `description` _added_. The parameters's `optional` _added_.
  4055. ## Merge pull request #209 from ChromeDevTools/bug-report-template
  4056. ###### _2020-04-09 12:55:10 +0200_ | Diff: [d0bcd8d...b53777c](https://github.com/ChromeDevTools/devtools-protocol/compare/d0bcd8d...b53777c)
  4057. #### `Audits`: new types
  4058. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  4059. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  4060. #### `Audits`: removed type
  4061. * [`Audits.AffectedResources`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedResources)
  4062. #### `Audits`: modified types
  4063. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie) - The properties's `siteForCookies` _removed_.
  4064. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails) - The `cookieWarningReasons` in the properties had `type` _removed_. The `cookieWarningReasons` in the properties had `items` _removed_. The `cookieWarningReasons` in the properties had `name` _updated_. The `cookieExclusionReasons` in the properties had `name` _updated_. The `cookieExclusionReasons` in the properties had `$ref` _updated_. The properties's `$ref` _added_. The properties's `cookieExclusionReasons` _added_. The properties's `operation` _added_. The properties's `siteForCookies` _added_. The properties's `cookieUrl` _added_. The properties's `request` _added_.
  4065. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - `description` updated.
  4066. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - `description` updated.
  4067. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue) - The properties's `resources` _removed_.
  4068. ## Update bug report guidance to point to CRBug
  4069. ###### _2020-04-09 11:51:30 +0100_ | Diff: [7f53fbc...d0bcd8d](https://github.com/ChromeDevTools/devtools-protocol/compare/7f53fbc...d0bcd8d)
  4070. #### `Audits`: new type
  4071. * [`Audits.AffectedResources`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedResources)
  4072. #### `Audits`: removed types
  4073. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  4074. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  4075. #### `Audits`: modified types
  4076. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie) - The properties's `siteForCookies` _added_.
  4077. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails) - The properties's `cookieExclusionReasons` _removed_. The properties's `operation` _removed_. The properties's `siteForCookies` _removed_. The properties's `cookieUrl` _removed_. The properties's `request` _removed_. The `cookie` in the properties had `$ref` _removed_. The `cookie` in the properties had `name` _updated_. The `cookieWarningReasons` in the properties had `name` _updated_. The `cookieWarningReasons` in the properties had `$ref` _updated_. The properties's `type` _added_. The properties's `items` _added_.
  4078. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - `description` updated.
  4079. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - `description` updated.
  4080. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue) - The properties's `resources` _added_.
  4081. ## Roll protocol to r757450
  4082. ###### _2020-04-08 09:16:24_ | Diff: [93daff4...7f53fbc](https://github.com/ChromeDevTools/devtools-protocol/compare/93daff4...7f53fbc)
  4083. #### `Audits`: new types
  4084. * [`Audits.AffectedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedRequest)
  4085. * [`Audits.SameSiteCookieOperation`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieOperation)
  4086. #### `Audits`: removed type
  4087. * [`Audits.AffectedResources`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedResources)
  4088. #### `Audits`: modified types
  4089. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie) - The properties's `siteForCookies` _removed_.
  4090. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails) - The `cookieWarningReasons` in the properties had `type` _removed_. The `cookieWarningReasons` in the properties had `items` _removed_. The `cookieWarningReasons` in the properties had `name` _updated_. The `cookieExclusionReasons` in the properties had `name` _updated_. The `cookieExclusionReasons` in the properties had `$ref` _updated_. The properties's `$ref` _added_. The properties's `cookieExclusionReasons` _added_. The properties's `operation` _added_. The properties's `siteForCookies` _added_. The properties's `cookieUrl` _added_. The properties's `request` _added_.
  4091. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode) - `description` updated.
  4092. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails) - `description` updated.
  4093. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue) - The properties's `resources` _removed_.
  4094. ## Roll protocol to r754670
  4095. ###### _2020-03-30 15:16:08_ | Diff: [3a31fb9...93daff4](https://github.com/ChromeDevTools/devtools-protocol/compare/3a31fb9...93daff4)
  4096. #### `Browser`: new command
  4097. * [`Browser.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDownloadBehavior)
  4098. #### `Page`: modified command
  4099. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior) - `deprecated` added.
  4100. #### `Page`: new event
  4101. * [`Page.downloadProgress`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadProgress)
  4102. #### `Page`: modified event
  4103. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin) - The `url` in the parameters had `name` _updated_. The `url` in the parameters had `description` _updated_. The parameters's `url` _added_.
  4104. ## Roll protocol to r753577
  4105. ###### _2020-03-26 04:16:32_ | Diff: [54331b7...3a31fb9](https://github.com/ChromeDevTools/devtools-protocol/compare/54331b7...3a31fb9)
  4106. #### `Debugger`: modified type
  4107. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope) - The `0` in the properties had `wasm-expression-stack` _added_.
  4108. ## Roll protocol to r753371
  4109. ###### _2020-03-25 14:16:15_ | Diff: [fb19e63...54331b7](https://github.com/ChromeDevTools/devtools-protocol/compare/fb19e63...54331b7)
  4110. #### `Runtime`: modified type
  4111. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `subtype` in the properties had `description` _updated_. The `0` in the properties had `wasm` _added_. The `1` in the properties had `i32` _added_. The `1` in the properties had `i64` _added_. The `1` in the properties had `f32` _added_. The `1` in the properties had `f64` _added_. The `1` in the properties had `v128` _added_.
  4112. ## Roll protocol to r753288
  4113. ###### _2020-03-25 11:16:18_ | Diff: [0d94fba...fb19e63](https://github.com/ChromeDevTools/devtools-protocol/compare/0d94fba...fb19e63)
  4114. #### `Fetch`: modified command
  4115. * [`Fetch.continueRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest) - The `headers` in the parameters had `description` _updated_.
  4116. ## Roll protocol to r752415
  4117. ###### _2020-03-23 05:16:00_ | Diff: [4b21417...0d94fba](https://github.com/ChromeDevTools/devtools-protocol/compare/4b21417...0d94fba)
  4118. #### `Audits`: modified event
  4119. * [`Audits.issueAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#event-issueAdded) - The `issue` in the parameters had `$ref` _updated_.
  4120. #### `Audits`: new types
  4121. * [`Audits.AffectedCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedCookie)
  4122. * [`Audits.SameSiteCookieExclusionReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieExclusionReason)
  4123. * [`Audits.SameSiteCookieWarningReason`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieWarningReason)
  4124. * [`Audits.SameSiteCookieIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-SameSiteCookieIssueDetails)
  4125. * [`Audits.AffectedResources`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-AffectedResources)
  4126. * [`Audits.InspectorIssueCode`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueCode)
  4127. * [`Audits.InspectorIssueDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssueDetails)
  4128. * [`Audits.InspectorIssue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-InspectorIssue)
  4129. #### `Audits`: removed type
  4130. * [`Audits.Issue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-Issue)
  4131. ## Roll protocol to r751783
  4132. ###### _2020-03-19 13:16:05_ | Diff: [702b3cd...f8b3800](https://github.com/ChromeDevTools/devtools-protocol/compare/702b3cd...f8b3800)
  4133. #### `Emulation`: modified command
  4134. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency) - The `type` in the parameters had `protanomaly` _removed_. The `type` in the parameters had `protanopia` _removed_. The `type` in the parameters had `tritanomaly` _removed_. The `type` in the parameters had `tritanopia` _removed_. The `type` in the parameters had `achromatomaly` _updated_. The `type` in the parameters had `achromatopsia` _updated_. The `type` in the parameters had `blurredVision` _updated_. The `type` in the parameters had `deuteranomaly` _updated_. The `type` in the parameters had `deuteranopia` _updated_.
  4135. ## Roll protocol to r751145
  4136. ###### _2020-03-17 15:16:22_ | Diff: [41bfd0c...702b3cd](https://github.com/ChromeDevTools/devtools-protocol/compare/41bfd0c...702b3cd)
  4137. #### `Debugger`: modified events
  4138. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse) - The parameters's `codeOffset` _added_. The parameters's `scriptLanguage` _added_.
  4139. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The parameters's `codeOffset` _added_. The parameters's `scriptLanguage` _added_.
  4140. #### `Debugger`: new type
  4141. * [`Debugger.ScriptLanguage`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-ScriptLanguage)
  4142. ## Roll protocol to r750324
  4143. ###### _2020-03-13 15:17:35_ | Diff: [2ad8c1b...41bfd0c](https://github.com/ChromeDevTools/devtools-protocol/compare/2ad8c1b...41bfd0c)
  4144. #### `Browser`: modified commands
  4145. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission) - The `origin` in the parameters had `description` _updated_. The parameters's `optional` _added_.
  4146. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions) - The parameters's `description` _added_. The parameters's `optional` _added_.
  4147. ## Roll protocol to r747773
  4148. ###### _2020-03-06 10:15:59 -0800_ | Diff: [be5771f...b79c621](https://github.com/ChromeDevTools/devtools-protocol/compare/be5771f...b79c621)
  4149. #### `Emulation`: new command
  4150. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  4151. ## Roll protocol to r746878
  4152. ###### _2020-03-04 11:15:58 -0800_ | Diff: [951d841...be5771f](https://github.com/ChromeDevTools/devtools-protocol/compare/951d841...be5771f)
  4153. #### `Emulation`: removed command
  4154. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  4155. ## Roll protocol to r746715
  4156. ###### _2020-03-04 02:15:58 -0800_ | Diff: [1226014...951d841](https://github.com/ChromeDevTools/devtools-protocol/compare/1226014...951d841)
  4157. #### `Emulation`: new command
  4158. * [`Emulation.setEmulatedVisionDeficiency`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedVisionDeficiency)
  4159. ## Roll protocol to r746007
  4160. ###### _2020-03-02 10:15:56 -0800_ | Diff: [d446869...1226014](https://github.com/ChromeDevTools/devtools-protocol/compare/d446869...1226014)
  4161. #### `Performance`: modified commands
  4162. * [`Performance.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-enable)
  4163. * [`Performance.setTimeDomain`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-setTimeDomain) - `deprecated` added.
  4164. ## Roll protocol to r745916
  4165. ###### _2020-03-02 05:15:52 -0800_ | Diff: [2251a98...d446869](https://github.com/ChromeDevTools/devtools-protocol/compare/2251a98...d446869)
  4166. #### `Network`: modified type
  4167. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason) - The enum's `coep-frame-resource-needs-coep-header` _added_. The enum's `coop-sandboxed-iframe-cannot-navigate-to-coop-page` _added_. The enum's `corp-not-same-origin` _added_. The enum's `corp-not-same-origin-after-defaulted-to-same-origin-by-coep` _added_. The enum's `corp-not-same-site` _added_.
  4168. ## Roll protocol to r744719
  4169. ###### _2020-02-26 10:16:06 -0800_ | Diff: [a54f251...ecd17e2](https://github.com/ChromeDevTools/devtools-protocol/compare/a54f251...ecd17e2)
  4170. #### `Runtime`: modified command
  4171. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `replMode` in the parameters had `description` _updated_.
  4172. ## Roll protocol to r743773
  4173. ###### _2020-02-21 19:15:58 -0800_ | Diff: [34b27ba...a54f251](https://github.com/ChromeDevTools/devtools-protocol/compare/34b27ba...a54f251)
  4174. #### `Page`: modified command
  4175. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The parameters's `referrerPolicy` _added_.
  4176. #### `Page`: new type
  4177. * [`Page.ReferrerPolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ReferrerPolicy)
  4178. ## Roll protocol to r741364
  4179. ###### _2020-02-13 22:15:58 -0800_ | Diff: [7b97e49...34b27ba](https://github.com/ChromeDevTools/devtools-protocol/compare/7b97e49...34b27ba)
  4180. #### `Target`: modified command
  4181. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - The parameters's `windowOpen` _removed_.
  4182. ## Roll protocol to r740866
  4183. ###### _2020-02-12 15:15:59 -0800_ | Diff: [23be539...7b97e49](https://github.com/ChromeDevTools/devtools-protocol/compare/23be539...7b97e49)
  4184. #### `Emulation`: new command
  4185. * [`Emulation.setLocaleOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setLocaleOverride)
  4186. ## Roll protocol to r740745
  4187. ###### _2020-02-12 10:16:48 -0800_ | Diff: [2369f6b...23be539](https://github.com/ChromeDevTools/devtools-protocol/compare/2369f6b...23be539)
  4188. #### `Profiler`: modified command
  4189. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage) - The parameters's `allowTriggeredUpdates` _added_.
  4190. ## Roll protocol to r740289
  4191. ###### _2020-02-11 06:17:02 -0800_ | Diff: [395db8b...2369f6b](https://github.com/ChromeDevTools/devtools-protocol/compare/395db8b...2369f6b)
  4192. #### `DOM`: new command
  4193. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  4194. ## Roll protocol to r739602
  4195. ###### _2020-02-07 15:16:33 -0800_ | Diff: [1dfb8a8...00269c7](https://github.com/ChromeDevTools/devtools-protocol/compare/1dfb8a8...00269c7)
  4196. #### `DOM`: removed command
  4197. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  4198. ## Roll protocol to r739234
  4199. ###### _2020-02-06 18:15:56 -0800_ | Diff: [b442932...1dfb8a8](https://github.com/ChromeDevTools/devtools-protocol/compare/b442932...1dfb8a8)
  4200. #### `Target`: modified command
  4201. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext)
  4202. ## Roll protocol to r739180
  4203. ###### _2020-02-06 16:15:54 -0800_ | Diff: [13d0d9d...b442932](https://github.com/ChromeDevTools/devtools-protocol/compare/13d0d9d...b442932)
  4204. #### `Page`: modified command
  4205. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors) - The return value's `installabilityErrors` _removed_. The `errors` in the return value had `deprecated` _removed_. The `errors` in the return value had `type` _removed_. The `errors` in the return value had `name` _updated_. The `0` in the return value had `$ref` _added_.
  4206. ## Roll protocol to r738996
  4207. ###### _2020-02-06 09:16:41 -0800_ | Diff: [44116de...4675295](https://github.com/ChromeDevTools/devtools-protocol/compare/44116de...4675295)
  4208. #### `DOM`: new command
  4209. * [`DOM.scrollIntoViewIfNeeded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-scrollIntoViewIfNeeded)
  4210. ## Roll protocol to r738234
  4211. ###### _2020-02-04 10:16:09 -0800_ | Diff: [28602ab...c48e06f](https://github.com/ChromeDevTools/devtools-protocol/compare/28602ab...c48e06f)
  4212. #### `Debugger`: modified command
  4213. * [`Debugger.resume`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-resume)
  4214. ## Roll protocol to r737833
  4215. ###### _2020-02-03 10:16:52 -0800_ | Diff: [807de1a...6d0f4a7](https://github.com/ChromeDevTools/devtools-protocol/compare/807de1a...6d0f4a7)
  4216. #### `Audits`: new commands
  4217. * [`Audits.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-disable)
  4218. * [`Audits.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-enable)
  4219. #### `Audits`: new event
  4220. * [`Audits.issueAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#event-issueAdded)
  4221. #### `Audits`: new type
  4222. * [`Audits.Issue`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#type-Issue)
  4223. ## Roll protocol to r736603
  4224. ###### _2020-01-29 15:15:58 -0800_ | Diff: [b9fb38a...807de1a](https://github.com/ChromeDevTools/devtools-protocol/compare/b9fb38a...807de1a)
  4225. #### `LayerTree`: modified command
  4226. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons) - The return value's `deprecated` _added_. The return value's `compositingReasonIds` _added_.
  4227. ## Roll protocol to r734741
  4228. ###### _2020-01-23 16:16:00 -0800_ | Diff: [b28dfe5...48ffb48](https://github.com/ChromeDevTools/devtools-protocol/compare/b28dfe5...48ffb48)
  4229. #### `Media`: modified type
  4230. * [`Media.PlayerEventType`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEventType) - The enum's `playbackEvent` _updated_. The enum's `systemEvent` _updated_.
  4231. ## Roll protocol to r734342
  4232. ###### _2020-01-22 20:16:01 -0800_ | Diff: [887b29e...36518ec](https://github.com/ChromeDevTools/devtools-protocol/compare/887b29e...36518ec)
  4233. #### `Page`: modified command
  4234. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors) - The return value's `deprecated` _added_. The return value's `installabilityErrors` _added_.
  4235. #### `Page`: new types
  4236. * [`Page.InstallabilityErrorArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityErrorArgument)
  4237. * [`Page.InstallabilityError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-InstallabilityError)
  4238. ## Roll protocol to r733814
  4239. ###### _2020-01-21 16:16:31 -0800_ | Diff: [b801714...34770ad](https://github.com/ChromeDevTools/devtools-protocol/compare/b801714...34770ad)
  4240. #### `Profiler`: new event
  4241. * [`Profiler.preciseCoverageDeltaUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-preciseCoverageDeltaUpdate)
  4242. ## Roll protocol to r733150
  4243. ###### _2020-01-17 23:16:18 -0800_ | Diff: [e147044...b801714](https://github.com/ChromeDevTools/devtools-protocol/compare/e147044...b801714)
  4244. #### `Page`: modified event
  4245. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The `reason` in the parameters had `type` _removed_. The `reason` in the parameters had `enum` _removed_. The parameters's `$ref` _added_.
  4246. #### `Page`: modified type
  4247. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason) - The enum's `anchorClick` _added_.
  4248. ## Roll protocol to r731173
  4249. ###### _2020-01-14 01:15:59 -0800_ | Diff: [a88e2e8...a8ab994](https://github.com/ChromeDevTools/devtools-protocol/compare/a88e2e8...a8ab994)
  4250. #### `CSS`: modified command
  4251. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta) - The return value's `timestamp` _added_.
  4252. ## Roll protocol to r730699
  4253. ###### _2020-01-13 11:16:22 -0800_ | Diff: [b8266f8...a88e2e8](https://github.com/ChromeDevTools/devtools-protocol/compare/b8266f8...a88e2e8)
  4254. #### `Profiler`: modified commands
  4255. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage) - The `timestamp` in the return value had `description` _updated_.
  4256. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - The `timestamp` in the return value had `description` _updated_.
  4257. ## Roll protocol to r730280
  4258. ###### _2020-01-10 12:16:05 -0800_ | Diff: [e4ef206...b8266f8](https://github.com/ChromeDevTools/devtools-protocol/compare/e4ef206...b8266f8)
  4259. #### `Profiler`: modified commands
  4260. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage)
  4261. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - The return value's `timestamp` _added_.
  4262. ## Roll protocol to r726364
  4263. ###### _2019-12-19 06:16:08 -0800_ | Diff: [1d614ea...db57660](https://github.com/ChromeDevTools/devtools-protocol/compare/1d614ea...db57660)
  4264. #### `HeapProfiler`: modified commands
  4265. * [`HeapProfiler.stopTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopTrackingHeapObjects) - The parameters's `treatGlobalObjectsAsRoots` _added_.
  4266. * [`HeapProfiler.takeHeapSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-takeHeapSnapshot) - The parameters's `treatGlobalObjectsAsRoots` _added_.
  4267. ## Roll protocol to r725087 724985 724981
  4268. ###### _2019-12-16 05:16:11 -0800_ | Diff: [4e63e49...05cef16](https://github.com/ChromeDevTools/devtools-protocol/compare/4e63e49...05cef16)
  4269. #### `Network`: modified command
  4270. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The parameters's `experimental` _added_.
  4271. ## Roll protocol to r725056
  4272. ###### _2019-12-16 02:16:13 -0800_ | Diff: [7e60474...4e63e49](https://github.com/ChromeDevTools/devtools-protocol/compare/7e60474...4e63e49)
  4273. #### `Network`: modified type
  4274. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - The properties's `experimental` _added_.
  4275. ## Roll protocol to r724935
  4276. ###### _2019-12-14 01:16:01 -0800_ | Diff: [1e81930...7e60474](https://github.com/ChromeDevTools/devtools-protocol/compare/1e81930...7e60474)
  4277. #### `Page`: new command
  4278. * [`Page.getManifestIcons`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getManifestIcons)
  4279. ## Roll protocol to r724701
  4280. ###### _2019-12-13 10:16:09 -0800_ | Diff: [7c8e4c5...2559025](https://github.com/ChromeDevTools/devtools-protocol/compare/7c8e4c5...2559025)
  4281. #### `Page`: modified command
  4282. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest) - The return value's `parsed` _added_.
  4283. #### `Page`: new type
  4284. * [`Page.AppManifestParsedProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestParsedProperties)
  4285. ## Roll protocol to r724596
  4286. ###### _2019-12-13 04:15:55 -0800_ | Diff: [cc1ba9f...7c8e4c5](https://github.com/ChromeDevTools/devtools-protocol/compare/cc1ba9f...7c8e4c5)
  4287. #### `Network`: modified command
  4288. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The parameters's `priority` _added_.
  4289. #### `Network`: new type
  4290. * [`Network.CookiePriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookiePriority)
  4291. #### `Network`: modified types
  4292. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie) - The properties's `priority` _added_.
  4293. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - The properties's `priority` _added_.
  4294. ## Roll protocol to r724568
  4295. ###### _2019-12-13 02:15:57 -0800_ | Diff: [5c57d0d...cc1ba9f](https://github.com/ChromeDevTools/devtools-protocol/compare/5c57d0d...cc1ba9f)
  4296. #### `Input`: modified commands
  4297. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `button` in the parameters had `type` _removed_. The `button` in the parameters had `enum` _removed_. The parameters's `$ref` _added_.
  4298. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `button` in the parameters had `type` _removed_. The `button` in the parameters had `enum` _removed_. The `button` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  4299. #### `Input`: new type
  4300. * [`Input.MouseButton`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-MouseButton)
  4301. ## Roll protocol to r724110
  4302. ###### _2019-12-11 18:15:58 -0800_ | Diff: [0ad933c...6130de0](https://github.com/ChromeDevTools/devtools-protocol/compare/0ad933c...6130de0)
  4303. #### `DOM`: modified type
  4304. * [`DOM.PseudoType`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-PseudoType) - The enum's `backdrop` _updated_. The enum's `selection` _updated_. The enum's `first-line-inherited` _updated_. The enum's `scrollbar` _updated_. The enum's `scrollbar-thumb` _updated_. The enum's `scrollbar-button` _updated_. The enum's `scrollbar-track` _updated_. The enum's `scrollbar-track-piece` _updated_. The enum's `scrollbar-corner` _updated_. The enum's `resizer` _updated_. The enum's `input-list-button` _updated_. The enum's `input-list-button` _added_.
  4305. ## Roll protocol to r723051
  4306. ###### _2019-12-09 12:16:02 -0800_ | Diff: [f747da9...0ad933c](https://github.com/ChromeDevTools/devtools-protocol/compare/f747da9...0ad933c)
  4307. #### `Runtime`: modified type
  4308. * [`Runtime.PrivatePropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor) - The properties's `optional` _added_. The properties's `get` _added_. The properties's `set` _added_.
  4309. ## Roll protocol to r722700
  4310. ###### _2019-12-06 16:16:07 -0800_ | Diff: [7f775e3...f747da9](https://github.com/ChromeDevTools/devtools-protocol/compare/7f775e3...f747da9)
  4311. #### `Browser`: modified types
  4312. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `clipboardRead` _updated_. The enum's `clipboardWrite` _updated_.
  4313. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor) - The properties's `allowWithoutSanitization` _added_.
  4314. ## Roll protocol to r719330
  4315. ###### _2019-11-26 13:16:17 -0800_ | Diff: [13ccbfe...14ad3ca](https://github.com/ChromeDevTools/devtools-protocol/compare/13ccbfe...14ad3ca)
  4316. #### `Page`: removed command
  4317. * [`Page.handleFileChooser`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleFileChooser)
  4318. #### `Page`: modified command
  4319. * [`Page.setInterceptFileChooserDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setInterceptFileChooserDialog) - `description` updated.
  4320. #### `Page`: modified event
  4321. * [`Page.fileChooserOpened`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-fileChooserOpened) - The `mode` in the parameters had `type` _removed_. The `mode` in the parameters had `enum` _removed_. The `mode` in the parameters had `name` _updated_. The parameters's `description` _added_. The parameters's `experimental` _added_. The parameters's `$ref` _added_. The parameters's `backendNodeId` _added_. The parameters's `mode` _added_.
  4322. ## Roll protocol to r717480
  4323. ###### _2019-11-20 20:15:58 -0800_ | Diff: [38fbc08...146c682](https://github.com/ChromeDevTools/devtools-protocol/compare/38fbc08...146c682)
  4324. #### `Security`: modified type
  4325. * [`Security.CertificateSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateSecurityState) - The `certifcateHasWeakSignature` in the properties had `name` _updated_. The `certifcateHasWeakSignature` in the properties had `description` _updated_. The `certifcateHasWeakSignature` in the properties had `type` _updated_. The `modernSSL` in the properties had `name` _updated_. The `modernSSL` in the properties had `description` _updated_. The `obsoleteSslProtocol` in the properties had `name` _updated_. The `obsoleteSslProtocol` in the properties had `description` _updated_. The `obsoleteSslKeyExchange` in the properties had `name` _updated_. The `obsoleteSslKeyExchange` in the properties had `description` _updated_. The `obsoleteSslCipher` in the properties had `name` _updated_. The `obsoleteSslCipher` in the properties had `description` _updated_. The `obsoleteSslSignature` in the properties had `name` _updated_. The `obsoleteSslSignature` in the properties had `description` _updated_. The properties's `optional` _added_. The properties's `obsoleteSslCipher` _added_. The properties's `obsoleteSslSignature` _added_.
  4326. ## Roll protocol to r717360
  4327. ###### _2019-11-20 16:15:59 -0800_ | Diff: [e794044...38fbc08](https://github.com/ChromeDevTools/devtools-protocol/compare/e794044...38fbc08)
  4328. #### `Browser`: modified commands
  4329. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission) - The `browserContextId` in the parameters had `$ref` _updated_.
  4330. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions) - The `browserContextId` in the parameters had `$ref` _updated_.
  4331. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions) - The `browserContextId` in the parameters had `$ref` _updated_.
  4332. #### `Browser`: new type
  4333. * [`Browser.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-BrowserContextID)
  4334. #### `Storage`: new commands
  4335. * [`Storage.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getCookies)
  4336. * [`Storage.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-setCookies)
  4337. * [`Storage.clearCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearCookies)
  4338. #### `Target`: modified commands
  4339. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - The `browserContextId` in the return value had `$ref` _updated_.
  4340. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts) - The `browserContextIds` in the return value had `$ref` _updated_.
  4341. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `browserContextId` in the parameters had `$ref` _updated_.
  4342. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - The `browserContextId` in the parameters had `$ref` _updated_.
  4343. #### `Target`: removed type
  4344. * [`Target.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-BrowserContextID)
  4345. #### `Target`: modified type
  4346. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The `browserContextId` in the properties had `$ref` _updated_.
  4347. ## Roll protocol to r717319
  4348. ###### _2019-11-20 15:15:58 -0800_ | Diff: [0da6eeb...e794044](https://github.com/ChromeDevTools/devtools-protocol/compare/0da6eeb...e794044)
  4349. #### `Security`: new types
  4350. * [`Security.SafetyTipStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipStatus)
  4351. * [`Security.SafetyTipInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SafetyTipInfo)
  4352. #### `Security`: modified type
  4353. * [`Security.VisibleSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-VisibleSecurityState) - The `securityStateIssueIds` in the properties had `type` _removed_. The `securityStateIssueIds` in the properties had `items` _removed_. The `securityStateIssueIds` in the properties had `name` _updated_. The `securityStateIssueIds` in the properties had `description` _updated_. The properties's `optional` _added_. The properties's `$ref` _added_. The properties's `securityStateIssueIds` _added_.
  4354. ## Roll protocol to r715684
  4355. ###### _2019-11-15 07:16:23 -0800_ | Diff: [2f6e00a...241adc5](https://github.com/ChromeDevTools/devtools-protocol/compare/2f6e00a...241adc5)
  4356. #### `Debugger`: modified commands
  4357. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource) - The `scriptSource` in the return value had `description` _updated_. The return value's `bytecode` _added_.
  4358. * [`Debugger.getWasmBytecode`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getWasmBytecode) - `description` updated. `deprecated` added.
  4359. ## Roll protocol to r712820
  4360. ###### _2019-11-05 16:16:33 -0800_ | Diff: [66e3abc...87a8f04](https://github.com/ChromeDevTools/devtools-protocol/compare/66e3abc...87a8f04)
  4361. #### `Profiler`: new commands
  4362. * [`Profiler.enableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-enableRuntimeCallStats)
  4363. * [`Profiler.disableRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-disableRuntimeCallStats)
  4364. * [`Profiler.getRuntimeCallStats`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getRuntimeCallStats)
  4365. #### `Profiler`: new type
  4366. * [`Profiler.CounterInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CounterInfo)
  4367. ## Roll protocol to r712476
  4368. ###### _2019-11-04 23:16:15 -0800_ | Diff: [7bbe86e...66e3abc](https://github.com/ChromeDevTools/devtools-protocol/compare/7bbe86e...66e3abc)
  4369. #### `Browser`: modified type
  4370. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `notifications` _updated_. The enum's `paymentHandler` _updated_. The enum's `periodicBackgroundSync` _updated_. The enum's `protectedMediaIdentifier` _updated_. The enum's `sensors` _updated_. The enum's `videoCapture` _updated_. The enum's `idleDetection` _updated_. The enum's `wakeLockScreen` _updated_. The enum's `wakeLockSystem` _updated_. The enum's `wakeLockSystem` _added_.
  4371. ## Roll protocol to r712350
  4372. ###### _2019-11-04 16:16:27 -0800_ | Diff: [450eb90...7bbe86e](https://github.com/ChromeDevTools/devtools-protocol/compare/450eb90...7bbe86e)
  4373. #### `Network`: modified types
  4374. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason) - The enum's `UnknownError` _removed_. The enum's `SameSiteExtended` _updated_. The enum's `SameSiteUnspecifiedTreatedAsLax` _updated_. The enum's `SameSiteNoneInsecure` _updated_. The enum's `UserPreferences` _updated_. The enum's `SyntaxError` _updated_. The enum's `SchemeNotSupported` _updated_. The enum's `OverwriteSecure` _updated_. The enum's `InvalidDomain` _updated_. The enum's `InvalidPrefix` _updated_.
  4375. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason) - The enum's `UnknownError` _removed_. The enum's `SameSiteExtended` _updated_. The enum's `SameSiteUnspecifiedTreatedAsLax` _updated_. The enum's `SameSiteNoneInsecure` _updated_. The enum's `UserPreferences` _updated_.
  4376. ## Roll protocol to r710913
  4377. ###### _2019-10-30 12:16:27_ | Diff: [b315ec7...450eb90](https://github.com/ChromeDevTools/devtools-protocol/compare/b315ec7...450eb90)
  4378. #### `Network`: modified type
  4379. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite) - The enum's `None` _removed_. The enum's `Extended` _updated_.
  4380. ## Roll protocol to r709494
  4381. ###### _2019-10-25 09:19:12_ | Diff: [cc0ccbf...cc2df42](https://github.com/ChromeDevTools/devtools-protocol/compare/cc0ccbf...cc2df42)
  4382. #### `CacheStorage`: modified command
  4383. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries) - The parameters's `optional` _added_ (2 times).
  4384. #### `Security`: modified type
  4385. * [`Security.SecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityState) - The enum's `insecure-broken` _added_.
  4386. ## Roll protocol to r708320
  4387. ###### _2019-10-22 13:16:41_ | Diff: [0eb89cb...cc0ccbf](https://github.com/ChromeDevTools/devtools-protocol/compare/0eb89cb...cc0ccbf)
  4388. #### `Runtime`: modified command
  4389. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `replMode` _added_.
  4390. ## Roll protocol to r704542
  4391. ###### _2019-10-10 03:15:57_ | Diff: [6db8af2...176dc88](https://github.com/ChromeDevTools/devtools-protocol/compare/6db8af2...176dc88)
  4392. #### `CSS`: modified type
  4393. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The properties's `endLine` _added_. The properties's `endColumn` _added_.
  4394. ## Roll protocol to r703825
  4395. ###### _2019-10-08 11:16:23_ | Diff: [1b9bba2...6db8af2](https://github.com/ChromeDevTools/devtools-protocol/compare/1b9bba2...6db8af2)
  4396. #### `Debugger`: modified command
  4397. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable) - The parameters's `supportsWasmDwarf` _removed_.
  4398. ## Roll protocol to r703432
  4399. ###### _2019-10-07 13:16:21_ | Diff: [9458ee4...1b9bba2](https://github.com/ChromeDevTools/devtools-protocol/compare/9458ee4...1b9bba2)
  4400. #### `Security`: new event
  4401. * [`Security.visibleSecurityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-visibleSecurityStateChanged)
  4402. #### `Security`: new types
  4403. * [`Security.CertificateSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateSecurityState)
  4404. * [`Security.VisibleSecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-VisibleSecurityState)
  4405. ## Roll protocol to r702485
  4406. ###### _2019-10-03 11:15:58_ | Diff: [848e8db...9458ee4](https://github.com/ChromeDevTools/devtools-protocol/compare/848e8db...9458ee4)
  4407. #### `WebAuthn`: modified type
  4408. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions) - The properties's `description` _added_ (2 times). The properties's `optional` _added_ (2 times). The properties's `isUserVerified` _added_.
  4409. ## Roll protocol to r701341
  4410. ###### _2019-09-30 16:15:58_ | Diff: [b9558e4...848e8db](https://github.com/ChromeDevTools/devtools-protocol/compare/b9558e4...848e8db)
  4411. #### `DOMSnapshot`: modified type
  4412. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The `scrollOffsetX` in the properties had `optional` _removed_. The `scrollOffsetX` in the properties had `type` _removed_. The `baseURL` in the properties had `name` _updated_. The `baseURL` in the properties had `description` _updated_. The `contentLanguage` in the properties had `name` _updated_. The `contentLanguage` in the properties had `description` _updated_. The `encodingName` in the properties had `name` _updated_. The `encodingName` in the properties had `description` _updated_. The `publicId` in the properties had `name` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `name` _updated_. The `systemId` in the properties had `description` _updated_. The `frameId` in the properties had `name` _updated_. The `frameId` in the properties had `description` _updated_. The `nodes` in the properties had `name` _updated_. The `nodes` in the properties had `description` _updated_. The `nodes` in the properties had `$ref` _updated_. The `layout` in the properties had `name` _updated_. The `layout` in the properties had `description` _updated_. The `layout` in the properties had `$ref` _updated_. The `textBoxes` in the properties had `name` _updated_. The `textBoxes` in the properties had `description` _updated_. The `textBoxes` in the properties had `$ref` _updated_. The `scrollOffsetX` in the properties had `name` _updated_. The `scrollOffsetX` in the properties had `description` _updated_. The `scrollOffsetY` in the properties had `name` _updated_. The `scrollOffsetY` in the properties had `description` _updated_. The properties's `$ref` _added_. The properties's `scrollOffsetY` _added_. The properties's `contentWidth` _added_. The properties's `contentHeight` _added_.
  4413. ## Roll protocol to r701085
  4414. ###### _2019-09-30 06:16:15_ | Diff: [52e455c...b9558e4](https://github.com/ChromeDevTools/devtools-protocol/compare/52e455c...b9558e4)
  4415. #### `Emulation`: modified command
  4416. * [`Emulation.setEmulatedMedia`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmulatedMedia) - `description` updated. The parameters's `optional` _added_. The parameters's `features` _added_.
  4417. #### `Emulation`: new type
  4418. * [`Emulation.MediaFeature`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-MediaFeature)
  4419. ## Roll protocol to r700880
  4420. ###### _2019-09-27 15:16:00_ | Diff: [1bafeca...52e455c](https://github.com/ChromeDevTools/devtools-protocol/compare/1bafeca...52e455c)
  4421. #### `Runtime`: modified command
  4422. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `throwOnSideEffect` in the parameters had `description` _updated_. The parameters's `disableBreaks` _added_.
  4423. ## Roll protocol to r700642
  4424. ###### _2019-09-27 03:15:57_ | Diff: [fc7a6b7...1bafeca](https://github.com/ChromeDevTools/devtools-protocol/compare/fc7a6b7...1bafeca)
  4425. #### `Tracing`: modified command
  4426. * [`Tracing.requestMemoryDump`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-requestMemoryDump)
  4427. ## Roll protocol to r700528
  4428. ###### _2019-09-26 18:16:06_ | Diff: [6af45a3...fc7a6b7](https://github.com/ChromeDevTools/devtools-protocol/compare/6af45a3...fc7a6b7)
  4429. #### `Target`: modified command
  4430. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - The parameters's `windowOpen` _added_.
  4431. ## Roll protocol to r700421
  4432. ###### _2019-09-26 14:16:16_ | Diff: [324d30c...6af45a3](https://github.com/ChromeDevTools/devtools-protocol/compare/324d30c...6af45a3)
  4433. #### `Target`: modified commands
  4434. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget) - The `flatten` in the parameters had `experimental` _removed_. The `flatten` in the parameters had `description` _updated_.
  4435. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - `description` updated. `deprecated` added.
  4436. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - The `flatten` in the parameters had `experimental` _removed_. The `flatten` in the parameters had `description` _updated_.
  4437. ## Roll protocol to r700395
  4438. ###### _2019-09-26 13:16:11_ | Diff: [4b981c0...324d30c](https://github.com/ChromeDevTools/devtools-protocol/compare/4b981c0...324d30c)
  4439. #### `SystemInfo`: modified type
  4440. * [`SystemInfo.GPUDevice`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUDevice) - The `vendorString` in the properties had `name` _updated_. The `vendorString` in the properties had `description` _updated_. The `vendorString` in the properties had `type` _updated_. The `deviceString` in the properties had `name` _updated_. The `deviceString` in the properties had `description` _updated_. The `deviceString` in the properties had `type` _updated_. The `driverVendor` in the properties had `name` _updated_. The `driverVendor` in the properties had `description` _updated_. The `driverVersion` in the properties had `name` _updated_. The `driverVersion` in the properties had `description` _updated_. The properties's `optional` _added_ (2 times). The properties's `driverVendor` _added_. The properties's `driverVersion` _added_.
  4441. ## Roll protocol to r699881
  4442. ###### _2019-09-25 11:16:02_ | Diff: [d1cec58...4b981c0](https://github.com/ChromeDevTools/devtools-protocol/compare/d1cec58...4b981c0)
  4443. #### `Debugger`: new command
  4444. * [`Debugger.getWasmBytecode`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getWasmBytecode)
  4445. #### `Debugger`: modified command
  4446. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable) - The parameters's `supportsWasmDwarf` _added_.
  4447. ## Roll protocol to r698331
  4448. ###### _2019-09-19 20:16:05_ | Diff: [86165c9...d1cec58](https://github.com/ChromeDevTools/devtools-protocol/compare/86165c9...d1cec58)
  4449. #### `Fetch`: modified command
  4450. * [`Fetch.fulfillRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-fulfillRequest) - The `body` in the parameters had `name` _updated_. The `body` in the parameters had `description` _updated_. The `responsePhrase` in the parameters had `name` _updated_. The `responsePhrase` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `responsePhrase` _added_.
  4451. ## Roll protocol to r696576
  4452. ###### _2019-09-13 16:16:04_ | Diff: [2103701...86165c9](https://github.com/ChromeDevTools/devtools-protocol/compare/2103701...86165c9)
  4453. #### `Network`: modified types
  4454. * [`Network.BlockedSetCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedSetCookieWithReason) - The `blockedReason` in the properties had `$ref` _removed_. The `blockedReason` in the properties had `name` _updated_. The `blockedReason` in the properties had `description` _updated_. The properties's `type` _added_. The properties's `items` _added_.
  4455. * [`Network.BlockedCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedCookieWithReason) - The `blockedReason` in the properties had `$ref` _removed_. The `blockedReason` in the properties had `name` _updated_. The `blockedReason` in the properties had `description` _updated_. The properties's `type` _added_. The properties's `items` _added_.
  4456. ## Roll protocol to r696317
  4457. ###### _2019-09-13 01:16:13_ | Diff: [ca69194...2103701](https://github.com/ChromeDevTools/devtools-protocol/compare/ca69194...2103701)
  4458. #### `Debugger`: modified commands
  4459. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall) - `deprecated` added.
  4460. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto) - The `breakOnAsyncCall` in the parameters had `description` _updated_.
  4461. #### `Debugger`: modified event
  4462. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `asyncCallStackTraceId` in the parameters had `description` _updated_. The parameters's `deprecated` _added_.
  4463. ## Roll protocol to r694415
  4464. ###### _2019-09-06 14:15:53_ | Diff: [308aa38...81a5ef8](https://github.com/ChromeDevTools/devtools-protocol/compare/308aa38...81a5ef8)
  4465. #### `DOM`: modified command
  4466. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation) - `experimental` removed. The `nodeId` in the return value had `optional` _removed_. The `nodeId` in the return value had `name` _updated_. The `nodeId` in the return value had `description` _updated_. The `nodeId` in the return value had `$ref` _updated_. The parameters's `ignorePointerEventsNone` _added_. The return value's `nodeId` _added_.
  4467. ## Roll protocol to r694293
  4468. ###### _2019-09-06 10:16:24_ | Diff: [a6f7aeb...308aa38](https://github.com/ChromeDevTools/devtools-protocol/compare/a6f7aeb...308aa38)
  4469. #### `HeadlessExperimental`: modified event
  4470. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged) - `description` updated. `deprecated` added.
  4471. ## Roll protocol to r692805
  4472. ###### _2019-09-03 13:15:58_ | Diff: [108d389...a6f7aeb](https://github.com/ChromeDevTools/devtools-protocol/compare/108d389...a6f7aeb)
  4473. #### `HeadlessExperimental`: modified event
  4474. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged) - `deprecated` removed. `description` updated.
  4475. ## Roll protocol to r692736
  4476. ###### _2019-09-03 11:16:12_ | Diff: [82e6b82...108d389](https://github.com/ChromeDevTools/devtools-protocol/compare/82e6b82...108d389)
  4477. #### `HeadlessExperimental`: modified event
  4478. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged) - `description` updated. `deprecated` added.
  4479. ## Roll protocol to r689523
  4480. ###### _2019-08-22 10:15:59_ | Diff: [78e5621...e1fb93b](https://github.com/ChromeDevTools/devtools-protocol/compare/78e5621...e1fb93b)
  4481. #### `WebAuthn`: new command
  4482. * [`WebAuthn.removeCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeCredential)
  4483. ## Roll protocol to r687122 686719
  4484. ###### _2019-08-14 19:15:58_ | Diff: [13e7205...443c7a4](https://github.com/ChromeDevTools/devtools-protocol/compare/13e7205...443c7a4)
  4485. #### `DOMSnapshot`: modified command
  4486. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot) - The `includeDOMRects` in the parameters had `name` _updated_. The `includeDOMRects` in the parameters had `description` _updated_. The parameters's `includeDOMRects` _added_.
  4487. #### `DOMSnapshot`: modified type
  4488. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The `offsetRects` in the properties had `$ref` _removed_. The `offsetRects` in the properties had `name` _updated_. The `offsetRects` in the properties had `description` _updated_. The `scrollRects` in the properties had `name` _updated_. The `scrollRects` in the properties had `description` _updated_. The `clientRects` in the properties had `name` _updated_. The `clientRects` in the properties had `description` _updated_. The `5` in the properties had `type` _added_. The properties's `clientRects` _added_.
  4489. ## Roll protocol to r685550
  4490. ###### _2019-08-09 07:15:54_ | Diff: [dd87c1c...13e7205](https://github.com/ChromeDevTools/devtools-protocol/compare/dd87c1c...13e7205)
  4491. #### `ServiceWorker`: new command
  4492. * [`ServiceWorker.dispatchPeriodicSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchPeriodicSyncEvent)
  4493. ## Roll protocol to r685049
  4494. ###### _2019-08-07 18:16:05_ | Diff: [8ab49c8...dd87c1c](https://github.com/ChromeDevTools/devtools-protocol/compare/8ab49c8...dd87c1c)
  4495. #### `WebAudio`: modified command
  4496. * [`WebAudio.getRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-getRealtimeData) - The `contextId` in the parameters had `$ref` _updated_.
  4497. #### `WebAudio`: new events
  4498. * [`WebAudio.audioListenerCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerCreated)
  4499. * [`WebAudio.audioListenerWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioListenerWillBeDestroyed)
  4500. * [`WebAudio.audioNodeCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeCreated)
  4501. * [`WebAudio.audioNodeWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioNodeWillBeDestroyed)
  4502. * [`WebAudio.audioParamCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamCreated)
  4503. * [`WebAudio.audioParamWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-audioParamWillBeDestroyed)
  4504. * [`WebAudio.nodesConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesConnected)
  4505. * [`WebAudio.nodesDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodesDisconnected)
  4506. * [`WebAudio.nodeParamConnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamConnected)
  4507. * [`WebAudio.nodeParamDisconnected`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-nodeParamDisconnected)
  4508. #### `WebAudio`: modified event
  4509. * [`WebAudio.contextWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextWillBeDestroyed) - The `contextId` in the parameters had `$ref` _updated_.
  4510. #### `WebAudio`: new types
  4511. * [`WebAudio.GraphObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-GraphObjectId)
  4512. * [`WebAudio.NodeType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-NodeType)
  4513. * [`WebAudio.ChannelCountMode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelCountMode)
  4514. * [`WebAudio.ChannelInterpretation`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ChannelInterpretation)
  4515. * [`WebAudio.ParamType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ParamType)
  4516. * [`WebAudio.AutomationRate`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AutomationRate)
  4517. * [`WebAudio.AudioListener`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioListener)
  4518. * [`WebAudio.AudioNode`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioNode)
  4519. * [`WebAudio.AudioParam`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-AudioParam)
  4520. #### `WebAudio`: removed type
  4521. * [`WebAudio.ContextId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextId)
  4522. #### `WebAudio`: modified type
  4523. * [`WebAudio.BaseAudioContext`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-BaseAudioContext) - The `contextId` in the properties had `$ref` _updated_.
  4524. ## Roll protocol to r684999
  4525. ###### _2019-08-07 16:16:04_ | Diff: [3be7296...8ab49c8](https://github.com/ChromeDevTools/devtools-protocol/compare/3be7296...8ab49c8)
  4526. #### `Browser`: new command
  4527. * [`Browser.setPermission`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setPermission)
  4528. #### `Browser`: new types
  4529. * [`Browser.PermissionSetting`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionSetting)
  4530. * [`Browser.PermissionDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionDescriptor)
  4531. ## Roll protocol to r684970
  4532. ###### _2019-08-07 15:16:04_ | Diff: [0433fdf...3be7296](https://github.com/ChromeDevTools/devtools-protocol/compare/0433fdf...3be7296)
  4533. #### `WebAuthn`: new command
  4534. * [`WebAuthn.getCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredential)
  4535. ## Roll protocol to r684601
  4536. ###### _2019-08-06 18:16:06_ | Diff: [64b5368...0433fdf](https://github.com/ChromeDevTools/devtools-protocol/compare/64b5368...0433fdf)
  4537. #### `Page`: modified type
  4538. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The `id` in the properties had `type` _removed_. The properties's `$ref` _added_.
  4539. ## Roll protocol to r684555
  4540. ###### _2019-08-06 16:16:01_ | Diff: [5856a13...64b5368](https://github.com/ChromeDevTools/devtools-protocol/compare/5856a13...64b5368)
  4541. #### `Media`: new domain
  4542. * [`Media.Media`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#domain-Media)
  4543. #### `Media`: new commands
  4544. * [`Media.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-enable)
  4545. * [`Media.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#method-disable)
  4546. #### `Media`: new events
  4547. * [`Media.playerPropertiesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerPropertiesChanged)
  4548. * [`Media.playerEventsAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playerEventsAdded)
  4549. * [`Media.playersCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#event-playersCreated)
  4550. #### `Media`: new types
  4551. * [`Media.PlayerId`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerId)
  4552. * [`Media.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-Timestamp)
  4553. * [`Media.PlayerProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerProperty)
  4554. * [`Media.PlayerEventType`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEventType)
  4555. * [`Media.PlayerEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Media/#type-PlayerEvent)
  4556. ## Roll protocol to r683290
  4557. ###### _2019-08-01 13:16:10_ | Diff: [8e07b77...5856a13](https://github.com/ChromeDevTools/devtools-protocol/compare/8e07b77...5856a13)
  4558. #### `WebAuthn`: modified type
  4559. * [`WebAuthn.Credential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-Credential) - The `rpIdHash` in the properties had `description` _removed_. The `rpIdHash` in the properties had `name` _updated_. The `rpIdHash` in the properties had `type` _updated_. The `privateKey` in the properties had `name` _updated_. The `privateKey` in the properties had `description` _updated_. The `signCount` in the properties had `name` _updated_. The `signCount` in the properties had `description` _updated_. The `signCount` in the properties had `type` _updated_. The properties's `optional` _added_. The properties's `userHandle` _added_. The properties's `signCount` _added_.
  4560. ## Roll protocol to r682524
  4561. ###### _2019-07-30 17:16:09_ | Diff: [0712e15...497b3f8](https://github.com/ChromeDevTools/devtools-protocol/compare/0712e15...497b3f8)
  4562. #### `WebAudio`: new event
  4563. * [`WebAudio.contextWillBeDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextWillBeDestroyed)
  4564. #### `WebAudio`: removed event
  4565. * [`WebAudio.contextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextDestroyed)
  4566. ## Roll protocol to r681549
  4567. ###### _2019-07-26 17:15:55_ | Diff: [ccba565...0712e15](https://github.com/ChromeDevTools/devtools-protocol/compare/ccba565...0712e15)
  4568. #### `DOM`: new commands
  4569. * [`DOM.setNodeStackTracesEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeStackTracesEnabled)
  4570. * [`DOM.getNodeStackTraces`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeStackTraces)
  4571. ## Roll protocol to r680546 678539
  4572. ###### _2019-07-24 12:15:59_ | Diff: [0334ffc...f2a777d](https://github.com/ChromeDevTools/devtools-protocol/compare/0334ffc...f2a777d)
  4573. #### `BackgroundService`: modified type
  4574. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName) - The enum's `periodicBackgroundSync` _added_.
  4575. ## Roll protocol to r680180
  4576. ###### _2019-07-23 15:16:11_ | Diff: [06d8e60...0334ffc](https://github.com/ChromeDevTools/devtools-protocol/compare/06d8e60...0334ffc)
  4577. #### `SystemInfo`: new type
  4578. * [`SystemInfo.ImageType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageType)
  4579. #### `SystemInfo`: modified type
  4580. * [`SystemInfo.ImageDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageDecodeAcceleratorCapability) - The `imageType` in the properties had `type` _removed_. The properties's `$ref` _added_.
  4581. ## Roll protocol to r678025
  4582. ###### _2019-07-16 16:15:58_ | Diff: [15eb83b...436e5f2](https://github.com/ChromeDevTools/devtools-protocol/compare/15eb83b...436e5f2)
  4583. #### `Network`: new events
  4584. * [`Network.requestWillBeSentExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSentExtraInfo)
  4585. * [`Network.responseReceivedExtraInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceivedExtraInfo)
  4586. #### `Network`: new types
  4587. * [`Network.SetCookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SetCookieBlockedReason)
  4588. * [`Network.CookieBlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieBlockedReason)
  4589. * [`Network.BlockedSetCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedSetCookieWithReason)
  4590. * [`Network.BlockedCookieWithReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedCookieWithReason)
  4591. ## Roll protocol to r676164
  4592. ###### _2019-07-10 16:16:22_ | Diff: [eabfde3...783cc86](https://github.com/ChromeDevTools/devtools-protocol/compare/eabfde3...783cc86)
  4593. #### `Overlay`: modified command
  4594. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The parameters's `includeStyle` _added_.
  4595. ## Roll protocol to r674615 641719
  4596. ###### _2019-07-03 14:16:20_ | Diff: [b44b935...e639d55](https://github.com/ChromeDevTools/devtools-protocol/compare/b44b935...e639d55)
  4597. #### `BackgroundService`: modified type
  4598. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName) - The enum's `paymentHandler` _added_.
  4599. ## Roll protocol to r673641
  4600. ###### _2019-06-30 22:16:04_ | Diff: [7eda722...8282023](https://github.com/ChromeDevTools/devtools-protocol/compare/7eda722...8282023)
  4601. #### `Network`: modified type
  4602. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader) - The properties's `headerIntegrity` _added_.
  4603. ## Roll protocol to r673382
  4604. ###### _2019-06-28 10:16:01_ | Diff: [55a3386...c27026e](https://github.com/ChromeDevTools/devtools-protocol/compare/55a3386...c27026e)
  4605. #### `Network`: modified commands
  4606. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - `description` updated. `deprecated` added.
  4607. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception) - `description` updated. `deprecated` added.
  4608. #### `Network`: modified event
  4609. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - `description` updated. `deprecated` added.
  4610. ## Roll protocol to r673135
  4611. ###### _2019-06-27 17:16:12_ | Diff: [fb3f546...c137a23](https://github.com/ChromeDevTools/devtools-protocol/compare/fb3f546...c137a23)
  4612. #### `Page`: new commands
  4613. * [`Page.setInterceptFileChooserDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setInterceptFileChooserDialog)
  4614. * [`Page.handleFileChooser`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleFileChooser)
  4615. #### `Page`: new event
  4616. * [`Page.fileChooserOpened`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-fileChooserOpened)
  4617. ## Roll protocol to r670852
  4618. ###### _2019-06-20 04:15:55_ | Diff: [927ebde...fef5eb9](https://github.com/ChromeDevTools/devtools-protocol/compare/927ebde...fef5eb9)
  4619. #### `Tracing`: modified event
  4620. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The `stream` in the parameters had `optional` _removed_. The `stream` in the parameters had `$ref` _removed_. The `stream` in the parameters had `name` _updated_. The `stream` in the parameters had `description` _updated_. The `traceFormat` in the parameters had `name` _updated_. The `traceFormat` in the parameters had `description` _updated_. The `traceFormat` in the parameters had `$ref` _updated_. The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `description` _updated_. The `streamCompression` in the parameters had `$ref` _updated_. The parameters's `type` _added_. The parameters's `streamCompression` _added_.
  4621. ## Roll protocol to r670335
  4622. ###### _2019-06-18 18:16:11_ | Diff: [471ce93...927ebde](https://github.com/ChromeDevTools/devtools-protocol/compare/471ce93...927ebde)
  4623. #### `Security`: modified event
  4624. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged) - The parameters's `deprecated` _added_.
  4625. ## Roll protocol to r670203
  4626. ###### _2019-06-18 14:15:55_ | Diff: [fd73e0c...471ce93](https://github.com/ChromeDevTools/devtools-protocol/compare/fd73e0c...471ce93)
  4627. #### `WebAuthn`: new command
  4628. * [`WebAuthn.setUserVerified`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-setUserVerified)
  4629. ## Roll protocol to r670021
  4630. ###### _2019-06-18 02:15:55_ | Diff: [7fc59b2...fd73e0c](https://github.com/ChromeDevTools/devtools-protocol/compare/7fc59b2...fd73e0c)
  4631. #### `Browser`: modified type
  4632. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `wakeLockScreen` _added_. The enum's `wakeLockSystem` _added_.
  4633. ## Roll protocol to r669732
  4634. ###### _2019-06-17 11:16:03_ | Diff: [d9cb7e4...de8b6d9](https://github.com/ChromeDevTools/devtools-protocol/compare/d9cb7e4...de8b6d9)
  4635. #### `WebAuthn`: modified type
  4636. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions) - The properties's `automaticPresenceSimulation` _added_.
  4637. ## Roll protocol to r668850 668434
  4638. ###### _2019-06-13 09:16:01_ | Diff: [a40fe3f...b24d4a4](https://github.com/ChromeDevTools/devtools-protocol/compare/a40fe3f...b24d4a4)
  4639. #### `SystemInfo`: new types
  4640. * [`SystemInfo.Size`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-Size)
  4641. * [`SystemInfo.VideoDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoDecodeAcceleratorCapability)
  4642. * [`SystemInfo.VideoEncodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-VideoEncodeAcceleratorCapability)
  4643. * [`SystemInfo.SubsamplingFormat`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-SubsamplingFormat)
  4644. * [`SystemInfo.ImageDecodeAcceleratorCapability`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ImageDecodeAcceleratorCapability)
  4645. #### `SystemInfo`: modified type
  4646. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo) - The properties's `videoDecoding` _added_. The properties's `videoEncoding` _added_. The properties's `imageDecoding` _added_.
  4647. ## Roll protocol to r668114
  4648. ###### _2019-06-11 13:15:52_ | Diff: [937d75e...a40fe3f](https://github.com/ChromeDevTools/devtools-protocol/compare/937d75e...a40fe3f)
  4649. #### `Page`: modified command
  4650. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The `data` in the return value had `description` _updated_. The parameters's `transferMode` _added_. The return value's `stream` _added_.
  4651. ## Roll protocol to r667807
  4652. ###### _2019-06-10 17:15:38_ | Diff: [c42a81a...a4a807c](https://github.com/ChromeDevTools/devtools-protocol/compare/c42a81a...a4a807c)
  4653. #### `Page`: modified type
  4654. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The `unreachableUrl` in the properties had `experimental` _removed_. The `unreachableUrl` in the properties had `optional` _removed_. The `url` in the properties had `description` _updated_. The `securityOrigin` in the properties had `name` _updated_. The `securityOrigin` in the properties had `description` _updated_. The `mimeType` in the properties had `name` _updated_. The `mimeType` in the properties had `description` _updated_. The `unreachableUrl` in the properties had `name` _updated_. The `unreachableUrl` in the properties had `description` _updated_. The properties's `experimental` _added_. The properties's `optional` _added_. The properties's `unreachableUrl` _added_.
  4655. ## Roll protocol to r667801
  4656. ###### _2019-06-10 16:16:30_ | Diff: [cd76fe0...c42a81a](https://github.com/ChromeDevTools/devtools-protocol/compare/cd76fe0...c42a81a)
  4657. #### `WebAuthn`: new commands
  4658. * [`WebAuthn.addCredential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addCredential)
  4659. * [`WebAuthn.getCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-getCredentials)
  4660. * [`WebAuthn.clearCredentials`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-clearCredentials)
  4661. #### `WebAuthn`: new type
  4662. * [`WebAuthn.Credential`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-Credential)
  4663. ## Roll protocol to r667155
  4664. ###### _2019-06-07 09:16:15_ | Diff: [047f15a...cd76fe0](https://github.com/ChromeDevTools/devtools-protocol/compare/047f15a...cd76fe0)
  4665. #### `Overlay`: new command
  4666. * [`Overlay.setShowLayoutShiftRegions`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowLayoutShiftRegions)
  4667. ## Roll protocol to r666393
  4668. ###### _2019-06-05 12:15:46_ | Diff: [30dd754...2bb413c](https://github.com/ChromeDevTools/devtools-protocol/compare/30dd754...2bb413c)
  4669. #### `DOMSnapshot`: modified command
  4670. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot) - The parameters's `includeDOMRects` _added_.
  4671. #### `DOMSnapshot`: modified type
  4672. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The properties's `offsetRects` _added_. The properties's `scrollRects` _added_. The properties's `clientRects` _added_.
  4673. #### `WebAudio`: modified type
  4674. * [`WebAudio.ContextRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextRealtimeData) - The `currentTime` in the properties had `optional` _removed_. The `renderCapacity` in the properties had `optional` _removed_. `description` updated. The properties's `callbackIntervalMean` _added_. The properties's `callbackIntervalVariance` _added_.
  4675. ## Roll protocol to r666105
  4676. ###### _2019-06-04 18:15:57_ | Diff: [abac32e...30dd754](https://github.com/ChromeDevTools/devtools-protocol/compare/abac32e...30dd754)
  4677. #### `WebAuthn`: new commands
  4678. * [`WebAuthn.addVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-addVirtualAuthenticator)
  4679. * [`WebAuthn.removeVirtualAuthenticator`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-removeVirtualAuthenticator)
  4680. #### `WebAuthn`: new types
  4681. * [`WebAuthn.AuthenticatorId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorId)
  4682. * [`WebAuthn.AuthenticatorProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorProtocol)
  4683. * [`WebAuthn.AuthenticatorTransport`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-AuthenticatorTransport)
  4684. * [`WebAuthn.VirtualAuthenticatorOptions`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#type-VirtualAuthenticatorOptions)
  4685. ## Roll protocol to r665395
  4686. ###### _2019-05-31 21:15:47_ | Diff: [fff326b...fab8221](https://github.com/ChromeDevTools/devtools-protocol/compare/fff326b...fab8221)
  4687. #### `DOMSnapshot`: modified types
  4688. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The `scrollOffsetX` in the properties had `description` _updated_. The properties's `description` _added_.
  4689. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - `description` updated. The `nodeIndex` in the properties had `description` _updated_. The `styles` in the properties had `description` _updated_.
  4690. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot) - `description` updated. The `layoutIndex` in the properties had `description` _updated_.
  4691. ## Roll protocol to r664845
  4692. ###### _2019-05-30 12:15:53_ | Diff: [01a7aa9...1a6ebbc](https://github.com/ChromeDevTools/devtools-protocol/compare/01a7aa9...1a6ebbc)
  4693. #### `Cast`: modified event
  4694. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated) - The `sinkNames` in the parameters had `type` _removed_. The `sinkNames` in the parameters had `name` _updated_. The `0` in the parameters had `$ref` _added_.
  4695. #### `Cast`: new type
  4696. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  4697. ## Roll protocol to r664634
  4698. ###### _2019-05-29 20:15:49_ | Diff: [b5a873e...9326d45](https://github.com/ChromeDevTools/devtools-protocol/compare/b5a873e...9326d45)
  4699. #### `Cast`: modified event
  4700. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated) - The `sinks` in the parameters had `$ref` _removed_. The `sinks` in the parameters had `name` _updated_. The `0` in the parameters had `type` _added_.
  4701. #### `Cast`: removed type
  4702. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  4703. ## Roll protocol to r664496
  4704. ###### _2019-05-29 15:15:58_ | Diff: [5a1d75b...b5a873e](https://github.com/ChromeDevTools/devtools-protocol/compare/5a1d75b...b5a873e)
  4705. #### `Cast`: modified event
  4706. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated) - The `sinkNames` in the parameters had `type` _removed_. The `sinkNames` in the parameters had `name` _updated_. The `0` in the parameters had `$ref` _added_.
  4707. #### `Cast`: new type
  4708. * [`Cast.Sink`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#type-Sink)
  4709. #### `Target`: modified command
  4710. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The parameters's `newWindow` _added_. The parameters's `background` _added_.
  4711. ## Roll protocol to r664421
  4712. ###### _2019-05-29 13:15:58_ | Diff: [8246573...5a1d75b](https://github.com/ChromeDevTools/devtools-protocol/compare/8246573...5a1d75b)
  4713. #### `WebAuthn`: new domain
  4714. * [`WebAuthn.WebAuthn`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#domain-WebAuthn)
  4715. #### `WebAuthn`: new commands
  4716. * [`WebAuthn.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-enable)
  4717. * [`WebAuthn.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn/#method-disable)
  4718. ## Roll protocol to r663310
  4719. ###### _2019-05-24 16:16:12_ | Diff: [7deb3ca...9c1151e](https://github.com/ChromeDevTools/devtools-protocol/compare/7deb3ca...9c1151e)
  4720. #### `Emulation`: new command
  4721. * [`Emulation.setTimezoneOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTimezoneOverride)
  4722. ## Roll protocol to r662959
  4723. ###### _2019-05-23 21:16:03_ | Diff: [58c4454...7deb3ca](https://github.com/ChromeDevTools/devtools-protocol/compare/58c4454...7deb3ca)
  4724. #### `Network`: modified type
  4725. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `timing` in the properties had `optional` _removed_. The `timing` in the properties had `$ref` _removed_. The `protocol` in the properties had `type` _removed_. The `securityState` in the properties had `$ref` _removed_. The `securityDetails` in the properties had `optional` _removed_. The `encodedDataLength` in the properties had `name` _updated_. The `encodedDataLength` in the properties had `description` _updated_. The `encodedDataLength` in the properties had `type` _updated_. The `timing` in the properties had `name` _updated_. The `timing` in the properties had `description` _updated_. The `protocol` in the properties had `name` _updated_. The `protocol` in the properties had `description` _updated_. The `securityState` in the properties had `name` _updated_. The `securityState` in the properties had `description` _updated_. The `securityDetails` in the properties had `name` _updated_. The `securityDetails` in the properties had `description` _updated_. The `securityDetails` in the properties had `$ref` _updated_. The properties's `optional` _added_ (2 times). The properties's `type` _added_ (2 times). The properties's `$ref` _added_. The properties's `securityDetails` _added_.
  4726. ## Roll protocol to r661591
  4727. ###### _2019-05-20 19:16:08_ | Diff: [d249f2d...4023d08](https://github.com/ChromeDevTools/devtools-protocol/compare/d249f2d...4023d08)
  4728. #### `SystemInfo`: modified type
  4729. * [`SystemInfo.GPUDevice`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUDevice) - The properties's `driverVendor` _added_. The properties's `driverVersion` _added_.
  4730. ## Roll protocol to r661407
  4731. ###### _2019-05-20 11:16:28_ | Diff: [95c7225...d249f2d](https://github.com/ChromeDevTools/devtools-protocol/compare/95c7225...d249f2d)
  4732. #### `BackgroundService`: modified type
  4733. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName) - The enum's `pushMessaging` _added_. The enum's `notifications` _added_.
  4734. ## Roll protocol to r658716
  4735. ###### _2019-05-10 13:15:57_ | Diff: [56dd9e6...13c78cc](https://github.com/ChromeDevTools/devtools-protocol/compare/56dd9e6...13c78cc)
  4736. #### `Overlay`: modified command
  4737. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The parameters's `includeDistance` _added_.
  4738. ## Roll protocol to r658093
  4739. ###### _2019-05-09 06:16:29_ | Diff: [25da6a0...56dd9e6](https://github.com/ChromeDevTools/devtools-protocol/compare/25da6a0...56dd9e6)
  4740. #### `Debugger`: new command
  4741. * [`Debugger.setInstrumentationBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setInstrumentationBreakpoint)
  4742. #### `Debugger`: modified event
  4743. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `reason` in the parameters had `XHR` _updated_. The `reason` in the parameters had `DOM` _updated_. The `reason` in the parameters had `EventListener` _updated_. The `reason` in the parameters had `exception` _updated_. The `reason` in the parameters had `assert` _updated_. The `reason` in the parameters had `debugCommand` _updated_. The `reason` in the parameters had `promiseRejection` _updated_. The `reason` in the parameters had `ambiguous` _updated_. The `1` in the parameters had `XHR` _added_.
  4744. ## Roll protocol to r655971
  4745. ###### _2019-05-02 05:16:27_ | Diff: [f4514f1...2dfb37c](https://github.com/ChromeDevTools/devtools-protocol/compare/f4514f1...2dfb37c)
  4746. #### `Browser`: modified type
  4747. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `protectedMediaIdentifier` _updated_. The enum's `sensors` _updated_. The enum's `videoCapture` _updated_. The enum's `idleDetection` _updated_. The enum's `idleDetection` _added_.
  4748. ## Roll protocol to r654576
  4749. ###### _2019-04-26 13:16:29_ | Diff: [52b6990...ac6e0e0](https://github.com/ChromeDevTools/devtools-protocol/compare/52b6990...ac6e0e0)
  4750. #### `Page`: new event
  4751. * [`Page.downloadWillBegin`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-downloadWillBegin)
  4752. ## Roll protocol to r652664
  4753. ###### _2019-04-19 15:15:54_ | Diff: [3348d18...ba2ecc6](https://github.com/ChromeDevTools/devtools-protocol/compare/3348d18...ba2ecc6)
  4754. #### `Network`: modified type
  4755. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite) - The enum's `Extended` _added_. The enum's `None` _added_.
  4756. ## Roll protocol to r652382
  4757. ###### _2019-04-18 16:15:52_ | Diff: [7e6cca5...3348d18](https://github.com/ChromeDevTools/devtools-protocol/compare/7e6cca5...3348d18)
  4758. #### `WebAudio`: new domain
  4759. * [`WebAudio.WebAudio`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#domain-WebAudio)
  4760. #### `WebAudio`: new commands
  4761. * [`WebAudio.enable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-enable)
  4762. * [`WebAudio.disable`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-disable)
  4763. * [`WebAudio.getRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#method-getRealtimeData)
  4764. #### `WebAudio`: new events
  4765. * [`WebAudio.contextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextCreated)
  4766. * [`WebAudio.contextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextDestroyed)
  4767. * [`WebAudio.contextChanged`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#event-contextChanged)
  4768. #### `WebAudio`: new types
  4769. * [`WebAudio.ContextId`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextId)
  4770. * [`WebAudio.ContextType`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextType)
  4771. * [`WebAudio.ContextState`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextState)
  4772. * [`WebAudio.ContextRealtimeData`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-ContextRealtimeData)
  4773. * [`WebAudio.BaseAudioContext`](https://chromedevtools.github.io/devtools-protocol/tot/WebAudio/#type-BaseAudioContext)
  4774. ## Roll protocol to r652253
  4775. ###### _2019-04-18 12:15:58_ | Diff: [b97d14d...7e6cca5](https://github.com/ChromeDevTools/devtools-protocol/compare/b97d14d...7e6cca5)
  4776. #### `Page`: modified event
  4777. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation) - The `frameId` in the parameters had `description` _updated_.
  4778. ## Roll protocol to r651096
  4779. ###### _2019-04-15 18:15:55_ | Diff: [a5c2d16...fe5e1f5](https://github.com/ChromeDevTools/devtools-protocol/compare/a5c2d16...fe5e1f5)
  4780. #### `Security`: modified type
  4781. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus) - The `ranMixedContent` in the properties had `description` _updated_. The `displayedMixedContent` in the properties had `description` _updated_. The `containedMixedForm` in the properties had `description` _updated_. The `ranContentWithCertErrors` in the properties had `description` _updated_. The `displayedContentWithCertErrors` in the properties had `description` _updated_. The `ranInsecureContentStyle` in the properties had `description` _updated_. The `displayedInsecureContentStyle` in the properties had `description` _updated_.
  4782. ## Roll protocol to r649764
  4783. ###### _2019-04-10 20:15:55_ | Diff: [37fb01d...20e84f7](https://github.com/ChromeDevTools/devtools-protocol/compare/37fb01d...20e84f7)
  4784. #### `Page`: new command
  4785. * [`Page.getInstallabilityErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getInstallabilityErrors)
  4786. ## Roll protocol to r648372 637670
  4787. ###### _2019-04-05 15:15:55_ | Diff: [9d1a903...401f203](https://github.com/ChromeDevTools/devtools-protocol/compare/9d1a903...401f203)
  4788. #### `Network`: modified event
  4789. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The parameters's `requestId` _added_.
  4790. #### `Fetch`: modified event
  4791. * [`Fetch.requestPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused) - The parameters's `networkId` _added_.
  4792. ## Roll protocol to r648288
  4793. ###### _2019-04-05 12:16:00_ | Diff: [f37cb70...9d1a903](https://github.com/ChromeDevTools/devtools-protocol/compare/f37cb70...9d1a903)
  4794. #### `Tracing`: modified command
  4795. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `description` _updated_. The `streamCompression` in the parameters had `$ref` _updated_. The `traceConfig` in the parameters had `name` _updated_. The `traceConfig` in the parameters had `$ref` _updated_. The parameters's `description` _added_. The parameters's `traceConfig` _added_.
  4796. #### `Tracing`: modified event
  4797. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `description` _updated_. The `streamCompression` in the parameters had `$ref` _updated_. The parameters's `streamCompression` _added_.
  4798. #### `Tracing`: new type
  4799. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  4800. ## Roll protocol to r648019
  4801. ###### _2019-04-04 18:16:14_ | Diff: [aad03c0...f37cb70](https://github.com/ChromeDevTools/devtools-protocol/compare/aad03c0...f37cb70)
  4802. #### `Network`: modified command
  4803. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception) - `description` updated.
  4804. ## Roll protocol to r647618
  4805. ###### _2019-04-03 21:16:27_ | Diff: [802c5b3...d59e473](https://github.com/ChromeDevTools/devtools-protocol/compare/802c5b3...d59e473)
  4806. #### `Overlay`: modified type
  4807. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode) - The enum's `none` _updated_. The enum's `none` _added_.
  4808. ## Roll protocol to r646981
  4809. ###### _2019-04-02 15:16:33_ | Diff: [fb73f39...802c5b3](https://github.com/ChromeDevTools/devtools-protocol/compare/fb73f39...802c5b3)
  4810. #### `Tracing`: modified command
  4811. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The parameters's `traceConfig` _removed_. The `streamCompression` in the parameters had `description` _removed_. The `streamFormat` in the parameters had `name` _updated_. The `streamFormat` in the parameters had `description` _updated_. The `streamFormat` in the parameters had `$ref` _updated_. The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `$ref` _updated_.
  4812. #### `Tracing`: modified event
  4813. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The parameters's `streamCompression` _removed_. The `traceFormat` in the parameters had `name` _updated_. The `traceFormat` in the parameters had `description` _updated_. The `traceFormat` in the parameters had `$ref` _updated_.
  4814. #### `Tracing`: removed type
  4815. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  4816. ## Roll protocol to r646909
  4817. ###### _2019-04-02 12:15:55_ | Diff: [9e59fdf...fb73f39](https://github.com/ChromeDevTools/devtools-protocol/compare/9e59fdf...fb73f39)
  4818. #### `Tracing`: modified command
  4819. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `description` _updated_. The `streamCompression` in the parameters had `$ref` _updated_. The `traceConfig` in the parameters had `name` _updated_. The `traceConfig` in the parameters had `$ref` _updated_. The parameters's `description` _added_. The parameters's `traceConfig` _added_.
  4820. #### `Tracing`: modified event
  4821. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The `streamCompression` in the parameters had `name` _updated_. The `streamCompression` in the parameters had `description` _updated_. The `streamCompression` in the parameters had `$ref` _updated_. The parameters's `streamCompression` _added_.
  4822. #### `Tracing`: new type
  4823. * [`Tracing.StreamFormat`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamFormat)
  4824. ## Roll protocol to r646409
  4825. ###### _2019-04-01 11:16:05_ | Diff: [87c65d3...9e59fdf](https://github.com/ChromeDevTools/devtools-protocol/compare/87c65d3...9e59fdf)
  4826. #### `Security`: modified event
  4827. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged) - The parameters's `deprecated` _added_.
  4828. #### `Security`: modified type
  4829. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus) - `deprecated` added.
  4830. ## Roll protocol to r646048
  4831. ###### _2019-03-29 18:16:06_ | Diff: [313a238...87c65d3](https://github.com/ChromeDevTools/devtools-protocol/compare/313a238...87c65d3)
  4832. #### `Runtime`: modified event
  4833. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled) - The `stackTrace` in the parameters had `description` _updated_.
  4834. ## Roll protocol to r644580
  4835. ###### _2019-03-26 16:16:03_ | Diff: [6ee35f9...b99eee8](https://github.com/ChromeDevTools/devtools-protocol/compare/6ee35f9...b99eee8)
  4836. #### `Testing`: removed domain
  4837. * [`Testing.Testing`](https://chromedevtools.github.io/devtools-protocol/tot/Testing/#domain-Testing)
  4838. ## Roll protocol to r644552
  4839. ###### _2019-03-26 15:16:08_ | Diff: [a019aca...6ee35f9](https://github.com/ChromeDevTools/devtools-protocol/compare/a019aca...6ee35f9)
  4840. #### `CacheStorage`: modified command
  4841. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries) - The `hasMore` in the return value had `name` _updated_. The `hasMore` in the return value had `description` _updated_. The `hasMore` in the return value had `type` _updated_.
  4842. ## Roll protocol to r644145
  4843. ###### _2019-03-25 19:16:08_ | Diff: [19f4d92...a019aca](https://github.com/ChromeDevTools/devtools-protocol/compare/19f4d92...a019aca)
  4844. #### `Page`: new event
  4845. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  4846. #### `Page`: modified events
  4847. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation) - `experimental` removed. `deprecated` added.
  4848. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - `experimental` removed. `deprecated` added.
  4849. #### `Page`: new type
  4850. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  4851. ## Roll protocol to r642320
  4852. ###### _2019-03-19 19:16:03_ | Diff: [5016689...19f4d92](https://github.com/ChromeDevTools/devtools-protocol/compare/5016689...19f4d92)
  4853. #### `Page`: removed event
  4854. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  4855. #### `Page`: modified events
  4856. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation) - `deprecated` removed. `experimental` added.
  4857. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - `deprecated` removed. `experimental` added.
  4858. #### `Page`: removed type
  4859. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  4860. ## Roll protocol to r642280
  4861. ###### _2019-03-19 17:16:04_ | Diff: [48c725a...5016689](https://github.com/ChromeDevTools/devtools-protocol/compare/48c725a...5016689)
  4862. #### `Page`: new event
  4863. * [`Page.frameRequestedNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameRequestedNavigation)
  4864. #### `Page`: modified events
  4865. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation) - `experimental` removed. `deprecated` added.
  4866. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - `experimental` removed. `deprecated` added.
  4867. #### `Page`: new type
  4868. * [`Page.ClientNavigationReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ClientNavigationReason)
  4869. ## Roll protocol to r641443
  4870. ###### _2019-03-16 09:16:06_ | Diff: [dffb10a...48c725a](https://github.com/ChromeDevTools/devtools-protocol/compare/dffb10a...48c725a)
  4871. #### `Debugger`: modified command
  4872. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable)
  4873. ## Roll protocol to r641075
  4874. ###### _2019-03-14 21:15:57_ | Diff: [ddaf4ff...dffb10a](https://github.com/ChromeDevTools/devtools-protocol/compare/ddaf4ff...dffb10a)
  4875. #### `IndexedDB`: new command
  4876. * [`IndexedDB.getMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getMetadata)
  4877. #### `IndexedDB`: removed command
  4878. * [`IndexedDB.getKeyGeneratorCurrentNumber`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getKeyGeneratorCurrentNumber)
  4879. ## Roll protocol to r641004
  4880. ###### _2019-03-14 17:15:56_ | Diff: [f3edfef...ddaf4ff](https://github.com/ChromeDevTools/devtools-protocol/compare/f3edfef...ddaf4ff)
  4881. #### `Overlay`: removed command
  4882. * [`Overlay.setSuspended`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setSuspended)
  4883. ## Roll protocol to r639476
  4884. ###### _2019-03-11 07:16:12_ | Diff: [a7b00e7...2d8a43c](https://github.com/ChromeDevTools/devtools-protocol/compare/a7b00e7...2d8a43c)
  4885. #### `BackgroundService`: new command
  4886. * [`BackgroundService.clearEvents`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-clearEvents)
  4887. ## Roll protocol to r639462
  4888. ###### _2019-03-11 06:16:12_ | Diff: [fbad7ab...a7b00e7](https://github.com/ChromeDevTools/devtools-protocol/compare/fbad7ab...a7b00e7)
  4889. #### `BackgroundService`: new commands
  4890. * [`BackgroundService.startObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-startObserving)
  4891. * [`BackgroundService.stopObserving`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-stopObserving)
  4892. #### `BackgroundService`: removed commands
  4893. * [`BackgroundService.enable`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-enable)
  4894. * [`BackgroundService.disable`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-disable)
  4895. #### `BackgroundService`: new event
  4896. * [`BackgroundService.backgroundServiceEventReceived`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-backgroundServiceEventReceived)
  4897. #### `BackgroundService`: new types
  4898. * [`BackgroundService.EventMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-EventMetadata)
  4899. * [`BackgroundService.BackgroundServiceEvent`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-BackgroundServiceEvent)
  4900. #### `ServiceWorker`: modified commands
  4901. * [`ServiceWorker.deliverPushMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-deliverPushMessage) - The `registrationId` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  4902. * [`ServiceWorker.dispatchSyncEvent`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-dispatchSyncEvent) - The `registrationId` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  4903. #### `ServiceWorker`: new type
  4904. * [`ServiceWorker.RegistrationID`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-RegistrationID)
  4905. #### `ServiceWorker`: modified types
  4906. * [`ServiceWorker.ServiceWorkerRegistration`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerRegistration) - The `registrationId` in the properties had `type` _removed_. The properties's `$ref` _added_.
  4907. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion) - The `registrationId` in the properties had `type` _removed_. The properties's `$ref` _added_.
  4908. * [`ServiceWorker.ServiceWorkerErrorMessage`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerErrorMessage) - The `registrationId` in the properties had `type` _removed_. The properties's `$ref` _added_.
  4909. ## Roll protocol to r639329
  4910. ###### _2019-03-08 23:15:55 -0800_ | Diff: [735cc58...fbad7ab](https://github.com/ChromeDevTools/devtools-protocol/compare/735cc58...fbad7ab)
  4911. #### `Runtime`: modified command
  4912. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties) - The `exceptionDetails` in the return value had `$ref` _removed_. The `exceptionDetails` in the return value had `name` _updated_. The `exceptionDetails` in the return value had `description` _updated_. The return value's `experimental` _added_. The return value's `type` _added_. The return value's `items` _added_. The return value's `exceptionDetails` _added_.
  4913. #### `Runtime`: new type
  4914. * [`Runtime.PrivatePropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PrivatePropertyDescriptor)
  4915. ## Roll protocol to r637291
  4916. ###### _2019-03-04 07:16:13 -0800_ | Diff: [d305be1...6f27b14](https://github.com/ChromeDevTools/devtools-protocol/compare/d305be1...6f27b14)
  4917. #### `BackgroundService`: new domain
  4918. * [`BackgroundService.BackgroundService`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#domain-BackgroundService)
  4919. #### `BackgroundService`: new commands
  4920. * [`BackgroundService.enable`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-enable)
  4921. * [`BackgroundService.disable`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-disable)
  4922. * [`BackgroundService.setRecording`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#method-setRecording)
  4923. #### `BackgroundService`: new event
  4924. * [`BackgroundService.recordingStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#event-recordingStateChanged)
  4925. #### `BackgroundService`: new type
  4926. * [`BackgroundService.ServiceName`](https://chromedevtools.github.io/devtools-protocol/tot/BackgroundService/#type-ServiceName)
  4927. ## Roll protocol to r632815
  4928. ###### _2019-02-15 15:15:52 -0800_ | Diff: [3423c2d...d0cca39](https://github.com/ChromeDevTools/devtools-protocol/compare/3423c2d...d0cca39)
  4929. #### `IndexedDB`: new command
  4930. * [`IndexedDB.getKeyGeneratorCurrentNumber`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-getKeyGeneratorCurrentNumber)
  4931. ## Roll protocol to r630203
  4932. ###### _2019-02-07 21:15:49 -0800_ | Diff: [f02e8a5...1506d25](https://github.com/ChromeDevTools/devtools-protocol/compare/f02e8a5...1506d25)
  4933. #### `Browser`: new command
  4934. * [`Browser.crashGpuProcess`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crashGpuProcess)
  4935. ## Roll protocol to r630011
  4936. ###### _2019-02-07 10:16:02 -0800_ | Diff: [2a326d4...45f4bf9](https://github.com/ChromeDevTools/devtools-protocol/compare/2a326d4...45f4bf9)
  4937. #### `CacheStorage`: modified command
  4938. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse) - The parameters's `requestHeaders` _added_.
  4939. ## Roll protocol to r628773
  4940. ###### _2019-02-04 09:15:59 -0800_ | Diff: [0af8698...e134876](https://github.com/ChromeDevTools/devtools-protocol/compare/0af8698...e134876)
  4941. #### `Emulation`: removed events
  4942. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced)
  4943. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused)
  4944. ## Roll protocol to r626433
  4945. ###### _2019-01-27 19:15:50 -0800_ | Diff: [d4274dd...0951f55](https://github.com/ChromeDevTools/devtools-protocol/compare/d4274dd...0951f55)
  4946. #### `Memory`: new command
  4947. * [`Memory.forciblyPurgeJavaScriptMemory`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-forciblyPurgeJavaScriptMemory)
  4948. ## Roll protocol to r626200
  4949. ###### _2019-01-25 13:16:05 -0800_ | Diff: [039679f...d4274dd](https://github.com/ChromeDevTools/devtools-protocol/compare/039679f...d4274dd)
  4950. #### `DOM`: modified commands
  4951. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation) - The `nodeId` in the return value had `description` _updated_.
  4952. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner) - The `nodeId` in the return value had `description` _updated_.
  4953. ## Roll protocol to r625481
  4954. ###### _2019-01-23 18:15:49 -0800_ | Diff: [130d0d8...039679f](https://github.com/ChromeDevTools/devtools-protocol/compare/130d0d8...039679f)
  4955. #### `Network`: modified type
  4956. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader) - The properties's `signatures` _removed_. The `responseCode` in the properties had `type` _removed_. The `responseHeaders` in the properties had `$ref` _removed_. The `requestMethod` in the properties had `name` _updated_. The `requestMethod` in the properties had `description` _updated_. The `requestMethod` in the properties had `type` _updated_. The `responseCode` in the properties had `name` _updated_. The `responseCode` in the properties had `description` _updated_. The `responseHeaders` in the properties had `name` _updated_. The `responseHeaders` in the properties had `description` _updated_. The properties's `$ref` _added_. The properties's `type` _added_. The properties's `items` _added_.
  4957. ## Roll protocol to r624433
  4958. ###### _2019-01-18 19:15:57 -0800_ | Diff: [fdd58cb...130d0d8](https://github.com/ChromeDevTools/devtools-protocol/compare/fdd58cb...130d0d8)
  4959. #### `Overlay`: modified command
  4960. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode) - The parameters's `selector` _added_.
  4961. #### `Overlay`: modified type
  4962. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `cssGridColor` _removed_. The `selectorList` in the properties had `type` _removed_. The `selectorList` in the properties had `name` _updated_. The `selectorList` in the properties had `description` _updated_. The properties's `$ref` _added_.
  4963. ## Roll protocol to r624373
  4964. ###### _2019-01-18 16:15:53 -0800_ | Diff: [023e7bc...fdd58cb](https://github.com/ChromeDevTools/devtools-protocol/compare/023e7bc...fdd58cb)
  4965. #### `Overlay`: new event
  4966. * [`Overlay.inspectModeCanceled`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectModeCanceled)
  4967. #### `Overlay`: modified type
  4968. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode) - The enum's `none` _updated_. The enum's `none` _added_.
  4969. ## Roll protocol to r624315
  4970. ###### _2019-01-18 14:19:35 -0800_ | Diff: [99ce0ca...974d209](https://github.com/ChromeDevTools/devtools-protocol/compare/99ce0ca...974d209)
  4971. #### `Browser`: modified type
  4972. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `idleDetection` _added_.
  4973. ## Roll protocol to r624253
  4974. ###### _2019-01-18 12:15:51 -0800_ | Diff: [c5eefe1...99ce0ca](https://github.com/ChromeDevTools/devtools-protocol/compare/c5eefe1...99ce0ca)
  4975. #### `DOM`: modified command
  4976. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode) - The parameters's `executionContextId` _added_.
  4977. ## Roll protocol to r624227
  4978. ###### _2019-01-18 11:15:48 -0800_ | Diff: [c5978d7...c5eefe1](https://github.com/ChromeDevTools/devtools-protocol/compare/c5978d7...c5eefe1)
  4979. #### `Overlay`: new command
  4980. * [`Overlay.setShowAdHighlights`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowAdHighlights)
  4981. ## Roll protocol to r623118
  4982. ###### _2019-01-15 21:15:54 -0800_ | Diff: [912ecd4...c5978d7](https://github.com/ChromeDevTools/devtools-protocol/compare/912ecd4...c5978d7)
  4983. #### `Overlay`: modified event
  4984. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested) - The `viewport` in the parameters had `description` _updated_.
  4985. #### `Page`: modified types
  4986. * [`Page.VisualViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-VisualViewport) - The properties's `zoom` _added_.
  4987. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport) - The `x` in the properties had `description` _updated_. The `y` in the properties had `description` _updated_. The `width` in the properties had `description` _updated_. The `height` in the properties had `description` _updated_.
  4988. ## Roll protocol to r622567
  4989. ###### _2019-01-14 12:15:49 -0800_ | Diff: [53050a0...44c8bde](https://github.com/ChromeDevTools/devtools-protocol/compare/53050a0...44c8bde)
  4990. #### `CSS`: modified command
  4991. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - The return value's `computedBodyFontSize` _removed_.
  4992. ## Roll protocol to r621639
  4993. ###### _2019-01-10 10:16:08 -0800_ | Diff: [d7e10c3...53050a0](https://github.com/ChromeDevTools/devtools-protocol/compare/d7e10c3...53050a0)
  4994. #### `IndexedDB`: modified type
  4995. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores) - The `version` in the properties had `description` _updated_. The `version` in the properties had `type` _updated_.
  4996. ## Roll protocol to r621424
  4997. ###### _2019-01-09 18:15:57 -0800_ | Diff: [ea1122f...d7e10c3](https://github.com/ChromeDevTools/devtools-protocol/compare/ea1122f...d7e10c3)
  4998. #### `Overlay`: modified type
  4999. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The `showRulers` in the properties had `name` _updated_. The `showRulers` in the properties had `description` _updated_. The `showExtensionLines` in the properties had `name` _updated_. The `showExtensionLines` in the properties had `description` _updated_. The `displayAsMaterial` in the properties had `name` _updated_. The properties's `description` _added_.
  5000. ## Roll protocol to r621026
  5001. ###### _2019-01-08 19:15:50 -0800_ | Diff: [727df12...ea1122f](https://github.com/ChromeDevTools/devtools-protocol/compare/727df12...ea1122f)
  5002. #### `Cast`: new domain
  5003. * [`Cast.Cast`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#domain-Cast)
  5004. #### `Cast`: new commands
  5005. * [`Cast.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-enable)
  5006. * [`Cast.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-disable)
  5007. * [`Cast.setSinkToUse`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-setSinkToUse)
  5008. * [`Cast.startTabMirroring`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-startTabMirroring)
  5009. * [`Cast.stopCasting`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#method-stopCasting)
  5010. #### `Cast`: new events
  5011. * [`Cast.sinksUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-sinksUpdated)
  5012. * [`Cast.issueUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Cast/#event-issueUpdated)
  5013. #### `Page`: removed command
  5014. * [`Page.requestAppBanner`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-requestAppBanner)
  5015. ## Roll protocol to r619731
  5016. ###### _2019-01-03 12:15:54 -0800_ | Diff: [9ef310e...727df12](https://github.com/ChromeDevTools/devtools-protocol/compare/9ef310e...727df12)
  5017. #### `Accessibility`: modified type
  5018. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName) - `description` updated.
  5019. #### `Storage`: modified command
  5020. * [`Storage.clearDataForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin) - The `storageTypes` in the parameters had `description` _updated_.
  5021. ## Roll protocol to r619477
  5022. ###### _2019-01-02 12:16:22 -0800_ | Diff: [a254142...9ef310e](https://github.com/ChromeDevTools/devtools-protocol/compare/a254142...9ef310e)
  5023. #### `Input`: modified command
  5024. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The parameters's `pointerType` _added_.
  5025. ## Roll protocol to r616947
  5026. ###### _2018-12-14 20:15:49 -0800_ | Diff: [cae0bbe...d229bf4](https://github.com/ChromeDevTools/devtools-protocol/compare/cae0bbe...d229bf4)
  5027. #### `DOM`: new command
  5028. * [`DOM.getFileInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFileInfo)
  5029. ## Roll protocol to r616936
  5030. ###### _2018-12-14 19:15:51 -0800_ | Diff: [0fb03aa...cae0bbe](https://github.com/ChromeDevTools/devtools-protocol/compare/0fb03aa...cae0bbe)
  5031. #### `Page`: new command
  5032. * [`Page.resetNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-resetNavigationHistory)
  5033. ## Roll protocol to r616803
  5034. ###### _2018-12-14 12:15:57 -0800_ | Diff: [41590b0...0fb03aa](https://github.com/ChromeDevTools/devtools-protocol/compare/41590b0...0fb03aa)
  5035. #### `Network`: modified type
  5036. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame) - The `payloadData` in the properties had `description` _updated_.
  5037. ## Roll protocol to r616542
  5038. ###### _2018-12-13 17:16:20 -0800_ | Diff: [7fa0f03...14070df](https://github.com/ChromeDevTools/devtools-protocol/compare/7fa0f03...14070df)
  5039. #### `Page`: new command
  5040. * [`Page.waitForDebugger`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-waitForDebugger)
  5041. ## Roll protocol to r616451
  5042. ###### _2018-12-13 14:15:51 -0800_ | Diff: [4e2e581...7fa0f03](https://github.com/ChromeDevTools/devtools-protocol/compare/4e2e581...7fa0f03)
  5043. #### `Input`: modified command
  5044. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `clickCount` in the parameters had `name` _updated_. The `clickCount` in the parameters had `description` _updated_. The `deltaX` in the parameters had `name` _updated_. The `deltaX` in the parameters had `description` _updated_. The `deltaX` in the parameters had `type` _updated_. The `deltaY` in the parameters had `name` _updated_. The `deltaY` in the parameters had `description` _updated_. The `5` in the parameters had `back` _added_. The `5` in the parameters had `forward` _added_. The parameters's `deltaY` _added_.
  5045. ## Roll protocol to r613210
  5046. ###### _2018-12-03 12:15:55 -0800_ | Diff: [65909c1...2135225](https://github.com/ChromeDevTools/devtools-protocol/compare/65909c1...2135225)
  5047. #### `CacheStorage`: modified commands
  5048. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse) - The `cacheId` in the parameters had `description` _updated_.
  5049. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries) - The parameters's `pathFilter` _added_.
  5050. ## Roll protocol to r613054
  5051. ###### _2018-12-03 04:15:51 -0800_ | Diff: [d0e8e30...65909c1](https://github.com/ChromeDevTools/devtools-protocol/compare/d0e8e30...65909c1)
  5052. #### `Debugger`: removed command
  5053. * [`Debugger.scheduleStepIntoAsync`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-scheduleStepIntoAsync)
  5054. ## Roll protocol to r612784 608637
  5055. ###### _2018-11-30 13:15:53 -0800_ | Diff: [cffb4e1...6fd74c5](https://github.com/ChromeDevTools/devtools-protocol/compare/cffb4e1...6fd74c5)
  5056. #### `Network`: modified events
  5057. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError) - `description` updated. The `errorMessage` in the parameters had `description` _updated_.
  5058. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived) - `description` updated.
  5059. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent) - `description` updated.
  5060. #### `Network`: modified type
  5061. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame) - `description` updated. The `opcode` in the properties had `description` _updated_. The `mask` in the properties had `description` _updated_. The `payloadData` in the properties had `description` _updated_.
  5062. ## Roll protocol to r610712
  5063. ###### _2018-11-24 14:15:45 -0800_ | Diff: [34cbbf0...0df7169](https://github.com/ChromeDevTools/devtools-protocol/compare/34cbbf0...0df7169)
  5064. #### `Network`: modified command
  5065. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData) - The `postData` in the return value had `description` _updated_.
  5066. ## Roll protocol to r608591
  5067. ###### _2018-11-15 16:15:59 -0800_ | Diff: [7d7cac5...0e63cc2](https://github.com/ChromeDevTools/devtools-protocol/compare/7d7cac5...0e63cc2)
  5068. #### `Browser`: new command
  5069. * [`Browser.setDockTile`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDockTile)
  5070. ## Roll protocol to r607825
  5071. ###### _2018-11-13 16:15:58 -0800_ | Diff: [be3e054...7d7cac5](https://github.com/ChromeDevTools/devtools-protocol/compare/be3e054...7d7cac5)
  5072. #### `Browser`: modified command
  5073. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget) - The `targetId` in the parameters had `description` _updated_. The parameters's `optional` _added_.
  5074. ## Roll protocol to r607463
  5075. ###### _2018-11-12 19:15:59 -0800_ | Diff: [2a3f184...87a8e2e](https://github.com/ChromeDevTools/devtools-protocol/compare/2a3f184...87a8e2e)
  5076. #### `Overlay`: new command
  5077. * [`Overlay.setShowHitTestBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowHitTestBorders)
  5078. ## Roll protocol to r606267
  5079. ###### _2018-11-07 17:15:52 -0800_ | Diff: [617d045...6503624](https://github.com/ChromeDevTools/devtools-protocol/compare/617d045...6503624)
  5080. #### `Page`: new command
  5081. * [`Page.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureSnapshot)
  5082. ## Roll protocol to r604763
  5083. ###### _2018-11-01 17:15:48_ | Diff: [717008e...2beb582](https://github.com/ChromeDevTools/devtools-protocol/compare/717008e...2beb582)
  5084. #### `SystemInfo`: removed type
  5085. * [`SystemInfo.ProcessType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessType)
  5086. #### `SystemInfo`: modified type
  5087. * [`SystemInfo.ProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessInfo) - The `type` in the properties had `$ref` _removed_. The properties's `type` _added_.
  5088. ## Roll protocol to r604639
  5089. ###### _2018-11-01 11:15:50_ | Diff: [fe05597...717008e](https://github.com/ChromeDevTools/devtools-protocol/compare/fe05597...717008e)
  5090. #### `Runtime`: modified type
  5091. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `1` in the properties had `arraybuffer` _added_. The `1` in the properties had `dataview` _added_.
  5092. ## Roll protocol to r604358
  5093. ###### _2018-10-31 12:15:51_ | Diff: [9801545...fe05597](https://github.com/ChromeDevTools/devtools-protocol/compare/9801545...fe05597)
  5094. #### `Fetch`: new domain
  5095. * [`Fetch.Fetch`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#domain-Fetch)
  5096. #### `Fetch`: new commands
  5097. * [`Fetch.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-disable)
  5098. * [`Fetch.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-enable)
  5099. * [`Fetch.failRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-failRequest)
  5100. * [`Fetch.fulfillRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-fulfillRequest)
  5101. * [`Fetch.continueRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueRequest)
  5102. * [`Fetch.continueWithAuth`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-continueWithAuth)
  5103. * [`Fetch.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-getResponseBody)
  5104. * [`Fetch.takeResponseBodyAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#method-takeResponseBodyAsStream)
  5105. #### `Fetch`: new events
  5106. * [`Fetch.requestPaused`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-requestPaused)
  5107. * [`Fetch.authRequired`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#event-authRequired)
  5108. #### `Fetch`: new types
  5109. * [`Fetch.RequestId`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestId)
  5110. * [`Fetch.RequestStage`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestStage)
  5111. * [`Fetch.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-RequestPattern)
  5112. * [`Fetch.HeaderEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-HeaderEntry)
  5113. * [`Fetch.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallenge)
  5114. * [`Fetch.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Fetch/#type-AuthChallengeResponse)
  5115. ## Roll protocol to r604014
  5116. ###### _2018-10-30 14:15:48_ | Diff: [0170df0...9801545](https://github.com/ChromeDevTools/devtools-protocol/compare/0170df0...9801545)
  5117. #### `SystemInfo`: new command
  5118. * [`SystemInfo.getProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getProcessInfo)
  5119. #### `SystemInfo`: new types
  5120. * [`SystemInfo.ProcessType`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessType)
  5121. * [`SystemInfo.ProcessInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-ProcessInfo)
  5122. ## Roll protocol to r603097
  5123. ###### _2018-10-26 08:16:21_ | Diff: [bf71ff9...1bfc9c2](https://github.com/ChromeDevTools/devtools-protocol/compare/bf71ff9...1bfc9c2)
  5124. #### `CacheStorage`: new type
  5125. * [`CacheStorage.CachedResponseType`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponseType)
  5126. #### `CacheStorage`: modified type
  5127. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `responseHeaders` in the properties had `type` _removed_. The `responseHeaders` in the properties had `items` _removed_. The `responseHeaders` in the properties had `name` _updated_. The `responseHeaders` in the properties had `description` _updated_. The properties's `$ref` _added_. The properties's `responseHeaders` _added_.
  5128. ## Roll protocol to r602583
  5129. ###### _2018-10-24 19:16:02_ | Diff: [928efbe...bf71ff9](https://github.com/ChromeDevTools/devtools-protocol/compare/928efbe...bf71ff9)
  5130. #### `Security`: modified type
  5131. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The properties's `recommendations` _added_.
  5132. ## Roll protocol to r601846
  5133. ###### _2018-10-22 21:15:58_ | Diff: [2e4077a...f25bb99](https://github.com/ChromeDevTools/devtools-protocol/compare/2e4077a...f25bb99)
  5134. #### `HeapProfiler`: new type
  5135. * [`HeapProfiler.SamplingHeapProfileSample`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileSample)
  5136. #### `HeapProfiler`: modified types
  5137. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode) - The `children` in the properties had `items` _removed_. The `children` in the properties had `name` _updated_. The `children` in the properties had `description` _updated_. The `children` in the properties had `type` _updated_. The properties's `children` _added_.
  5138. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile) - `description` updated. The properties's `samples` _added_.
  5139. ## Roll protocol to r601839
  5140. ###### _2018-10-22 20:15:59_ | Diff: [0d63470...2e4077a](https://github.com/ChromeDevTools/devtools-protocol/compare/0d63470...2e4077a)
  5141. #### `Runtime`: modified type
  5142. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview) - The properties's `formatterObjectId` _removed_. The properties's `bindRemoteObjectFunctionId` _removed_. The properties's `configObjectId` _removed_. The `hasBody` in the properties had `type` _removed_. The `hasBody` in the properties had `name` _updated_. The properties's `description` _added_ (2 times). The properties's `optional` _added_. The properties's `$ref` _added_.
  5143. ## Roll protocol to r599863
  5144. ###### _2018-10-15 22:16:05_ | Diff: [584d0c5...0d63470](https://github.com/ChromeDevTools/devtools-protocol/compare/584d0c5...0d63470)
  5145. #### `Accessibility`: new commands
  5146. * [`Accessibility.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-disable)
  5147. * [`Accessibility.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-enable)
  5148. ## Roll protocol to r599771
  5149. ###### _2018-10-15 16:16:09_ | Diff: [3ad8e30...584d0c5](https://github.com/ChromeDevTools/devtools-protocol/compare/3ad8e30...584d0c5)
  5150. #### `Accessibility`: modified type
  5151. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName) - The enum's `hidden` _updated_. The enum's `hiddenRoot` _updated_. The enum's `invalid` _updated_. The enum's `keyshortcuts` _updated_. The enum's `roledescription` _updated_. The enum's `live` _updated_. The enum's `atomic` _updated_. The enum's `relevant` _updated_. The enum's `root` _updated_. The enum's `autocomplete` _updated_. The enum's `hasPopup` _updated_. The enum's `level` _updated_. The enum's `multiselectable` _updated_. The enum's `orientation` _updated_. The enum's `multiline` _updated_. The enum's `readonly` _updated_. The enum's `required` _updated_. The enum's `valuemin` _updated_. The enum's `valuemax` _updated_. The enum's `valuetext` _updated_. The enum's `checked` _updated_. The enum's `expanded` _updated_. The enum's `modal` _updated_. The enum's `pressed` _updated_. The enum's `selected` _updated_. The enum's `activedescendant` _updated_. The enum's `controls` _updated_. The enum's `describedby` _updated_. The enum's `details` _updated_. The enum's `errormessage` _updated_. The enum's `flowto` _updated_. The enum's `labelledby` _updated_. The enum's `owns` _updated_. The enum's `errormessage` _added_. The enum's `flowto` _added_. The enum's `labelledby` _added_. The enum's `owns` _added_.
  5152. ## Roll protocol to r599293
  5153. ###### _2018-10-12 11:16:15_ | Diff: [5efd10a...3ad8e30](https://github.com/ChromeDevTools/devtools-protocol/compare/5efd10a...3ad8e30)
  5154. #### `Browser`: modified type
  5155. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType) - The enum's `clipboardRead` _updated_. The enum's `clipboardWrite` _updated_. The enum's `durableStorage` _updated_. The enum's `flash` _updated_. The enum's `geolocation` _updated_. The enum's `midi` _updated_. The enum's `midiSysex` _updated_. The enum's `notifications` _updated_. The enum's `paymentHandler` _updated_. The enum's `protectedMediaIdentifier` _updated_. The enum's `sensors` _updated_. The enum's `videoCapture` _updated_. The enum's `videoCapture` _added_.
  5156. ## Roll protocol to r597746
  5157. ###### _2018-10-08 17:16:03_ | Diff: [32f4ced...5efd10a](https://github.com/ChromeDevTools/devtools-protocol/compare/32f4ced...5efd10a)
  5158. #### `DOM`: modified command
  5159. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner) - The `nodeId` in the return value had `name` _updated_. The `nodeId` in the return value had `$ref` _updated_. The return value's `description` _added_. The return value's `nodeId` _added_.
  5160. ## Roll protocol to r596435
  5161. ###### _2018-10-03 17:15:54_ | Diff: [7ad2b35...32f4ced](https://github.com/ChromeDevTools/devtools-protocol/compare/7ad2b35...32f4ced)
  5162. #### `DOM`: modified command
  5163. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation) - `description` updated. The `nodeId` in the return value had `name` _updated_. The `nodeId` in the return value had `description` _updated_. The `nodeId` in the return value had `$ref` _updated_. The return value's `nodeId` _added_.
  5164. ## Roll protocol to r595262
  5165. ###### _2018-09-28 17:16:08_ | Diff: [7d4e024...7ad2b35](https://github.com/ChromeDevTools/devtools-protocol/compare/7d4e024...7ad2b35)
  5166. #### `Performance`: new command
  5167. * [`Performance.setTimeDomain`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-setTimeDomain)
  5168. ## Roll protocol to r594552
  5169. ###### _2018-09-26 18:16:07_ | Diff: [4b269f4...7d4e024](https://github.com/ChromeDevTools/devtools-protocol/compare/4b269f4...7d4e024)
  5170. #### `Page`: modified command
  5171. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - The parameters's `worldName` _added_.
  5172. ## Roll protocol to r594206
  5173. ###### _2018-09-25 20:15:47_ | Diff: [4cc8f92...4b269f4](https://github.com/ChromeDevTools/devtools-protocol/compare/4cc8f92...4b269f4)
  5174. #### `Page`: modified command
  5175. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - The parameters's `worldName` _removed_.
  5176. ## Roll protocol to r594172
  5177. ###### _2018-09-25 18:15:50_ | Diff: [b797679...4cc8f92](https://github.com/ChromeDevTools/devtools-protocol/compare/b797679...4cc8f92)
  5178. #### `Page`: modified command
  5179. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - The parameters's `worldName` _added_.
  5180. ## Roll protocol to r592922
  5181. ###### _2018-09-20 13:19:12_ | Diff: [171867f...b797679](https://github.com/ChromeDevTools/devtools-protocol/compare/171867f...b797679)
  5182. #### `Accessibility`: new command
  5183. * [`Accessibility.getFullAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getFullAXTree)
  5184. ## Roll protocol to r590503
  5185. ###### _2018-09-11 15:17:02_ | Diff: [fd5476b...171867f](https://github.com/ChromeDevTools/devtools-protocol/compare/fd5476b...171867f)
  5186. #### `Emulation`: new command
  5187. * [`Emulation.setFocusEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setFocusEmulationEnabled)
  5188. ## Roll protocol to r589586
  5189. ###### _2018-09-07 11:22:54_ | Diff: [59c4dec...fd5476b](https://github.com/ChromeDevTools/devtools-protocol/compare/59c4dec...fd5476b)
  5190. #### `Network`: modified events
  5191. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed) - The `type` in the parameters had `$ref` _updated_.
  5192. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `resourceType` in the parameters had `$ref` _updated_.
  5193. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `type` in the parameters had `$ref` _updated_.
  5194. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `type` in the parameters had `$ref` _updated_.
  5195. #### `Network`: new type
  5196. * [`Network.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceType)
  5197. #### `Network`: modified types
  5198. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource) - The `type` in the properties had `$ref` _updated_.
  5199. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The `resourceType` in the properties had `$ref` _updated_.
  5200. #### `Page`: removed type
  5201. * [`Page.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ResourceType)
  5202. #### `Page`: modified type
  5203. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource) - The `type` in the properties had `$ref` _updated_.
  5204. ## Roll protocol to r588752
  5205. ###### _2018-09-04 20:15:55_ | Diff: [359d29d...59c4dec](https://github.com/ChromeDevTools/devtools-protocol/compare/359d29d...59c4dec)
  5206. #### `DOMSnapshot`: modified types
  5207. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `scrollOffsetX` _added_. The properties's `scrollOffsetY` _added_.
  5208. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - The `boundingBox` in the properties had `description` _updated_.
  5209. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The `boundingBox` in the properties had `description` _updated_.
  5210. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The properties's `scrollOffsetX` _added_. The properties's `scrollOffsetY` _added_.
  5211. ## Roll protocol to r588740
  5212. ###### _2018-09-04 19:16:30_ | Diff: [cb9aed5...359d29d](https://github.com/ChromeDevTools/devtools-protocol/compare/cb9aed5...359d29d)
  5213. #### `Browser`: new command
  5214. * [`Browser.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-crash)
  5215. #### `Page`: modified type
  5216. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType) - The enum's `auto_bookmark` _updated_. The enum's `auto_subframe` _updated_. The enum's `manual_subframe` _updated_. The enum's `generated` _updated_. The enum's `auto_toplevel` _updated_. The enum's `form_submit` _updated_. The enum's `reload` _updated_. The enum's `keyword` _updated_. The enum's `keyword_generated` _updated_. The enum's `other` _updated_. The enum's `other` _added_.
  5217. ## Roll protocol to r588169
  5218. ###### _2018-08-31 14:15:50_ | Diff: [93338d7...352bea4](https://github.com/ChromeDevTools/devtools-protocol/compare/93338d7...352bea4)
  5219. #### `Console`: modified event
  5220. * [`Console.messageAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#event-messageAdded) - The `message` in the parameters had `type` _removed_.
  5221. #### `Debugger`: modified commands
  5222. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation) - The `location` in the parameters had `type` _removed_.
  5223. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable) - The `debuggerId` in the return value had `type` _removed_.
  5224. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The `callFrameId` in the parameters had `type` _removed_. The `timeout` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5225. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - The `start` in the parameters had `type` _removed_. The `end` in the parameters had `type` _removed_. The `locations` in the return value had `type` _removed_.
  5226. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource) - The `scriptId` in the parameters had `type` _removed_.
  5227. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace) - The `stackTraceId` in the parameters had `type` _removed_. The `stackTrace` in the return value had `type` _removed_.
  5228. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall) - The `parentStackTraceId` in the parameters had `type` _removed_.
  5229. * [`Debugger.removeBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-removeBreakpoint) - The `breakpointId` in the parameters had `type` _removed_.
  5230. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame) - The `callFrameId` in the parameters had `type` _removed_. The `callFrames` in the return value had `type` _removed_. The `asyncStackTrace` in the return value had `type` _removed_. The `asyncStackTraceId` in the return value had `type` _removed_.
  5231. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent) - The `scriptId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_.
  5232. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges) - The `scriptId` in the parameters had `type` _removed_. The `positions` in the parameters had `type` _removed_.
  5233. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint) - The `location` in the parameters had `type` _removed_. The `breakpointId` in the return value had `type` _removed_. The `actualLocation` in the return value had `type` _removed_.
  5234. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - The `breakpointId` in the return value had `type` _removed_. The `locations` in the return value had `type` _removed_.
  5235. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall) - The `objectId` in the parameters had `type` _removed_. The `breakpointId` in the return value had `type` _removed_.
  5236. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue) - The `newValue` in the parameters had `type` _removed_.
  5237. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource) - The `scriptId` in the parameters had `type` _removed_. The `callFrames` in the return value had `type` _removed_. The `asyncStackTrace` in the return value had `type` _removed_. The `asyncStackTraceId` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5238. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue) - The `newValue` in the parameters had `type` _removed_. The `callFrameId` in the parameters had `type` _removed_.
  5239. #### `Debugger`: modified events
  5240. * [`Debugger.breakpointResolved`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-breakpointResolved) - The `breakpointId` in the parameters had `type` _removed_. The `location` in the parameters had `type` _removed_.
  5241. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `callFrames` in the parameters had `type` _removed_. The `asyncStackTrace` in the parameters had `type` _removed_. The `asyncStackTraceId` in the parameters had `type` _removed_. The `asyncCallStackTraceId` in the parameters had `type` _removed_.
  5242. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse) - The `scriptId` in the parameters had `type` _removed_. The `executionContextId` in the parameters had `type` _removed_. The `stackTrace` in the parameters had `type` _removed_.
  5243. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The `scriptId` in the parameters had `type` _removed_. The `executionContextId` in the parameters had `type` _removed_. The `stackTrace` in the parameters had `type` _removed_.
  5244. #### `Debugger`: modified types
  5245. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location) - The `scriptId` in the properties had `type` _removed_.
  5246. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame) - The `callFrameId` in the properties had `type` _removed_. The `functionLocation` in the properties had `type` _removed_. The `location` in the properties had `type` _removed_. The `scopeChain` in the properties had `type` _removed_. The `this` in the properties had `type` _removed_. The `returnValue` in the properties had `type` _removed_.
  5247. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope) - The `object` in the properties had `type` _removed_. The `startLocation` in the properties had `type` _removed_. The `endLocation` in the properties had `type` _removed_.
  5248. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation) - The `scriptId` in the properties had `type` _removed_.
  5249. #### `HeapProfiler`: modified commands
  5250. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject) - The `heapObjectId` in the parameters had `type` _removed_.
  5251. * [`HeapProfiler.getHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getHeapObjectId) - The `objectId` in the parameters had `type` _removed_. The `heapSnapshotObjectId` in the return value had `type` _removed_.
  5252. * [`HeapProfiler.getObjectByHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getObjectByHeapObjectId) - The `objectId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_.
  5253. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile) - The `profile` in the return value had `type` _removed_.
  5254. * [`HeapProfiler.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopSampling) - The `profile` in the return value had `type` _removed_.
  5255. #### `HeapProfiler`: modified types
  5256. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode) - The `callFrame` in the properties had `type` _removed_. The `children` in the properties had `type` _removed_.
  5257. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile) - The `head` in the properties had `type` _removed_.
  5258. #### `Profiler`: modified commands
  5259. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage) - The `result` in the return value had `type` _removed_.
  5260. * [`Profiler.stop`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stop) - The `profile` in the return value had `type` _removed_.
  5261. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - The `result` in the return value had `type` _removed_.
  5262. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile) - The `result` in the return value had `type` _removed_.
  5263. #### `Profiler`: modified events
  5264. * [`Profiler.consoleProfileFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileFinished) - The `location` in the parameters had `type` _removed_. The `profile` in the parameters had `type` _removed_.
  5265. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted) - The `location` in the parameters had `type` _removed_.
  5266. #### `Profiler`: modified types
  5267. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode) - The `callFrame` in the properties had `type` _removed_. The `positionTicks` in the properties had `type` _removed_.
  5268. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile) - The `nodes` in the properties had `type` _removed_.
  5269. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage) - The `ranges` in the properties had `type` _removed_.
  5270. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage) - The `scriptId` in the properties had `type` _removed_. The `functions` in the properties had `type` _removed_.
  5271. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry) - The `types` in the properties had `type` _removed_.
  5272. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile) - The `scriptId` in the properties had `type` _removed_. The `entries` in the properties had `type` _removed_.
  5273. #### `Runtime`: modified commands
  5274. * [`Runtime.awaitPromise`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise) - The `promiseObjectId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5275. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `objectId` in the parameters had `type` _removed_. The `arguments` in the parameters had `type` _removed_. The `executionContextId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5276. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript) - The `executionContextId` in the parameters had `type` _removed_. The `scriptId` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5277. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `contextId` in the parameters had `type` _removed_. The `timeout` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5278. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties) - The `objectId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `internalProperties` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5279. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames) - The `executionContextId` in the parameters had `type` _removed_.
  5280. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects) - The `prototypeObjectId` in the parameters had `type` _removed_. The `objects` in the return value had `type` _removed_.
  5281. * [`Runtime.releaseObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject) - The `objectId` in the parameters had `type` _removed_.
  5282. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript) - The `scriptId` in the parameters had `type` _removed_. The `executionContextId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_. The `exceptionDetails` in the return value had `type` _removed_.
  5283. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding) - The `executionContextId` in the parameters had `type` _removed_.
  5284. #### `Runtime`: modified events
  5285. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled) - The `executionContextId` in the parameters had `type` _removed_.
  5286. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled) - The `args` in the parameters had `type` _removed_. The `executionContextId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `stackTrace` in the parameters had `type` _removed_.
  5287. * [`Runtime.exceptionThrown`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionThrown) - The `timestamp` in the parameters had `type` _removed_. The `exceptionDetails` in the parameters had `type` _removed_.
  5288. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated) - The `context` in the parameters had `type` _removed_.
  5289. * [`Runtime.executionContextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextDestroyed) - The `executionContextId` in the parameters had `type` _removed_.
  5290. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested) - The `object` in the parameters had `type` _removed_.
  5291. #### `Runtime`: modified types
  5292. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `unserializableValue` in the properties had `type` _removed_. The `objectId` in the properties had `type` _removed_. The `preview` in the properties had `type` _removed_. The `customPreview` in the properties had `type` _removed_.
  5293. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview) - The `formatterObjectId` in the properties had `type` _removed_. The `bindRemoteObjectFunctionId` in the properties had `type` _removed_. The `configObjectId` in the properties had `type` _removed_.
  5294. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview) - The `properties` in the properties had `type` _removed_. The `entries` in the properties had `type` _removed_.
  5295. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview) - The `valuePreview` in the properties had `type` _removed_.
  5296. * [`Runtime.EntryPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview) - The `key` in the properties had `type` _removed_. The `value` in the properties had `type` _removed_.
  5297. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor) - The `value` in the properties had `type` _removed_. The `get` in the properties had `type` _removed_. The `set` in the properties had `type` _removed_. The `symbol` in the properties had `type` _removed_.
  5298. * [`Runtime.InternalPropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor) - The `value` in the properties had `type` _removed_.
  5299. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - The `unserializableValue` in the properties had `type` _removed_. The `objectId` in the properties had `type` _removed_.
  5300. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription) - The `id` in the properties had `type` _removed_.
  5301. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails) - The `scriptId` in the properties had `type` _removed_. The `stackTrace` in the properties had `type` _removed_. The `exception` in the properties had `type` _removed_. The `executionContextId` in the properties had `type` _removed_.
  5302. * [`Runtime.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame) - The `scriptId` in the properties had `type` _removed_.
  5303. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace) - The `callFrames` in the properties had `type` _removed_. The `parent` in the properties had `type` _removed_. The `parentId` in the properties had `type` _removed_.
  5304. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId) - The `debuggerId` in the properties had `type` _removed_.
  5305. #### `Schema`: modified command
  5306. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains) - The `domains` in the return value had `type` _removed_.
  5307. #### `Accessibility`: modified command
  5308. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_. The `nodes` in the return value had `type` _removed_.
  5309. #### `Accessibility`: modified types
  5310. * [`Accessibility.AXValueSource`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSource) - The `type` in the properties had `type` _removed_. The `value` in the properties had `type` _removed_. The `attributeValue` in the properties had `type` _removed_. The `nativeSource` in the properties had `type` _removed_. The `nativeSourceValue` in the properties had `type` _removed_.
  5311. * [`Accessibility.AXRelatedNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelatedNode) - The `backendDOMNodeId` in the properties had `type` _removed_.
  5312. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty) - The `name` in the properties had `type` _removed_. The `value` in the properties had `type` _removed_.
  5313. * [`Accessibility.AXValue`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValue) - The `type` in the properties had `type` _removed_. The `relatedNodes` in the properties had `type` _removed_. The `sources` in the properties had `type` _removed_.
  5314. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode) - The `nodeId` in the properties had `type` _removed_. The `ignoredReasons` in the properties had `type` _removed_. The `role` in the properties had `type` _removed_. The `name` in the properties had `type` _removed_. The `description` in the properties had `type` _removed_. The `value` in the properties had `type` _removed_. The `properties` in the properties had `type` _removed_. The `childIds` in the properties had `type` _removed_. The `backendDOMNodeId` in the properties had `type` _removed_.
  5315. #### `Animation`: modified command
  5316. * [`Animation.resolveAnimation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-resolveAnimation) - The `remoteObject` in the return value had `type` _removed_.
  5317. #### `Animation`: modified event
  5318. * [`Animation.animationStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationStarted) - The `animation` in the parameters had `type` _removed_.
  5319. #### `Animation`: modified types
  5320. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - The `source` in the properties had `type` _removed_.
  5321. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect) - The `backendNodeId` in the properties had `type` _removed_. The `keyframesRule` in the properties had `type` _removed_.
  5322. * [`Animation.KeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframesRule) - The `keyframes` in the properties had `type` _removed_.
  5323. #### `ApplicationCache`: modified commands
  5324. * [`ApplicationCache.getApplicationCacheForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getApplicationCacheForFrame) - The `frameId` in the parameters had `type` _removed_. The `applicationCache` in the return value had `type` _removed_.
  5325. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests) - The `frameIds` in the return value had `type` _removed_.
  5326. * [`ApplicationCache.getManifestForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getManifestForFrame) - The `frameId` in the parameters had `type` _removed_.
  5327. #### `ApplicationCache`: modified event
  5328. * [`ApplicationCache.applicationCacheStatusUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-applicationCacheStatusUpdated) - The `frameId` in the parameters had `type` _removed_.
  5329. #### `ApplicationCache`: modified types
  5330. * [`ApplicationCache.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCache) - The `resources` in the properties had `type` _removed_.
  5331. * [`ApplicationCache.FrameWithManifest`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-FrameWithManifest) - The `frameId` in the properties had `type` _removed_.
  5332. #### `Audits`: modified command
  5333. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse) - The `requestId` in the parameters had `type` _removed_.
  5334. #### `Browser`: modified commands
  5335. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions) - The `permissions` in the parameters had `type` _removed_. The `browserContextId` in the parameters had `type` _removed_.
  5336. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions) - The `browserContextId` in the parameters had `type` _removed_.
  5337. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms) - The `histograms` in the return value had `type` _removed_.
  5338. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram) - The `histogram` in the return value had `type` _removed_.
  5339. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds) - The `windowId` in the parameters had `type` _removed_. The `bounds` in the return value had `type` _removed_.
  5340. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget) - The `targetId` in the parameters had `type` _removed_. The `windowId` in the return value had `type` _removed_. The `bounds` in the return value had `type` _removed_.
  5341. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds) - The `windowId` in the parameters had `type` _removed_. The `bounds` in the parameters had `type` _removed_.
  5342. #### `Browser`: modified types
  5343. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds) - The `windowState` in the properties had `type` _removed_.
  5344. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram) - The `buckets` in the properties had `type` _removed_.
  5345. #### `CSS`: modified commands
  5346. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule) - The `styleSheetId` in the parameters had `type` _removed_. The `location` in the parameters had `type` _removed_. The `rule` in the return value had `type` _removed_.
  5347. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames) - The `styleSheetId` in the parameters had `type` _removed_.
  5348. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet) - The `frameId` in the parameters had `type` _removed_. The `styleSheetId` in the return value had `type` _removed_.
  5349. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState) - The `nodeId` in the parameters had `type` _removed_.
  5350. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - The `nodeId` in the parameters had `type` _removed_.
  5351. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode) - The `nodeId` in the parameters had `type` _removed_. The `computedStyle` in the return value had `type` _removed_.
  5352. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode) - The `nodeId` in the parameters had `type` _removed_. The `inlineStyle` in the return value had `type` _removed_. The `attributesStyle` in the return value had `type` _removed_.
  5353. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode) - The `nodeId` in the parameters had `type` _removed_. The `inlineStyle` in the return value had `type` _removed_. The `attributesStyle` in the return value had `type` _removed_. The `matchedCSSRules` in the return value had `type` _removed_. The `pseudoElements` in the return value had `type` _removed_. The `inherited` in the return value had `type` _removed_. The `cssKeyframesRules` in the return value had `type` _removed_.
  5354. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries) - The `medias` in the return value had `type` _removed_.
  5355. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode) - The `nodeId` in the parameters had `type` _removed_. The `fonts` in the return value had `type` _removed_.
  5356. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText) - The `styleSheetId` in the parameters had `type` _removed_.
  5357. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode) - The `nodeId` in the parameters had `type` _removed_.
  5358. * [`CSS.setKeyframeKey`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey) - The `styleSheetId` in the parameters had `type` _removed_. The `range` in the parameters had `type` _removed_. The `keyText` in the return value had `type` _removed_.
  5359. * [`CSS.setMediaText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText) - The `styleSheetId` in the parameters had `type` _removed_. The `range` in the parameters had `type` _removed_. The `media` in the return value had `type` _removed_.
  5360. * [`CSS.setRuleSelector`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector) - The `styleSheetId` in the parameters had `type` _removed_. The `range` in the parameters had `type` _removed_. The `selectorList` in the return value had `type` _removed_.
  5361. * [`CSS.setStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText) - The `styleSheetId` in the parameters had `type` _removed_.
  5362. * [`CSS.setStyleTexts`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts) - The `edits` in the parameters had `type` _removed_. The `styles` in the return value had `type` _removed_.
  5363. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking) - The `ruleUsage` in the return value had `type` _removed_.
  5364. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta) - The `coverage` in the return value had `type` _removed_.
  5365. #### `CSS`: modified events
  5366. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated) - The `font` in the parameters had `type` _removed_.
  5367. * [`CSS.styleSheetAdded`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetAdded) - The `header` in the parameters had `type` _removed_.
  5368. * [`CSS.styleSheetChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetChanged) - The `styleSheetId` in the parameters had `type` _removed_.
  5369. * [`CSS.styleSheetRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetRemoved) - The `styleSheetId` in the parameters had `type` _removed_.
  5370. #### `CSS`: modified types
  5371. * [`CSS.PseudoElementMatches`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PseudoElementMatches) - The `pseudoType` in the properties had `type` _removed_. The `matches` in the properties had `type` _removed_.
  5372. * [`CSS.InheritedStyleEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InheritedStyleEntry) - The `inlineStyle` in the properties had `type` _removed_. The `matchedCSSRules` in the properties had `type` _removed_.
  5373. * [`CSS.RuleMatch`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleMatch) - The `rule` in the properties had `type` _removed_.
  5374. * [`CSS.Value`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-Value) - The `range` in the properties had `type` _removed_.
  5375. * [`CSS.SelectorList`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SelectorList) - The `selectors` in the properties had `type` _removed_.
  5376. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The `styleSheetId` in the properties had `type` _removed_. The `frameId` in the properties had `type` _removed_. The `origin` in the properties had `type` _removed_. The `ownerNode` in the properties had `type` _removed_.
  5377. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule) - The `styleSheetId` in the properties had `type` _removed_. The `selectorList` in the properties had `type` _removed_. The `origin` in the properties had `type` _removed_. The `style` in the properties had `type` _removed_. The `media` in the properties had `type` _removed_.
  5378. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage) - The `styleSheetId` in the properties had `type` _removed_.
  5379. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle) - The `styleSheetId` in the properties had `type` _removed_. The `cssProperties` in the properties had `type` _removed_. The `shorthandEntries` in the properties had `type` _removed_. The `range` in the properties had `type` _removed_.
  5380. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty) - The `range` in the properties had `type` _removed_.
  5381. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia) - The `range` in the properties had `type` _removed_. The `styleSheetId` in the properties had `type` _removed_. The `mediaList` in the properties had `type` _removed_.
  5382. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery) - The `expressions` in the properties had `type` _removed_.
  5383. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression) - The `valueRange` in the properties had `type` _removed_.
  5384. * [`CSS.CSSKeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframesRule) - The `animationName` in the properties had `type` _removed_. The `keyframes` in the properties had `type` _removed_.
  5385. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule) - The `styleSheetId` in the properties had `type` _removed_. The `origin` in the properties had `type` _removed_. The `keyText` in the properties had `type` _removed_. The `style` in the properties had `type` _removed_.
  5386. * [`CSS.StyleDeclarationEdit`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleDeclarationEdit) - The `styleSheetId` in the properties had `type` _removed_. The `range` in the properties had `type` _removed_.
  5387. #### `CacheStorage`: modified commands
  5388. * [`CacheStorage.deleteCache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteCache) - The `cacheId` in the parameters had `type` _removed_.
  5389. * [`CacheStorage.deleteEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteEntry) - The `cacheId` in the parameters had `type` _removed_.
  5390. * [`CacheStorage.requestCacheNames`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCacheNames) - The `caches` in the return value had `type` _removed_.
  5391. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse) - The `cacheId` in the parameters had `type` _removed_. The `response` in the return value had `type` _removed_.
  5392. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries) - The `cacheId` in the parameters had `type` _removed_. The `cacheDataEntries` in the return value had `type` _removed_.
  5393. #### `CacheStorage`: modified types
  5394. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `requestHeaders` in the properties had `type` _removed_. The `responseHeaders` in the properties had `type` _removed_.
  5395. * [`CacheStorage.Cache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Cache) - The `cacheId` in the properties had `type` _removed_.
  5396. #### `DOM`: modified commands
  5397. * [`DOM.collectClassNamesFromSubtree`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-collectClassNamesFromSubtree) - The `nodeId` in the parameters had `type` _removed_.
  5398. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo) - The `nodeId` in the parameters had `type` _removed_. The `targetNodeId` in the parameters had `type` _removed_. The `insertBeforeNodeId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5399. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_. The `node` in the return value had `type` _removed_.
  5400. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_.
  5401. * [`DOM.getAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getAttributes) - The `nodeId` in the parameters had `type` _removed_.
  5402. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_. The `model` in the return value had `type` _removed_.
  5403. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_. The `quads` in the return value had `type` _removed_.
  5404. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument) - The `root` in the return value had `type` _removed_.
  5405. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument) - The `nodes` in the return value had `type` _removed_.
  5406. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation) - The `nodeId` in the return value had `type` _removed_.
  5407. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_.
  5408. * [`DOM.getRelayoutBoundary`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getRelayoutBoundary) - The `nodeId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5409. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults) - The `nodeIds` in the return value had `type` _removed_.
  5410. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo) - The `nodeId` in the parameters had `type` _removed_. The `targetNodeId` in the parameters had `type` _removed_. The `insertBeforeNodeId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5411. * [`DOM.pushNodeByPathToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodeByPathToFrontend) - The `nodeId` in the return value had `type` _removed_.
  5412. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend) - The `backendNodeIds` in the parameters had `type` _removed_. The `nodeIds` in the return value had `type` _removed_.
  5413. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector) - The `nodeId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5414. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll) - The `nodeId` in the parameters had `type` _removed_. The `nodeIds` in the return value had `type` _removed_.
  5415. * [`DOM.removeAttribute`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeAttribute) - The `nodeId` in the parameters had `type` _removed_.
  5416. * [`DOM.removeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeNode) - The `nodeId` in the parameters had `type` _removed_.
  5417. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes) - The `nodeId` in the parameters had `type` _removed_.
  5418. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode) - The `objectId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5419. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `object` in the return value had `type` _removed_.
  5420. * [`DOM.setAttributeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributeValue) - The `nodeId` in the parameters had `type` _removed_.
  5421. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText) - The `nodeId` in the parameters had `type` _removed_.
  5422. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles) - The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_.
  5423. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode) - The `nodeId` in the parameters had `type` _removed_.
  5424. * [`DOM.setNodeName`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeName) - The `nodeId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5425. * [`DOM.setNodeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeValue) - The `nodeId` in the parameters had `type` _removed_.
  5426. * [`DOM.setOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setOuterHTML) - The `nodeId` in the parameters had `type` _removed_.
  5427. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner) - The `frameId` in the parameters had `type` _removed_. The `nodeId` in the return value had `type` _removed_.
  5428. #### `DOM`: modified events
  5429. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified) - The `nodeId` in the parameters had `type` _removed_.
  5430. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved) - The `nodeId` in the parameters had `type` _removed_.
  5431. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified) - The `nodeId` in the parameters had `type` _removed_.
  5432. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated) - The `nodeId` in the parameters had `type` _removed_.
  5433. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted) - The `parentNodeId` in the parameters had `type` _removed_. The `previousNodeId` in the parameters had `type` _removed_. The `node` in the parameters had `type` _removed_.
  5434. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved) - The `parentNodeId` in the parameters had `type` _removed_. The `nodeId` in the parameters had `type` _removed_.
  5435. * [`DOM.distributedNodesUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-distributedNodesUpdated) - The `insertionPointId` in the parameters had `type` _removed_. The `distributedNodes` in the parameters had `type` _removed_.
  5436. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated) - The `nodeIds` in the parameters had `type` _removed_.
  5437. * [`DOM.pseudoElementAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementAdded) - The `parentId` in the parameters had `type` _removed_. The `pseudoElement` in the parameters had `type` _removed_.
  5438. * [`DOM.pseudoElementRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementRemoved) - The `parentId` in the parameters had `type` _removed_. The `pseudoElementId` in the parameters had `type` _removed_.
  5439. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes) - The `parentId` in the parameters had `type` _removed_. The `nodes` in the parameters had `type` _removed_.
  5440. * [`DOM.shadowRootPopped`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPopped) - The `hostId` in the parameters had `type` _removed_. The `rootId` in the parameters had `type` _removed_.
  5441. * [`DOM.shadowRootPushed`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPushed) - The `hostId` in the parameters had `type` _removed_. The `root` in the parameters had `type` _removed_.
  5442. #### `DOM`: modified types
  5443. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode) - The `backendNodeId` in the properties had `type` _removed_.
  5444. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - The `nodeId` in the properties had `type` _removed_. The `parentId` in the properties had `type` _removed_. The `backendNodeId` in the properties had `type` _removed_. The `children` in the properties had `type` _removed_. The `pseudoType` in the properties had `type` _removed_. The `shadowRootType` in the properties had `type` _removed_. The `frameId` in the properties had `type` _removed_. The `contentDocument` in the properties had `type` _removed_. The `shadowRoots` in the properties had `type` _removed_. The `templateContent` in the properties had `type` _removed_. The `pseudoElements` in the properties had `type` _removed_. The `importedDocument` in the properties had `type` _removed_. The `distributedNodes` in the properties had `type` _removed_.
  5445. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel) - The `content` in the properties had `type` _removed_. The `padding` in the properties had `type` _removed_. The `border` in the properties had `type` _removed_. The `margin` in the properties had `type` _removed_. The `shapeOutside` in the properties had `type` _removed_.
  5446. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo) - The `bounds` in the properties had `type` _removed_.
  5447. #### `DOMDebugger`: modified commands
  5448. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners) - The `objectId` in the parameters had `type` _removed_. The `listeners` in the return value had `type` _removed_.
  5449. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint) - The `nodeId` in the parameters had `type` _removed_. The `type` in the parameters had `type` _removed_.
  5450. * [`DOMDebugger.setDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setDOMBreakpoint) - The `nodeId` in the parameters had `type` _removed_. The `type` in the parameters had `type` _removed_.
  5451. #### `DOMDebugger`: modified type
  5452. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener) - The `scriptId` in the properties had `type` _removed_. The `handler` in the properties had `type` _removed_. The `originalHandler` in the properties had `type` _removed_. The `backendNodeId` in the properties had `type` _removed_.
  5453. #### `DOMSnapshot`: modified commands
  5454. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - The `domNodes` in the return value had `type` _removed_. The `layoutTreeNodes` in the return value had `type` _removed_. The `computedStyles` in the return value had `type` _removed_.
  5455. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot) - The `documents` in the return value had `type` _removed_.
  5456. #### `DOMSnapshot`: modified types
  5457. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `backendNodeId` in the properties had `type` _removed_. The `attributes` in the properties had `type` _removed_. The `frameId` in the properties had `type` _removed_. The `pseudoType` in the properties had `type` _removed_. The `shadowRootType` in the properties had `type` _removed_. The `eventListeners` in the properties had `type` _removed_.
  5458. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - The `boundingBox` in the properties had `type` _removed_.
  5459. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The `boundingBox` in the properties had `type` _removed_. The `inlineTextNodes` in the properties had `type` _removed_.
  5460. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle) - The `properties` in the properties had `type` _removed_.
  5461. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings) - The items's `type` _removed_.
  5462. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData) - The `value` in the properties had `type` _removed_.
  5463. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The `documentURL` in the properties had `type` _removed_. The `baseURL` in the properties had `type` _removed_. The `contentLanguage` in the properties had `type` _removed_. The `encodingName` in the properties had `type` _removed_. The `publicId` in the properties had `type` _removed_. The `systemId` in the properties had `type` _removed_. The `frameId` in the properties had `type` _removed_. The `nodes` in the properties had `type` _removed_. The `layout` in the properties had `type` _removed_. The `textBoxes` in the properties had `type` _removed_.
  5464. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot) - The `nodeName` in the properties had `type` _removed_. The `nodeValue` in the properties had `type` _removed_. The `backendNodeId` in the properties had `type` _removed_. The `attributes` in the properties had `type` _removed_. The `textValue` in the properties had `type` _removed_. The `inputValue` in the properties had `type` _removed_. The `inputChecked` in the properties had `type` _removed_. The `optionSelected` in the properties had `type` _removed_. The `contentDocumentIndex` in the properties had `type` _removed_. The `pseudoType` in the properties had `type` _removed_. The `isClickable` in the properties had `type` _removed_. The `currentSourceURL` in the properties had `type` _removed_. The `originURL` in the properties had `type` _removed_.
  5465. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The `styles` in the properties had `type` _removed_. The `bounds` in the properties had `type` _removed_. The `text` in the properties had `type` _removed_. The `stackingContexts` in the properties had `type` _removed_.
  5466. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot) - The `bounds` in the properties had `type` _removed_.
  5467. #### `DOMStorage`: modified commands
  5468. * [`DOMStorage.clear`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-clear) - The `storageId` in the parameters had `type` _removed_.
  5469. * [`DOMStorage.getDOMStorageItems`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-getDOMStorageItems) - The `storageId` in the parameters had `type` _removed_. The `entries` in the return value had `type` _removed_.
  5470. * [`DOMStorage.removeDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-removeDOMStorageItem) - The `storageId` in the parameters had `type` _removed_.
  5471. * [`DOMStorage.setDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-setDOMStorageItem) - The `storageId` in the parameters had `type` _removed_.
  5472. #### `DOMStorage`: modified events
  5473. * [`DOMStorage.domStorageItemAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemAdded) - The `storageId` in the parameters had `type` _removed_.
  5474. * [`DOMStorage.domStorageItemRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemRemoved) - The `storageId` in the parameters had `type` _removed_.
  5475. * [`DOMStorage.domStorageItemUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemUpdated) - The `storageId` in the parameters had `type` _removed_.
  5476. * [`DOMStorage.domStorageItemsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemsCleared) - The `storageId` in the parameters had `type` _removed_.
  5477. #### `Database`: modified commands
  5478. * [`Database.executeSQL`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-executeSQL) - The `databaseId` in the parameters had `type` _removed_. The `sqlError` in the return value had `type` _removed_.
  5479. * [`Database.getDatabaseTableNames`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-getDatabaseTableNames) - The `databaseId` in the parameters had `type` _removed_.
  5480. #### `Database`: modified event
  5481. * [`Database.addDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#event-addDatabase) - The `database` in the parameters had `type` _removed_.
  5482. #### `Database`: modified type
  5483. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database) - The `id` in the properties had `type` _removed_.
  5484. #### `Emulation`: modified commands
  5485. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride) - The `color` in the parameters had `type` _removed_.
  5486. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The `screenOrientation` in the parameters had `type` _removed_. The `viewport` in the parameters had `type` _removed_.
  5487. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The `policy` in the parameters had `type` _removed_. The `initialVirtualTime` in the parameters had `type` _removed_.
  5488. #### `HeadlessExperimental`: modified command
  5489. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The `screenshot` in the parameters had `type` _removed_.
  5490. #### `IO`: modified commands
  5491. * [`IO.close`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-close) - The `handle` in the parameters had `type` _removed_.
  5492. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read) - The `handle` in the parameters had `type` _removed_.
  5493. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob) - The `objectId` in the parameters had `type` _removed_.
  5494. #### `IndexedDB`: modified commands
  5495. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries) - The `keyRange` in the parameters had `type` _removed_.
  5496. * [`IndexedDB.requestData`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestData) - The `keyRange` in the parameters had `type` _removed_. The `objectStoreDataEntries` in the return value had `type` _removed_.
  5497. * [`IndexedDB.requestDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabase) - The `databaseWithObjectStores` in the return value had `type` _removed_.
  5498. #### `IndexedDB`: modified types
  5499. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores) - The `objectStores` in the properties had `type` _removed_.
  5500. * [`IndexedDB.ObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStore) - The `keyPath` in the properties had `type` _removed_. The `indexes` in the properties had `type` _removed_.
  5501. * [`IndexedDB.ObjectStoreIndex`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStoreIndex) - The `keyPath` in the properties had `type` _removed_.
  5502. * [`IndexedDB.Key`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-Key) - The `array` in the properties had `type` _removed_.
  5503. * [`IndexedDB.KeyRange`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyRange) - The `lower` in the properties had `type` _removed_. The `upper` in the properties had `type` _removed_.
  5504. * [`IndexedDB.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DataEntry) - The `key` in the properties had `type` _removed_. The `primaryKey` in the properties had `type` _removed_. The `value` in the properties had `type` _removed_.
  5505. #### `Input`: modified commands
  5506. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The `timestamp` in the parameters had `type` _removed_.
  5507. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `timestamp` in the parameters had `type` _removed_.
  5508. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - The `touchPoints` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5509. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `timestamp` in the parameters had `type` _removed_.
  5510. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture) - The `gestureSourceType` in the parameters had `type` _removed_.
  5511. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture) - The `gestureSourceType` in the parameters had `type` _removed_.
  5512. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture) - The `gestureSourceType` in the parameters had `type` _removed_.
  5513. #### `LayerTree`: modified commands
  5514. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons) - The `layerId` in the parameters had `type` _removed_.
  5515. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot) - The `tiles` in the parameters had `type` _removed_. The `snapshotId` in the return value had `type` _removed_.
  5516. * [`LayerTree.makeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-makeSnapshot) - The `layerId` in the parameters had `type` _removed_. The `snapshotId` in the return value had `type` _removed_.
  5517. * [`LayerTree.profileSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-profileSnapshot) - The `snapshotId` in the parameters had `type` _removed_. The `clipRect` in the parameters had `type` _removed_. The `timings` in the return value had `type` _removed_.
  5518. * [`LayerTree.releaseSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-releaseSnapshot) - The `snapshotId` in the parameters had `type` _removed_.
  5519. * [`LayerTree.replaySnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-replaySnapshot) - The `snapshotId` in the parameters had `type` _removed_.
  5520. * [`LayerTree.snapshotCommandLog`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-snapshotCommandLog) - The `snapshotId` in the parameters had `type` _removed_.
  5521. #### `LayerTree`: modified events
  5522. * [`LayerTree.layerPainted`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerPainted) - The `layerId` in the parameters had `type` _removed_. The `clip` in the parameters had `type` _removed_.
  5523. * [`LayerTree.layerTreeDidChange`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerTreeDidChange) - The `layers` in the parameters had `type` _removed_.
  5524. #### `LayerTree`: modified types
  5525. * [`LayerTree.ScrollRect`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-ScrollRect) - The `rect` in the properties had `type` _removed_.
  5526. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint) - The `stickyBoxRect` in the properties had `type` _removed_. The `containingBlockRect` in the properties had `type` _removed_. The `nearestLayerShiftingStickyBox` in the properties had `type` _removed_. The `nearestLayerShiftingContainingBlock` in the properties had `type` _removed_.
  5527. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer) - The `layerId` in the properties had `type` _removed_. The `parentLayerId` in the properties had `type` _removed_. The `backendNodeId` in the properties had `type` _removed_. The `scrollRects` in the properties had `type` _removed_. The `stickyPositionConstraint` in the properties had `type` _removed_.
  5528. #### `Log`: modified command
  5529. * [`Log.startViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-startViolationsReport) - The `config` in the parameters had `type` _removed_.
  5530. #### `Log`: modified event
  5531. * [`Log.entryAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#event-entryAdded) - The `entry` in the parameters had `type` _removed_.
  5532. #### `Log`: modified type
  5533. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry) - The `timestamp` in the properties had `type` _removed_. The `stackTrace` in the properties had `type` _removed_. The `networkRequestId` in the properties had `type` _removed_. The `args` in the properties had `type` _removed_.
  5534. #### `Memory`: modified commands
  5535. * [`Memory.simulatePressureNotification`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-simulatePressureNotification) - The `level` in the parameters had `type` _removed_.
  5536. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile) - The `profile` in the return value had `type` _removed_.
  5537. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile) - The `profile` in the return value had `type` _removed_.
  5538. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile) - The `profile` in the return value had `type` _removed_.
  5539. #### `Memory`: modified type
  5540. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile) - The `samples` in the properties had `type` _removed_. The `modules` in the properties had `type` _removed_.
  5541. #### `Network`: modified commands
  5542. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - The `interceptionId` in the parameters had `type` _removed_. The `errorReason` in the parameters had `type` _removed_. The `headers` in the parameters had `type` _removed_. The `authChallengeResponse` in the parameters had `type` _removed_.
  5543. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions) - The `connectionType` in the parameters had `type` _removed_.
  5544. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies) - The `cookies` in the return value had `type` _removed_.
  5545. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - The `cookies` in the return value had `type` _removed_.
  5546. * [`Network.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBody) - The `requestId` in the parameters had `type` _removed_.
  5547. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData) - The `requestId` in the parameters had `type` _removed_.
  5548. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception) - The `interceptionId` in the parameters had `type` _removed_.
  5549. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream) - The `interceptionId` in the parameters had `type` _removed_. The `stream` in the return value had `type` _removed_.
  5550. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR) - The `requestId` in the parameters had `type` _removed_.
  5551. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody) - The `requestId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_.
  5552. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The `sameSite` in the parameters had `type` _removed_. The `expires` in the parameters had `type` _removed_.
  5553. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies) - The `cookies` in the parameters had `type` _removed_.
  5554. * [`Network.setExtraHTTPHeaders`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setExtraHTTPHeaders) - The `headers` in the parameters had `type` _removed_.
  5555. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception) - The `patterns` in the parameters had `type` _removed_.
  5556. #### `Network`: modified events
  5557. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5558. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5559. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `type` in the parameters had `type` _removed_. The `blockedReason` in the parameters had `type` _removed_.
  5560. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5561. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `interceptionId` in the parameters had `type` _removed_. The `request` in the parameters had `type` _removed_. The `frameId` in the parameters had `type` _removed_. The `resourceType` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `type` _removed_. The `responseErrorReason` in the parameters had `type` _removed_. The `responseHeaders` in the parameters had `type` _removed_.
  5562. * [`Network.requestServedFromCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestServedFromCache) - The `requestId` in the parameters had `type` _removed_.
  5563. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `requestId` in the parameters had `type` _removed_. The `loaderId` in the parameters had `type` _removed_. The `request` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `wallTime` in the parameters had `type` _removed_. The `initiator` in the parameters had `type` _removed_. The `redirectResponse` in the parameters had `type` _removed_. The `type` in the parameters had `type` _removed_. The `frameId` in the parameters had `type` _removed_.
  5564. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority) - The `requestId` in the parameters had `type` _removed_. The `newPriority` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5565. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived) - The `requestId` in the parameters had `type` _removed_. The `info` in the parameters had `type` _removed_.
  5566. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `requestId` in the parameters had `type` _removed_. The `loaderId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `type` in the parameters had `type` _removed_. The `response` in the parameters had `type` _removed_. The `frameId` in the parameters had `type` _removed_.
  5567. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5568. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated) - The `requestId` in the parameters had `type` _removed_. The `initiator` in the parameters had `type` _removed_.
  5569. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5570. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `response` in the parameters had `type` _removed_.
  5571. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `response` in the parameters had `type` _removed_.
  5572. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `response` in the parameters had `type` _removed_.
  5573. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest) - The `requestId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_. The `wallTime` in the parameters had `type` _removed_. The `request` in the parameters had `type` _removed_.
  5574. #### `Network`: modified types
  5575. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `headers` in the properties had `type` _removed_. The `mixedContentType` in the properties had `type` _removed_. The `initialPriority` in the properties had `type` _removed_.
  5576. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp) - The `timestamp` in the properties had `type` _removed_.
  5577. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails) - The `certificateId` in the properties had `type` _removed_. The `validFrom` in the properties had `type` _removed_. The `validTo` in the properties had `type` _removed_. The `signedCertificateTimestampList` in the properties had `type` _removed_. The `certificateTransparencyCompliance` in the properties had `type` _removed_.
  5578. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `headers` in the properties had `type` _removed_. The `requestHeaders` in the properties had `type` _removed_. The `timing` in the properties had `type` _removed_. The `securityState` in the properties had `type` _removed_. The `securityDetails` in the properties had `type` _removed_.
  5579. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest) - The `headers` in the properties had `type` _removed_.
  5580. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse) - The `headers` in the properties had `type` _removed_. The `requestHeaders` in the properties had `type` _removed_.
  5581. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource) - The `type` in the properties had `type` _removed_. The `response` in the properties had `type` _removed_.
  5582. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The `stack` in the properties had `type` _removed_.
  5583. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie) - The `sameSite` in the properties had `type` _removed_.
  5584. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - The `sameSite` in the properties had `type` _removed_. The `expires` in the properties had `type` _removed_.
  5585. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The `resourceType` in the properties had `type` _removed_. The `interceptionStage` in the properties had `type` _removed_.
  5586. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader) - The `responseHeaders` in the properties had `type` _removed_. The `signatures` in the properties had `type` _removed_.
  5587. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError) - The `errorField` in the properties had `type` _removed_.
  5588. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo) - The `outerResponse` in the properties had `type` _removed_. The `header` in the properties had `type` _removed_. The `securityDetails` in the properties had `type` _removed_. The `errors` in the properties had `type` _removed_.
  5589. #### `Overlay`: modified commands
  5590. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The `nodeId` in the parameters had `type` _removed_.
  5591. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame) - The `frameId` in the parameters had `type` _removed_. The `contentColor` in the parameters had `type` _removed_. The `contentOutlineColor` in the parameters had `type` _removed_.
  5592. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode) - The `highlightConfig` in the parameters had `type` _removed_. The `nodeId` in the parameters had `type` _removed_. The `backendNodeId` in the parameters had `type` _removed_. The `objectId` in the parameters had `type` _removed_.
  5593. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad) - The `quad` in the parameters had `type` _removed_. The `color` in the parameters had `type` _removed_. The `outlineColor` in the parameters had `type` _removed_.
  5594. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect) - The `color` in the parameters had `type` _removed_. The `outlineColor` in the parameters had `type` _removed_.
  5595. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode) - The `mode` in the parameters had `type` _removed_. The `highlightConfig` in the parameters had `type` _removed_.
  5596. #### `Overlay`: modified events
  5597. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested) - The `backendNodeId` in the parameters had `type` _removed_.
  5598. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested) - The `nodeId` in the parameters had `type` _removed_.
  5599. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested) - The `viewport` in the parameters had `type` _removed_.
  5600. #### `Overlay`: modified type
  5601. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The `contentColor` in the properties had `type` _removed_. The `paddingColor` in the properties had `type` _removed_. The `borderColor` in the properties had `type` _removed_. The `marginColor` in the properties had `type` _removed_. The `eventTargetColor` in the properties had `type` _removed_. The `shapeColor` in the properties had `type` _removed_. The `shapeMarginColor` in the properties had `type` _removed_. The `cssGridColor` in the properties had `type` _removed_.
  5602. #### `Page`: modified commands
  5603. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad) - The `identifier` in the return value had `type` _removed_.
  5604. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - The `identifier` in the return value had `type` _removed_.
  5605. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot) - The `clip` in the parameters had `type` _removed_.
  5606. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld) - The `frameId` in the parameters had `type` _removed_. The `executionContextId` in the return value had `type` _removed_.
  5607. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest) - The `errors` in the return value had `type` _removed_.
  5608. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies) - The `cookies` in the return value had `type` _removed_.
  5609. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree) - The `frameTree` in the return value had `type` _removed_.
  5610. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics) - The `layoutViewport` in the return value had `type` _removed_. The `visualViewport` in the return value had `type` _removed_. The `contentSize` in the return value had `type` _removed_.
  5611. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory) - The `entries` in the return value had `type` _removed_.
  5612. * [`Page.getResourceContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceContent) - The `frameId` in the parameters had `type` _removed_.
  5613. * [`Page.getResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceTree) - The `frameTree` in the return value had `type` _removed_.
  5614. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The `transitionType` in the parameters had `type` _removed_. The `frameId` in the parameters had `type` _removed_. The `frameId` in the return value had `type` _removed_. The `loaderId` in the return value had `type` _removed_.
  5615. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad) - The `identifier` in the parameters had `type` _removed_.
  5616. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument) - The `identifier` in the parameters had `type` _removed_.
  5617. * [`Page.searchInResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-searchInResource) - The `frameId` in the parameters had `type` _removed_. The `result` in the return value had `type` _removed_.
  5618. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The `screenOrientation` in the parameters had `type` _removed_. The `viewport` in the parameters had `type` _removed_.
  5619. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies) - The `fontFamilies` in the parameters had `type` _removed_.
  5620. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes) - The `fontSizes` in the parameters had `type` _removed_.
  5621. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent) - The `frameId` in the parameters had `type` _removed_.
  5622. #### `Page`: modified events
  5623. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired) - The `timestamp` in the parameters had `type` _removed_.
  5624. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached) - The `frameId` in the parameters had `type` _removed_. The `parentFrameId` in the parameters had `type` _removed_. The `stack` in the parameters had `type` _removed_.
  5625. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation) - The `frameId` in the parameters had `type` _removed_.
  5626. * [`Page.frameDetached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameDetached) - The `frameId` in the parameters had `type` _removed_.
  5627. * [`Page.frameNavigated`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameNavigated) - The `frame` in the parameters had `type` _removed_.
  5628. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The `frameId` in the parameters had `type` _removed_.
  5629. * [`Page.frameStartedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStartedLoading) - The `frameId` in the parameters had `type` _removed_.
  5630. * [`Page.frameStoppedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStoppedLoading) - The `frameId` in the parameters had `type` _removed_.
  5631. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening) - The `type` in the parameters had `type` _removed_.
  5632. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent) - The `frameId` in the parameters had `type` _removed_. The `loaderId` in the parameters had `type` _removed_. The `timestamp` in the parameters had `type` _removed_.
  5633. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired) - The `timestamp` in the parameters had `type` _removed_.
  5634. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument) - The `frameId` in the parameters had `type` _removed_.
  5635. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame) - The `metadata` in the parameters had `type` _removed_.
  5636. #### `Page`: modified types
  5637. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The `loaderId` in the properties had `type` _removed_.
  5638. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource) - The `type` in the properties had `type` _removed_. The `lastModified` in the properties had `type` _removed_.
  5639. * [`Page.FrameResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResourceTree) - The `frame` in the properties had `type` _removed_. The `childFrames` in the properties had `type` _removed_. The `resources` in the properties had `type` _removed_.
  5640. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree) - The `frame` in the properties had `type` _removed_. The `childFrames` in the properties had `type` _removed_.
  5641. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry) - The `transitionType` in the properties had `type` _removed_.
  5642. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata) - The `timestamp` in the properties had `type` _removed_.
  5643. #### `Performance`: modified command
  5644. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics) - The `metrics` in the return value had `type` _removed_.
  5645. #### `Performance`: modified event
  5646. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics) - The `metrics` in the parameters had `type` _removed_.
  5647. #### `Security`: modified command
  5648. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError) - The `action` in the parameters had `type` _removed_.
  5649. #### `Security`: modified event
  5650. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged) - The `securityState` in the parameters had `type` _removed_. The `explanations` in the parameters had `type` _removed_. The `insecureContentStatus` in the parameters had `type` _removed_.
  5651. #### `Security`: modified types
  5652. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The `securityState` in the properties had `type` _removed_. The `mixedContentType` in the properties had `type` _removed_.
  5653. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus) - The `ranInsecureContentStyle` in the properties had `type` _removed_. The `displayedInsecureContentStyle` in the properties had `type` _removed_.
  5654. #### `ServiceWorker`: modified events
  5655. * [`ServiceWorker.workerErrorReported`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerErrorReported) - The `errorMessage` in the parameters had `type` _removed_.
  5656. * [`ServiceWorker.workerRegistrationUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerRegistrationUpdated) - The `registrations` in the parameters had `type` _removed_.
  5657. * [`ServiceWorker.workerVersionUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerVersionUpdated) - The `versions` in the parameters had `type` _removed_.
  5658. #### `ServiceWorker`: modified type
  5659. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion) - The `runningStatus` in the properties had `type` _removed_. The `status` in the properties had `type` _removed_. The `controlledClients` in the properties had `type` _removed_. The `targetId` in the properties had `type` _removed_.
  5660. #### `Storage`: modified command
  5661. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota) - The `usageBreakdown` in the return value had `type` _removed_.
  5662. #### `Storage`: modified type
  5663. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType) - The `storageType` in the properties had `type` _removed_.
  5664. #### `SystemInfo`: modified command
  5665. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo) - The `gpu` in the return value had `type` _removed_.
  5666. #### `SystemInfo`: modified type
  5667. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo) - The `devices` in the properties had `type` _removed_.
  5668. #### `Target`: modified commands
  5669. * [`Target.activateTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-activateTarget) - The `targetId` in the parameters had `type` _removed_.
  5670. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget) - The `targetId` in the parameters had `type` _removed_. The `sessionId` in the return value had `type` _removed_.
  5671. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget) - The `sessionId` in the return value had `type` _removed_.
  5672. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget) - The `targetId` in the parameters had `type` _removed_.
  5673. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol) - The `targetId` in the parameters had `type` _removed_.
  5674. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - The `browserContextId` in the return value had `type` _removed_.
  5675. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts) - The `browserContextIds` in the return value had `type` _removed_.
  5676. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `browserContextId` in the parameters had `type` _removed_. The `targetId` in the return value had `type` _removed_.
  5677. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget) - The `sessionId` in the parameters had `type` _removed_. The `targetId` in the parameters had `type` _removed_.
  5678. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - The `browserContextId` in the parameters had `type` _removed_.
  5679. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo) - The `targetId` in the parameters had `type` _removed_. The `targetInfo` in the return value had `type` _removed_.
  5680. * [`Target.getTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargets) - The `targetInfos` in the return value had `type` _removed_.
  5681. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The `sessionId` in the parameters had `type` _removed_. The `targetId` in the parameters had `type` _removed_.
  5682. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations) - The `locations` in the parameters had `type` _removed_.
  5683. #### `Target`: modified events
  5684. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget) - The `sessionId` in the parameters had `type` _removed_. The `targetInfo` in the parameters had `type` _removed_.
  5685. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - The `sessionId` in the parameters had `type` _removed_. The `targetId` in the parameters had `type` _removed_.
  5686. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget) - The `sessionId` in the parameters had `type` _removed_. The `targetId` in the parameters had `type` _removed_.
  5687. * [`Target.targetCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCreated) - The `targetInfo` in the parameters had `type` _removed_.
  5688. * [`Target.targetDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetDestroyed) - The `targetId` in the parameters had `type` _removed_.
  5689. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed) - The `targetId` in the parameters had `type` _removed_.
  5690. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged) - The `targetInfo` in the parameters had `type` _removed_.
  5691. #### `Target`: modified type
  5692. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The `targetId` in the properties had `type` _removed_. The `openerId` in the properties had `type` _removed_. The `browserContextId` in the properties had `type` _removed_.
  5693. #### `Tracing`: modified command
  5694. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `streamCompression` in the parameters had `type` _removed_. The `traceConfig` in the parameters had `type` _removed_.
  5695. #### `Tracing`: modified event
  5696. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The `stream` in the parameters had `type` _removed_. The `streamCompression` in the parameters had `type` _removed_.
  5697. #### `Tracing`: modified type
  5698. * [`Tracing.TraceConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TraceConfig) - The `memoryDumpConfig` in the properties had `type` _removed_.
  5699. ## Roll protocol to r587766
  5700. ###### _2018-08-30 14:16:04_ | Diff: [41333c5...e191211](https://github.com/ChromeDevTools/devtools-protocol/compare/41333c5...e191211)
  5701. #### `Console`: modified event
  5702. * [`Console.messageAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#event-messageAdded) - The parameters's `type` _added_.
  5703. #### `Debugger`: modified commands
  5704. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation) - The parameters's `type` _added_.
  5705. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable) - The return value's `type` _added_.
  5706. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The parameters's `type` _added_ (2 times). The return value's `type` _added_ (2 times).
  5707. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - The parameters's `type` _added_ (2 times). The `0` in the return value had `type` _added_.
  5708. * [`Debugger.getScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getScriptSource) - The parameters's `type` _added_.
  5709. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace) - The parameters's `type` _added_. The return value's `type` _added_.
  5710. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall) - The parameters's `type` _added_.
  5711. * [`Debugger.removeBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-removeBreakpoint) - The parameters's `type` _added_.
  5712. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame) - The parameters's `type` _added_. The `0` in the return value had `type` _added_. The return value's `type` _added_ (2 times).
  5713. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5714. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges) - The parameters's `type` _added_. The `1` in the parameters had `type` _added_.
  5715. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint) - The parameters's `type` _added_. The return value's `type` _added_ (2 times).
  5716. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - The return value's `type` _added_. The `1` in the return value had `type` _added_.
  5717. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall) - The parameters's `type` _added_. The return value's `type` _added_.
  5718. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue) - The parameters's `type` _added_.
  5719. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource) - The parameters's `type` _added_. The `0` in the return value had `type` _added_. The return value's `type` _added_ (3 times).
  5720. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue) - The parameters's `type` _added_ (2 times).
  5721. #### `Debugger`: modified events
  5722. * [`Debugger.breakpointResolved`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-breakpointResolved) - The parameters's `type` _added_ (2 times).
  5723. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `0` in the parameters had `type` _added_. The parameters's `type` _added_ (3 times).
  5724. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse) - The parameters's `type` _added_ (3 times).
  5725. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The parameters's `type` _added_ (3 times).
  5726. #### `Debugger`: modified types
  5727. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location) - The properties's `type` _added_.
  5728. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame) - The properties's `type` _added_ (5 times). The `5` in the properties had `type` _added_.
  5729. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope) - The properties's `type` _added_ (3 times).
  5730. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation) - The properties's `type` _added_.
  5731. #### `HeapProfiler`: modified commands
  5732. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject) - The parameters's `type` _added_.
  5733. * [`HeapProfiler.getHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getHeapObjectId) - The parameters's `type` _added_. The return value's `type` _added_.
  5734. * [`HeapProfiler.getObjectByHeapObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getObjectByHeapObjectId) - The parameters's `type` _added_. The return value's `type` _added_.
  5735. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile) - The return value's `type` _added_.
  5736. * [`HeapProfiler.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopSampling) - The return value's `type` _added_.
  5737. #### `HeapProfiler`: modified types
  5738. * [`HeapProfiler.SamplingHeapProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfileNode) - The properties's `type` _added_. The `2` in the properties had `type` _added_.
  5739. * [`HeapProfiler.SamplingHeapProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#type-SamplingHeapProfile) - The properties's `type` _added_.
  5740. #### `Profiler`: modified commands
  5741. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage) - The `0` in the return value had `type` _added_.
  5742. * [`Profiler.stop`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stop) - The return value's `type` _added_.
  5743. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - The `0` in the return value had `type` _added_.
  5744. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile) - The `0` in the return value had `type` _added_.
  5745. #### `Profiler`: modified events
  5746. * [`Profiler.consoleProfileFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileFinished) - The parameters's `type` _added_ (2 times).
  5747. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted) - The parameters's `type` _added_.
  5748. #### `Profiler`: modified types
  5749. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode) - The properties's `type` _added_. The `5` in the properties had `type` _added_.
  5750. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile) - The `0` in the properties had `type` _added_.
  5751. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage) - The `1` in the properties had `type` _added_.
  5752. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage) - The properties's `type` _added_. The `2` in the properties had `type` _added_.
  5753. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry) - The `1` in the properties had `type` _added_.
  5754. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile) - The properties's `type` _added_. The `2` in the properties had `type` _added_.
  5755. #### `Runtime`: modified commands
  5756. * [`Runtime.awaitPromise`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-awaitPromise) - The parameters's `type` _added_. The return value's `type` _added_ (2 times).
  5757. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The parameters's `type` _added_ (2 times). The `2` in the parameters had `type` _added_. The return value's `type` _added_ (2 times).
  5758. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript) - The parameters's `type` _added_. The return value's `type` _added_ (2 times).
  5759. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `type` _added_ (2 times). The return value's `type` _added_ (2 times).
  5760. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties) - The parameters's `type` _added_. The `0` in the return value had `type` _added_. The `1` in the return value had `type` _added_. The return value's `type` _added_.
  5761. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames) - The parameters's `type` _added_.
  5762. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects) - The parameters's `type` _added_. The return value's `type` _added_.
  5763. * [`Runtime.releaseObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-releaseObject) - The parameters's `type` _added_.
  5764. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript) - The parameters's `type` _added_ (2 times). The return value's `type` _added_ (2 times).
  5765. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding) - The parameters's `type` _added_.
  5766. #### `Runtime`: modified events
  5767. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled) - The parameters's `type` _added_.
  5768. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled) - The `1` in the parameters had `type` _added_. The parameters's `type` _added_ (3 times).
  5769. * [`Runtime.exceptionThrown`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionThrown) - The parameters's `type` _added_ (2 times).
  5770. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated) - The parameters's `type` _added_.
  5771. * [`Runtime.executionContextDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextDestroyed) - The parameters's `type` _added_.
  5772. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested) - The parameters's `type` _added_.
  5773. #### `Runtime`: modified types
  5774. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The properties's `type` _added_ (4 times).
  5775. * [`Runtime.CustomPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CustomPreview) - The properties's `type` _added_ (3 times).
  5776. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview) - The `4` in the properties had `type` _added_. The `5` in the properties had `type` _added_.
  5777. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview) - The properties's `type` _added_.
  5778. * [`Runtime.EntryPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-EntryPreview) - The properties's `type` _added_ (2 times).
  5779. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor) - The properties's `type` _added_ (4 times).
  5780. * [`Runtime.InternalPropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-InternalPropertyDescriptor) - The properties's `type` _added_.
  5781. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - The properties's `type` _added_ (2 times).
  5782. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription) - The properties's `type` _added_.
  5783. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails) - The properties's `type` _added_ (4 times).
  5784. * [`Runtime.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallFrame) - The properties's `type` _added_.
  5785. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace) - The `1` in the properties had `type` _added_. The properties's `type` _added_ (2 times).
  5786. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId) - The properties's `type` _added_.
  5787. #### `Schema`: modified command
  5788. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains) - The `0` in the return value had `type` _added_.
  5789. #### `Accessibility`: modified command
  5790. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree) - The parameters's `type` _added_ (3 times). The `0` in the return value had `type` _added_.
  5791. #### `Accessibility`: modified types
  5792. * [`Accessibility.AXValueSource`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValueSource) - The properties's `type` _added_ (5 times).
  5793. * [`Accessibility.AXRelatedNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelatedNode) - The properties's `type` _added_.
  5794. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty) - The properties's `type` _added_ (2 times).
  5795. * [`Accessibility.AXValue`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXValue) - The properties's `type` _added_. The `2` in the properties had `type` _added_. The `3` in the properties had `type` _added_.
  5796. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode) - The properties's `type` _added_ (6 times). The `2` in the properties had `type` _added_. The `7` in the properties had `type` _added_. The `8` in the properties had `type` _added_.
  5797. #### `Animation`: modified command
  5798. * [`Animation.resolveAnimation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#method-resolveAnimation) - The return value's `type` _added_.
  5799. #### `Animation`: modified event
  5800. * [`Animation.animationStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#event-animationStarted) - The parameters's `type` _added_.
  5801. #### `Animation`: modified types
  5802. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - The properties's `type` _added_.
  5803. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect) - The properties's `type` _added_ (2 times).
  5804. * [`Animation.KeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframesRule) - The `1` in the properties had `type` _added_.
  5805. #### `ApplicationCache`: modified commands
  5806. * [`ApplicationCache.getApplicationCacheForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getApplicationCacheForFrame) - The parameters's `type` _added_. The return value's `type` _added_.
  5807. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests) - The `0` in the return value had `type` _added_.
  5808. * [`ApplicationCache.getManifestForFrame`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getManifestForFrame) - The parameters's `type` _added_.
  5809. #### `ApplicationCache`: modified event
  5810. * [`ApplicationCache.applicationCacheStatusUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#event-applicationCacheStatusUpdated) - The parameters's `type` _added_.
  5811. #### `ApplicationCache`: modified types
  5812. * [`ApplicationCache.ApplicationCache`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-ApplicationCache) - The `4` in the properties had `type` _added_.
  5813. * [`ApplicationCache.FrameWithManifest`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#type-FrameWithManifest) - The properties's `type` _added_.
  5814. #### `Audits`: modified command
  5815. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse) - The parameters's `type` _added_.
  5816. #### `Browser`: modified commands
  5817. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions) - The `1` in the parameters had `type` _added_. The parameters's `type` _added_.
  5818. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions) - The parameters's `type` _added_.
  5819. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms) - The `0` in the return value had `type` _added_.
  5820. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram) - The return value's `type` _added_.
  5821. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds) - The parameters's `type` _added_. The return value's `type` _added_.
  5822. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget) - The parameters's `type` _added_. The return value's `type` _added_ (2 times).
  5823. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds) - The parameters's `type` _added_ (2 times).
  5824. #### `Browser`: modified types
  5825. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds) - The properties's `type` _added_.
  5826. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram) - The `3` in the properties had `type` _added_.
  5827. #### `CSS`: modified commands
  5828. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule) - The parameters's `type` _added_ (2 times). The return value's `type` _added_.
  5829. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames) - The parameters's `type` _added_.
  5830. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet) - The parameters's `type` _added_. The return value's `type` _added_.
  5831. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState) - The parameters's `type` _added_.
  5832. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - The parameters's `type` _added_.
  5833. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5834. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode) - The parameters's `type` _added_. The return value's `type` _added_ (2 times).
  5835. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode) - The parameters's `type` _added_. The return value's `type` _added_ (2 times). The `2` in the return value had `type` _added_. The `3` in the return value had `type` _added_. The `4` in the return value had `type` _added_. The `5` in the return value had `type` _added_.
  5836. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries) - The `0` in the return value had `type` _added_.
  5837. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5838. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText) - The parameters's `type` _added_.
  5839. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode) - The parameters's `type` _added_.
  5840. * [`CSS.setKeyframeKey`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setKeyframeKey) - The parameters's `type` _added_ (2 times). The return value's `type` _added_.
  5841. * [`CSS.setMediaText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setMediaText) - The parameters's `type` _added_ (2 times). The return value's `type` _added_.
  5842. * [`CSS.setRuleSelector`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setRuleSelector) - The parameters's `type` _added_ (2 times). The return value's `type` _added_.
  5843. * [`CSS.setStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleSheetText) - The parameters's `type` _added_.
  5844. * [`CSS.setStyleTexts`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setStyleTexts) - The `0` in the parameters had `type` _added_. The `0` in the return value had `type` _added_.
  5845. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking) - The `0` in the return value had `type` _added_.
  5846. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta) - The `0` in the return value had `type` _added_.
  5847. #### `CSS`: modified events
  5848. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated) - The parameters's `type` _added_.
  5849. * [`CSS.styleSheetAdded`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetAdded) - The parameters's `type` _added_.
  5850. * [`CSS.styleSheetChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetChanged) - The parameters's `type` _added_.
  5851. * [`CSS.styleSheetRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-styleSheetRemoved) - The parameters's `type` _added_.
  5852. #### `CSS`: modified types
  5853. * [`CSS.PseudoElementMatches`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PseudoElementMatches) - The properties's `type` _added_. The `1` in the properties had `type` _added_.
  5854. * [`CSS.InheritedStyleEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InheritedStyleEntry) - The properties's `type` _added_. The `1` in the properties had `type` _added_.
  5855. * [`CSS.RuleMatch`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleMatch) - The properties's `type` _added_.
  5856. * [`CSS.Value`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-Value) - The properties's `type` _added_.
  5857. * [`CSS.SelectorList`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-SelectorList) - The `0` in the properties had `type` _added_.
  5858. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The properties's `type` _added_ (4 times).
  5859. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule) - The properties's `type` _added_ (4 times). The `4` in the properties had `type` _added_.
  5860. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage) - The properties's `type` _added_.
  5861. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle) - The properties's `type` _added_ (2 times). The `1` in the properties had `type` _added_. The `2` in the properties had `type` _added_.
  5862. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty) - The properties's `type` _added_.
  5863. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia) - The properties's `type` _added_ (2 times). The `5` in the properties had `type` _added_.
  5864. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery) - The `0` in the properties had `type` _added_.
  5865. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression) - The properties's `type` _added_.
  5866. * [`CSS.CSSKeyframesRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframesRule) - The properties's `type` _added_. The `1` in the properties had `type` _added_.
  5867. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule) - The properties's `type` _added_ (4 times).
  5868. * [`CSS.StyleDeclarationEdit`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleDeclarationEdit) - The properties's `type` _added_ (2 times).
  5869. #### `CacheStorage`: modified commands
  5870. * [`CacheStorage.deleteCache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteCache) - The parameters's `type` _added_.
  5871. * [`CacheStorage.deleteEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-deleteEntry) - The parameters's `type` _added_.
  5872. * [`CacheStorage.requestCacheNames`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCacheNames) - The `0` in the return value had `type` _added_.
  5873. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse) - The parameters's `type` _added_. The return value's `type` _added_.
  5874. * [`CacheStorage.requestEntries`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestEntries) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5875. #### `CacheStorage`: modified types
  5876. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `2` in the properties had `type` _added_. The `6` in the properties had `type` _added_.
  5877. * [`CacheStorage.Cache`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Cache) - The properties's `type` _added_.
  5878. #### `DOM`: modified commands
  5879. * [`DOM.collectClassNamesFromSubtree`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-collectClassNamesFromSubtree) - The parameters's `type` _added_.
  5880. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo) - The parameters's `type` _added_ (3 times). The return value's `type` _added_.
  5881. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode) - The parameters's `type` _added_ (3 times). The return value's `type` _added_.
  5882. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus) - The parameters's `type` _added_ (3 times).
  5883. * [`DOM.getAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getAttributes) - The parameters's `type` _added_.
  5884. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel) - The parameters's `type` _added_ (3 times). The return value's `type` _added_.
  5885. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads) - The parameters's `type` _added_ (3 times). The `0` in the return value had `type` _added_.
  5886. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument) - The return value's `type` _added_.
  5887. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument) - The `0` in the return value had `type` _added_.
  5888. * [`DOM.getNodeForLocation`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getNodeForLocation) - The return value's `type` _added_.
  5889. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML) - The parameters's `type` _added_ (3 times).
  5890. * [`DOM.getRelayoutBoundary`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getRelayoutBoundary) - The parameters's `type` _added_. The return value's `type` _added_.
  5891. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults) - The `0` in the return value had `type` _added_.
  5892. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo) - The parameters's `type` _added_ (3 times). The return value's `type` _added_.
  5893. * [`DOM.pushNodeByPathToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodeByPathToFrontend) - The return value's `type` _added_.
  5894. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend) - The `0` in the parameters had `type` _added_. The `0` in the return value had `type` _added_.
  5895. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector) - The parameters's `type` _added_. The return value's `type` _added_.
  5896. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5897. * [`DOM.removeAttribute`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeAttribute) - The parameters's `type` _added_.
  5898. * [`DOM.removeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-removeNode) - The parameters's `type` _added_.
  5899. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes) - The parameters's `type` _added_.
  5900. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode) - The parameters's `type` _added_. The return value's `type` _added_.
  5901. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode) - The parameters's `type` _added_ (2 times). The return value's `type` _added_.
  5902. * [`DOM.setAttributeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributeValue) - The parameters's `type` _added_.
  5903. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText) - The parameters's `type` _added_.
  5904. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles) - The parameters's `type` _added_ (3 times).
  5905. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode) - The parameters's `type` _added_.
  5906. * [`DOM.setNodeName`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeName) - The parameters's `type` _added_. The return value's `type` _added_.
  5907. * [`DOM.setNodeValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setNodeValue) - The parameters's `type` _added_.
  5908. * [`DOM.setOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setOuterHTML) - The parameters's `type` _added_.
  5909. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner) - The parameters's `type` _added_. The return value's `type` _added_.
  5910. #### `DOM`: modified events
  5911. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified) - The parameters's `type` _added_.
  5912. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved) - The parameters's `type` _added_.
  5913. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified) - The parameters's `type` _added_.
  5914. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated) - The parameters's `type` _added_.
  5915. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted) - The parameters's `type` _added_ (3 times).
  5916. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved) - The parameters's `type` _added_ (2 times).
  5917. * [`DOM.distributedNodesUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-distributedNodesUpdated) - The parameters's `type` _added_. The `1` in the parameters had `type` _added_.
  5918. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated) - The `0` in the parameters had `type` _added_.
  5919. * [`DOM.pseudoElementAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementAdded) - The parameters's `type` _added_ (2 times).
  5920. * [`DOM.pseudoElementRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-pseudoElementRemoved) - The parameters's `type` _added_ (2 times).
  5921. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes) - The parameters's `type` _added_. The `1` in the parameters had `type` _added_.
  5922. * [`DOM.shadowRootPopped`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPopped) - The parameters's `type` _added_ (2 times).
  5923. * [`DOM.shadowRootPushed`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-shadowRootPushed) - The parameters's `type` _added_ (2 times).
  5924. #### `DOM`: modified types
  5925. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode) - The properties's `type` _added_.
  5926. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - The properties's `type` _added_ (9 times). The `8` in the properties had `type` _added_. The `22` in the properties had `type` _added_. The `24` in the properties had `type` _added_. The `26` in the properties had `type` _added_.
  5927. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel) - The properties's `type` _added_ (5 times).
  5928. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo) - The properties's `type` _added_.
  5929. #### `DOMDebugger`: modified commands
  5930. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5931. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint) - The parameters's `type` _added_ (2 times).
  5932. * [`DOMDebugger.setDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setDOMBreakpoint) - The parameters's `type` _added_ (2 times).
  5933. #### `DOMDebugger`: modified type
  5934. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener) - The properties's `type` _added_ (4 times).
  5935. #### `DOMSnapshot`: modified commands
  5936. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - The `0` in the return value had `type` _added_. The `1` in the return value had `type` _added_. The `2` in the return value had `type` _added_.
  5937. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot) - The `0` in the return value had `type` _added_.
  5938. #### `DOMSnapshot`: modified types
  5939. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `type` _added_ (4 times). The `9` in the properties had `type` _added_. The `23` in the properties had `type` _added_.
  5940. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - The properties's `type` _added_.
  5941. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The properties's `type` _added_. The `3` in the properties had `type` _added_.
  5942. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle) - The `0` in the properties had `type` _added_.
  5943. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings) - The items's `type` _added_.
  5944. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData) - The `1` in the properties had `type` _added_.
  5945. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The properties's `type` _added_ (10 times).
  5946. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot) - The `2` in the properties had `type` _added_. The `3` in the properties had `type` _added_. The `4` in the properties had `type` _added_. The `5` in the properties had `type` _added_. The properties's `type` _added_ (9 times).
  5947. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The `1` in the properties had `type` _added_. The `2` in the properties had `type` _added_. The `3` in the properties had `type` _added_. The properties's `type` _added_.
  5948. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot) - The `1` in the properties had `type` _added_.
  5949. #### `DOMStorage`: modified commands
  5950. * [`DOMStorage.clear`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-clear) - The parameters's `type` _added_.
  5951. * [`DOMStorage.getDOMStorageItems`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-getDOMStorageItems) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5952. * [`DOMStorage.removeDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-removeDOMStorageItem) - The parameters's `type` _added_.
  5953. * [`DOMStorage.setDOMStorageItem`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#method-setDOMStorageItem) - The parameters's `type` _added_.
  5954. #### `DOMStorage`: modified events
  5955. * [`DOMStorage.domStorageItemAdded`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemAdded) - The parameters's `type` _added_.
  5956. * [`DOMStorage.domStorageItemRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemRemoved) - The parameters's `type` _added_.
  5957. * [`DOMStorage.domStorageItemUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemUpdated) - The parameters's `type` _added_.
  5958. * [`DOMStorage.domStorageItemsCleared`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#event-domStorageItemsCleared) - The parameters's `type` _added_.
  5959. #### `Database`: modified commands
  5960. * [`Database.executeSQL`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-executeSQL) - The parameters's `type` _added_. The return value's `type` _added_.
  5961. * [`Database.getDatabaseTableNames`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#method-getDatabaseTableNames) - The parameters's `type` _added_.
  5962. #### `Database`: modified event
  5963. * [`Database.addDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#event-addDatabase) - The parameters's `type` _added_.
  5964. #### `Database`: modified type
  5965. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database) - The properties's `type` _added_.
  5966. #### `Emulation`: modified commands
  5967. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride) - The parameters's `type` _added_.
  5968. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `type` _added_ (2 times).
  5969. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The parameters's `type` _added_ (2 times).
  5970. #### `HeadlessExperimental`: modified command
  5971. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The parameters's `type` _added_.
  5972. #### `IO`: modified commands
  5973. * [`IO.close`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-close) - The parameters's `type` _added_.
  5974. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read) - The parameters's `type` _added_.
  5975. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob) - The parameters's `type` _added_.
  5976. #### `IndexedDB`: modified commands
  5977. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries) - The parameters's `type` _added_.
  5978. * [`IndexedDB.requestData`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestData) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  5979. * [`IndexedDB.requestDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-requestDatabase) - The return value's `type` _added_.
  5980. #### `IndexedDB`: modified types
  5981. * [`IndexedDB.DatabaseWithObjectStores`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DatabaseWithObjectStores) - The `2` in the properties had `type` _added_.
  5982. * [`IndexedDB.ObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStore) - The properties's `type` _added_. The `3` in the properties had `type` _added_.
  5983. * [`IndexedDB.ObjectStoreIndex`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-ObjectStoreIndex) - The properties's `type` _added_.
  5984. * [`IndexedDB.Key`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-Key) - The `4` in the properties had `type` _added_.
  5985. * [`IndexedDB.KeyRange`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-KeyRange) - The properties's `type` _added_ (2 times).
  5986. * [`IndexedDB.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#type-DataEntry) - The properties's `type` _added_ (3 times).
  5987. #### `Input`: modified commands
  5988. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The parameters's `type` _added_.
  5989. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The parameters's `type` _added_.
  5990. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - The `1` in the parameters had `type` _added_. The parameters's `type` _added_.
  5991. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The parameters's `type` _added_.
  5992. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture) - The parameters's `type` _added_.
  5993. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture) - The parameters's `type` _added_.
  5994. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture) - The parameters's `type` _added_.
  5995. #### `LayerTree`: modified commands
  5996. * [`LayerTree.compositingReasons`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-compositingReasons) - The parameters's `type` _added_.
  5997. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot) - The `0` in the parameters had `type` _added_. The return value's `type` _added_.
  5998. * [`LayerTree.makeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-makeSnapshot) - The parameters's `type` _added_. The return value's `type` _added_.
  5999. * [`LayerTree.profileSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-profileSnapshot) - The parameters's `type` _added_ (2 times). The `0` in the return value had `type` _added_.
  6000. * [`LayerTree.releaseSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-releaseSnapshot) - The parameters's `type` _added_.
  6001. * [`LayerTree.replaySnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-replaySnapshot) - The parameters's `type` _added_.
  6002. * [`LayerTree.snapshotCommandLog`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-snapshotCommandLog) - The parameters's `type` _added_.
  6003. #### `LayerTree`: modified events
  6004. * [`LayerTree.layerPainted`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerPainted) - The parameters's `type` _added_ (2 times).
  6005. * [`LayerTree.layerTreeDidChange`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#event-layerTreeDidChange) - The `0` in the parameters had `type` _added_.
  6006. #### `LayerTree`: modified types
  6007. * [`LayerTree.ScrollRect`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-ScrollRect) - The properties's `type` _added_.
  6008. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint) - The properties's `type` _added_ (4 times).
  6009. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer) - The properties's `type` _added_ (4 times). The `14` in the properties had `type` _added_.
  6010. #### `Log`: modified command
  6011. * [`Log.startViolationsReport`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-startViolationsReport) - The `0` in the parameters had `type` _added_.
  6012. #### `Log`: modified event
  6013. * [`Log.entryAdded`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#event-entryAdded) - The parameters's `type` _added_.
  6014. #### `Log`: modified type
  6015. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry) - The properties's `type` _added_ (3 times). The `9` in the properties had `type` _added_.
  6016. #### `Memory`: modified commands
  6017. * [`Memory.simulatePressureNotification`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-simulatePressureNotification) - The parameters's `type` _added_.
  6018. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile) - The return value's `type` _added_.
  6019. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile) - The return value's `type` _added_.
  6020. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile) - The return value's `type` _added_.
  6021. #### `Memory`: modified type
  6022. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile) - The `0` in the properties had `type` _added_. The `1` in the properties had `type` _added_.
  6023. #### `Network`: modified commands
  6024. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - The parameters's `type` _added_ (4 times).
  6025. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions) - The parameters's `type` _added_.
  6026. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies) - The `0` in the return value had `type` _added_.
  6027. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - The `0` in the return value had `type` _added_.
  6028. * [`Network.getResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBody) - The parameters's `type` _added_.
  6029. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData) - The parameters's `type` _added_.
  6030. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception) - The parameters's `type` _added_.
  6031. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream) - The parameters's `type` _added_. The return value's `type` _added_.
  6032. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR) - The parameters's `type` _added_.
  6033. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  6034. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The parameters's `type` _added_ (2 times).
  6035. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies) - The `0` in the parameters had `type` _added_.
  6036. * [`Network.setExtraHTTPHeaders`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setExtraHTTPHeaders) - The parameters's `type` _added_.
  6037. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception) - The `0` in the parameters had `type` _added_.
  6038. #### `Network`: modified events
  6039. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived) - The parameters's `type` _added_ (2 times).
  6040. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived) - The parameters's `type` _added_ (2 times).
  6041. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed) - The parameters's `type` _added_ (4 times).
  6042. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished) - The parameters's `type` _added_ (2 times).
  6043. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The parameters's `type` _added_ (7 times).
  6044. * [`Network.requestServedFromCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestServedFromCache) - The parameters's `type` _added_.
  6045. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The parameters's `type` _added_ (9 times).
  6046. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority) - The parameters's `type` _added_ (3 times).
  6047. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived) - The parameters's `type` _added_ (2 times).
  6048. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The parameters's `type` _added_ (6 times).
  6049. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed) - The parameters's `type` _added_ (2 times).
  6050. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated) - The parameters's `type` _added_ (2 times).
  6051. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError) - The parameters's `type` _added_ (2 times).
  6052. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived) - The parameters's `type` _added_ (3 times).
  6053. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent) - The parameters's `type` _added_ (3 times).
  6054. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived) - The parameters's `type` _added_ (3 times).
  6055. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest) - The parameters's `type` _added_ (4 times).
  6056. #### `Network`: modified types
  6057. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The properties's `type` _added_ (3 times).
  6058. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp) - The properties's `type` _added_.
  6059. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails) - The properties's `type` _added_ (4 times). The `11` in the properties had `type` _added_.
  6060. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The properties's `type` _added_ (5 times).
  6061. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest) - The properties's `type` _added_.
  6062. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse) - The properties's `type` _added_ (2 times).
  6063. * [`Network.CachedResource`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CachedResource) - The properties's `type` _added_ (2 times).
  6064. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The properties's `type` _added_.
  6065. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie) - The properties's `type` _added_.
  6066. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - The properties's `type` _added_ (2 times).
  6067. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The properties's `type` _added_ (2 times).
  6068. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader) - The properties's `type` _added_. The `4` in the properties had `type` _added_.
  6069. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError) - The properties's `type` _added_.
  6070. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo) - The properties's `type` _added_ (3 times). The `3` in the properties had `type` _added_.
  6071. #### `Overlay`: modified commands
  6072. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest) - The parameters's `type` _added_.
  6073. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame) - The parameters's `type` _added_ (3 times).
  6074. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode) - The parameters's `type` _added_ (4 times).
  6075. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad) - The parameters's `type` _added_ (3 times).
  6076. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect) - The parameters's `type` _added_ (2 times).
  6077. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode) - The parameters's `type` _added_ (2 times).
  6078. #### `Overlay`: modified events
  6079. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested) - The parameters's `type` _added_.
  6080. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested) - The parameters's `type` _added_.
  6081. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested) - The parameters's `type` _added_.
  6082. #### `Overlay`: modified type
  6083. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `type` _added_ (8 times).
  6084. #### `Page`: modified commands
  6085. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad) - The return value's `type` _added_.
  6086. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - The return value's `type` _added_.
  6087. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot) - The parameters's `type` _added_.
  6088. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld) - The parameters's `type` _added_. The return value's `type` _added_.
  6089. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest) - The `1` in the return value had `type` _added_.
  6090. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies) - The `0` in the return value had `type` _added_.
  6091. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree) - The return value's `type` _added_.
  6092. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics) - The return value's `type` _added_ (3 times).
  6093. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory) - The `1` in the return value had `type` _added_.
  6094. * [`Page.getResourceContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceContent) - The parameters's `type` _added_.
  6095. * [`Page.getResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getResourceTree) - The return value's `type` _added_.
  6096. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The parameters's `type` _added_ (2 times). The return value's `type` _added_ (2 times).
  6097. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad) - The parameters's `type` _added_.
  6098. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument) - The parameters's `type` _added_.
  6099. * [`Page.searchInResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-searchInResource) - The parameters's `type` _added_. The `0` in the return value had `type` _added_.
  6100. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The parameters's `type` _added_ (2 times).
  6101. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies) - The parameters's `type` _added_.
  6102. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes) - The parameters's `type` _added_.
  6103. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent) - The parameters's `type` _added_.
  6104. #### `Page`: modified events
  6105. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired) - The parameters's `type` _added_.
  6106. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached) - The parameters's `type` _added_ (3 times).
  6107. * [`Page.frameClearedScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameClearedScheduledNavigation) - The parameters's `type` _added_.
  6108. * [`Page.frameDetached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameDetached) - The parameters's `type` _added_.
  6109. * [`Page.frameNavigated`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameNavigated) - The parameters's `type` _added_.
  6110. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The parameters's `type` _added_.
  6111. * [`Page.frameStartedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStartedLoading) - The parameters's `type` _added_.
  6112. * [`Page.frameStoppedLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameStoppedLoading) - The parameters's `type` _added_.
  6113. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening) - The parameters's `type` _added_.
  6114. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent) - The parameters's `type` _added_ (3 times).
  6115. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired) - The parameters's `type` _added_.
  6116. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument) - The parameters's `type` _added_.
  6117. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame) - The parameters's `type` _added_.
  6118. #### `Page`: modified types
  6119. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The properties's `type` _added_.
  6120. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource) - The properties's `type` _added_ (2 times).
  6121. * [`Page.FrameResourceTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResourceTree) - The properties's `type` _added_. The `1` in the properties had `type` _added_. The `2` in the properties had `type` _added_.
  6122. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree) - The properties's `type` _added_. The `1` in the properties had `type` _added_.
  6123. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry) - The properties's `type` _added_.
  6124. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata) - The properties's `type` _added_.
  6125. #### `Performance`: modified command
  6126. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics) - The `0` in the return value had `type` _added_.
  6127. #### `Performance`: modified event
  6128. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics) - The `0` in the parameters had `type` _added_.
  6129. #### `Security`: modified command
  6130. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError) - The parameters's `type` _added_.
  6131. #### `Security`: modified event
  6132. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged) - The parameters's `type` _added_ (2 times). The `2` in the parameters had `type` _added_.
  6133. #### `Security`: modified types
  6134. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The properties's `type` _added_ (2 times).
  6135. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus) - The properties's `type` _added_ (2 times).
  6136. #### `ServiceWorker`: modified events
  6137. * [`ServiceWorker.workerErrorReported`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerErrorReported) - The parameters's `type` _added_.
  6138. * [`ServiceWorker.workerRegistrationUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerRegistrationUpdated) - The `0` in the parameters had `type` _added_.
  6139. * [`ServiceWorker.workerVersionUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#event-workerVersionUpdated) - The `0` in the parameters had `type` _added_.
  6140. #### `ServiceWorker`: modified type
  6141. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion) - The properties's `type` _added_ (3 times). The `7` in the properties had `type` _added_.
  6142. #### `Storage`: modified command
  6143. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota) - The `2` in the return value had `type` _added_.
  6144. #### `Storage`: modified type
  6145. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType) - The properties's `type` _added_.
  6146. #### `SystemInfo`: modified command
  6147. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo) - The return value's `type` _added_.
  6148. #### `SystemInfo`: modified type
  6149. * [`SystemInfo.GPUInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#type-GPUInfo) - The `0` in the properties had `type` _added_.
  6150. #### `Target`: modified commands
  6151. * [`Target.activateTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-activateTarget) - The parameters's `type` _added_.
  6152. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget) - The parameters's `type` _added_. The return value's `type` _added_.
  6153. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget) - The return value's `type` _added_.
  6154. * [`Target.closeTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-closeTarget) - The parameters's `type` _added_.
  6155. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol) - The parameters's `type` _added_.
  6156. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - The return value's `type` _added_.
  6157. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts) - The `0` in the return value had `type` _added_.
  6158. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The parameters's `type` _added_. The return value's `type` _added_.
  6159. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget) - The parameters's `type` _added_ (2 times).
  6160. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - The parameters's `type` _added_.
  6161. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo) - The parameters's `type` _added_. The return value's `type` _added_.
  6162. * [`Target.getTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargets) - The `0` in the return value had `type` _added_.
  6163. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The parameters's `type` _added_ (2 times).
  6164. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations) - The `0` in the parameters had `type` _added_.
  6165. #### `Target`: modified events
  6166. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget) - The parameters's `type` _added_ (2 times).
  6167. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - The parameters's `type` _added_ (2 times).
  6168. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget) - The parameters's `type` _added_ (2 times).
  6169. * [`Target.targetCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCreated) - The parameters's `type` _added_.
  6170. * [`Target.targetDestroyed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetDestroyed) - The parameters's `type` _added_.
  6171. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed) - The parameters's `type` _added_.
  6172. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged) - The parameters's `type` _added_.
  6173. #### `Target`: modified type
  6174. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The properties's `type` _added_ (3 times).
  6175. #### `Tracing`: modified command
  6176. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The parameters's `type` _added_ (2 times).
  6177. #### `Tracing`: modified event
  6178. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The parameters's `type` _added_ (2 times).
  6179. #### `Tracing`: modified type
  6180. * [`Tracing.TraceConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-TraceConfig) - The properties's `type` _added_.
  6181. ## Roll protocol to r586443
  6182. ###### _2018-08-27 15:15:57_ | Diff: [cafc591...41333c5](https://github.com/ChromeDevTools/devtools-protocol/compare/cafc591...41333c5)
  6183. #### `Testing`: new domain
  6184. * [`Testing.Testing`](https://chromedevtools.github.io/devtools-protocol/tot/Testing/#domain-Testing)
  6185. #### `Testing`: new command
  6186. * [`Testing.generateTestReport`](https://chromedevtools.github.io/devtools-protocol/tot/Testing/#method-generateTestReport)
  6187. ## Roll protocol to r586417
  6188. ###### _2018-08-27 14:15:56_ | Diff: [fbe2ce1...cafc591](https://github.com/ChromeDevTools/devtools-protocol/compare/fbe2ce1...cafc591)
  6189. #### `Page`: new command
  6190. * [`Page.generateTestReport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-generateTestReport)
  6191. ## Roll protocol to r585632
  6192. ###### _2018-08-23 15:15:44_ | Diff: [d4361d7...fbe2ce1](https://github.com/ChromeDevTools/devtools-protocol/compare/d4361d7...fbe2ce1)
  6193. #### `Browser`: new commands
  6194. * [`Browser.grantPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-grantPermissions)
  6195. * [`Browser.resetPermissions`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-resetPermissions)
  6196. #### `Browser`: new type
  6197. * [`Browser.PermissionType`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-PermissionType)
  6198. ## Roll protocol to r584873
  6199. ###### _2018-08-21 12:15:50_ | Diff: [5fd6859...d4361d7](https://github.com/ChromeDevTools/devtools-protocol/compare/5fd6859...d4361d7)
  6200. #### `DOMSnapshot`: modified types
  6201. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The properties's `isStackingContext` _added_.
  6202. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The properties's `stackingContexts` _added_.
  6203. ## Roll protocol to r581326
  6204. ###### _2018-08-07 13:15:57_ | Diff: [45146f8...5fd6859](https://github.com/ChromeDevTools/devtools-protocol/compare/45146f8...5fd6859)
  6205. #### `Memory`: new type
  6206. * [`Memory.Module`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-Module)
  6207. #### `Memory`: modified type
  6208. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile) - The properties's `modules` _added_.
  6209. ## Roll protocol to r579242
  6210. ###### _2018-07-30 17:16:01_ | Diff: [501e985...45146f8](https://github.com/ChromeDevTools/devtools-protocol/compare/501e985...45146f8)
  6211. #### `Target`: modified command
  6212. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - The parameters's `flatten` _added_.
  6213. ## Roll protocol to r578934
  6214. ###### _2018-07-28 13:15:43_ | Diff: [5c95923...501e985](https://github.com/ChromeDevTools/devtools-protocol/compare/5c95923...501e985)
  6215. #### `Input`: new command
  6216. * [`Input.insertText`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-insertText)
  6217. ## Roll protocol to r576560
  6218. ###### _2018-07-19 11:16:22_ | Diff: [05a3c0e...5c95923](https://github.com/ChromeDevTools/devtools-protocol/compare/05a3c0e...5c95923)
  6219. #### `Page`: new commands
  6220. * [`Page.setProduceCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setProduceCompilationCache)
  6221. * [`Page.addCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addCompilationCache)
  6222. * [`Page.clearCompilationCache`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearCompilationCache)
  6223. #### `Page`: new event
  6224. * [`Page.compilationCacheProduced`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-compilationCacheProduced)
  6225. ## Roll protocol to r575147
  6226. ###### _2018-07-13 21:15:43_ | Diff: [090126c...05a3c0e](https://github.com/ChromeDevTools/devtools-protocol/compare/090126c...05a3c0e)
  6227. #### `Target`: new command
  6228. * [`Target.attachToBrowserTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToBrowserTarget)
  6229. ## Roll protocol to r574367
  6230. ###### _2018-07-11 15:15:44_ | Diff: [26e4e07...090126c](https://github.com/ChromeDevTools/devtools-protocol/compare/26e4e07...090126c)
  6231. #### `DOMSnapshot`: new type
  6232. * [`DOMSnapshot.NodeTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NodeTreeSnapshot)
  6233. #### `DOMSnapshot`: modified type
  6234. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot) - The properties's `documentURL` _removed_. The properties's `baseURL` _removed_. The properties's `contentLanguage` _removed_. The properties's `documentEncoding` _removed_. The properties's `publicId` _removed_. The properties's `systemId` _removed_. The properties's `frameId` _removed_. The properties's `contentDocumentIndex` _removed_. The properties's `pseudoType` _removed_. The properties's `isClickable` _removed_. The properties's `currentSourceURL` _removed_. The properties's `originURL` _removed_. The properties's `layoutSnapshot` _removed_. The properties's `textBoxSnapshot` _removed_. The `parentIndex` in the properties had `optional` _removed_. The `parentIndex` in the properties had `type` _removed_. The `parentIndex` in the properties had `items` _removed_. The `nodeType` in the properties had `optional` _removed_. The `nodeType` in the properties had `type` _removed_. The `nodeType` in the properties had `items` _removed_. The `nodeName` in the properties had `optional` _removed_. The `nodeName` in the properties had `type` _removed_. The `nodeName` in the properties had `items` _removed_. The `nodeValue` in the properties had `optional` _removed_. The `nodeValue` in the properties had `type` _removed_. The `nodeValue` in the properties had `items` _removed_. The `backendNodeId` in the properties had `optional` _removed_. The `backendNodeId` in the properties had `type` _removed_. The `backendNodeId` in the properties had `items` _removed_. The `attributes` in the properties had `optional` _removed_. The `attributes` in the properties had `type` _removed_. The `attributes` in the properties had `items` _removed_. The `textValue` in the properties had `optional` _removed_. The `inputValue` in the properties had `optional` _removed_. The `inputChecked` in the properties had `optional` _removed_. The `optionSelected` in the properties had `optional` _removed_. `description` updated. The `parentIndex` in the properties had `name` _updated_. The `parentIndex` in the properties had `description` _updated_. The `nodeType` in the properties had `name` _updated_. The `nodeType` in the properties had `description` _updated_. The `nodeName` in the properties had `name` _updated_. The `nodeName` in the properties had `description` _updated_. The `nodeValue` in the properties had `name` _updated_. The `nodeValue` in the properties had `description` _updated_. The `backendNodeId` in the properties had `name` _updated_. The `backendNodeId` in the properties had `description` _updated_. The `attributes` in the properties had `name` _updated_. The `attributes` in the properties had `description` _updated_. The `textValue` in the properties had `name` _updated_. The `textValue` in the properties had `description` _updated_. The `textValue` in the properties had `$ref` _updated_. The `inputValue` in the properties had `name` _updated_. The `inputValue` in the properties had `description` _updated_. The `inputValue` in the properties had `$ref` _updated_. The `inputChecked` in the properties had `name` _updated_. The `inputChecked` in the properties had `description` _updated_. The `inputChecked` in the properties had `$ref` _updated_. The `optionSelected` in the properties had `name` _updated_. The `optionSelected` in the properties had `description` _updated_. The `optionSelected` in the properties had `$ref` _updated_. The properties's `$ref` _added_ (6 times).
  6235. ## Roll protocol to r574025
  6236. ###### _2018-07-10 18:15:41_ | Diff: [1aa7b31...26e4e07](https://github.com/ChromeDevTools/devtools-protocol/compare/1aa7b31...26e4e07)
  6237. #### `DOMSnapshot`: modified command
  6238. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot) - The return value's `strings` _removed_. The `nodes` in the return value had `$ref` _removed_. The `layout` in the return value had `$ref` _removed_. The `nodes` in the return value had `name` _updated_. The `layout` in the return value had `name` _updated_. The `layout` in the return value had `description` _updated_. The return value's `type` _added_ (2 times). The return value's `items` _added_ (2 times).
  6239. #### `DOMSnapshot`: new type
  6240. * [`DOMSnapshot.DocumentSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DocumentSnapshot)
  6241. #### `DOMSnapshot`: removed types
  6242. * [`DOMSnapshot.DOMTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMTreeSnapshot)
  6243. * [`DOMSnapshot.StylesSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StylesSnapshot)
  6244. #### `DOMSnapshot`: modified types
  6245. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `currentSourceURL` _removed_. The properties's `originURL` _removed_. The `importedDocumentIndex` in the properties had `type` _removed_. The `templateContentIndex` in the properties had `type` _removed_. The `pseudoType` in the properties had `$ref` _removed_. The `shadowRootType` in the properties had `$ref` _removed_. The `eventListeners` in the properties had `items` _removed_. The `importedDocumentIndex` in the properties had `name` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `name` _updated_. The `templateContentIndex` in the properties had `description` _updated_. The `pseudoType` in the properties had `name` _updated_. The `pseudoType` in the properties had `description` _updated_. The `shadowRootType` in the properties had `name` _updated_. The `shadowRootType` in the properties had `description` _updated_. The `isClickable` in the properties had `name` _updated_. The `isClickable` in the properties had `description` _updated_. The `isClickable` in the properties had `type` _updated_. The `eventListeners` in the properties had `name` _updated_. The `eventListeners` in the properties had `description` _updated_. The `eventListeners` in the properties had `type` _updated_. The properties's `$ref` _added_ (2 times). The properties's `type` _added_ (2 times). The properties's `items` _added_.
  6246. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot) - The properties's `textBoxes` _removed_.
  6247. ## Roll protocol to r572598
  6248. ###### _2018-07-04 09:15:41_ | Diff: [19fb3d2...1aa7b31](https://github.com/ChromeDevTools/devtools-protocol/compare/19fb3d2...1aa7b31)
  6249. #### `Target`: modified command
  6250. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget) - The parameters's `flatten` _added_.
  6251. ## Roll protocol to r572401
  6252. ###### _2018-07-03 17:15:50_ | Diff: [be1ed43...19fb3d2](https://github.com/ChromeDevTools/devtools-protocol/compare/be1ed43...19fb3d2)
  6253. #### `Target`: modified command
  6254. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo) - The parameters's `optional` _added_.
  6255. ## Roll protocol to r572389
  6256. ###### _2018-07-03 16:15:52_ | Diff: [7388b4b...be1ed43](https://github.com/ChromeDevTools/devtools-protocol/compare/7388b4b...be1ed43)
  6257. #### `Browser`: modified commands
  6258. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms) - The parameters's `delta` _added_.
  6259. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram) - The parameters's `delta` _added_.
  6260. ## Roll protocol to r572315
  6261. ###### _2018-07-03 12:15:46_ | Diff: [a63ed5b...7388b4b](https://github.com/ChromeDevTools/devtools-protocol/compare/a63ed5b...7388b4b)
  6262. #### `DOMSnapshot`: new command
  6263. * [`DOMSnapshot.captureSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-captureSnapshot)
  6264. #### `DOMSnapshot`: modified command
  6265. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - `deprecated` added.
  6266. #### `DOMSnapshot`: new types
  6267. * [`DOMSnapshot.StringIndex`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StringIndex)
  6268. * [`DOMSnapshot.ArrayOfStrings`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ArrayOfStrings)
  6269. * [`DOMSnapshot.RareStringData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareStringData)
  6270. * [`DOMSnapshot.RareBooleanData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareBooleanData)
  6271. * [`DOMSnapshot.RareIntegerData`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-RareIntegerData)
  6272. * [`DOMSnapshot.Rectangle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-Rectangle)
  6273. * [`DOMSnapshot.DOMTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMTreeSnapshot)
  6274. * [`DOMSnapshot.TextBoxSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-TextBoxSnapshot)
  6275. * [`DOMSnapshot.LayoutTreeSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeSnapshot)
  6276. * [`DOMSnapshot.StylesSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-StylesSnapshot)
  6277. ## Roll protocol to r571238
  6278. ###### _2018-06-28 13:16:10_ | Diff: [ca7022c...a63ed5b](https://github.com/ChromeDevTools/devtools-protocol/compare/ca7022c...a63ed5b)
  6279. #### `DOM`: new command
  6280. * [`DOM.getContentQuads`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getContentQuads)
  6281. ## Roll protocol to r568337
  6282. ###### _2018-06-18 21:15:42_ | Diff: [6e2dac6...0905e28](https://github.com/ChromeDevTools/devtools-protocol/compare/6e2dac6...0905e28)
  6283. #### `Network`: modified type
  6284. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason) - The enum's `collapsed-by-client` _added_.
  6285. ## Roll protocol to r567107
  6286. ###### _2018-06-13 20:15:40_ | Diff: [b8a5362...6e2dac6](https://github.com/ChromeDevTools/devtools-protocol/compare/b8a5362...6e2dac6)
  6287. #### `Target`: new command
  6288. * [`Target.exposeDevToolsProtocol`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-exposeDevToolsProtocol)
  6289. ## Roll protocol to r565882
  6290. ###### _2018-06-09 08:15:49_ | Diff: [034b051...b8a5362](https://github.com/ChromeDevTools/devtools-protocol/compare/034b051...b8a5362)
  6291. #### `Page`: modified type
  6292. * [`Page.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ResourceType) - The enum's `Other` _updated_. The enum's `CSPViolationReport` _added_. The enum's `Other` _added_.
  6293. ## Roll protocol to r565873
  6294. ###### _2018-06-09 01:15:38_ | Diff: [ef21b44...034b051](https://github.com/ChromeDevTools/devtools-protocol/compare/ef21b44...034b051)
  6295. #### `Network`: modified type
  6296. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `headers` in the properties had `$ref` _removed_. The `postData` in the properties had `optional` _removed_. The `postData` in the properties had `type` _removed_. The `mixedContentType` in the properties had `$ref` _removed_. The `referrerPolicy` in the properties had `type` _removed_. The `referrerPolicy` in the properties had `enum` _removed_. The `isLinkPreload` in the properties had `optional` _removed_. The `url` in the properties had `description` _updated_. The `method` in the properties had `name` _updated_. The `method` in the properties had `description` _updated_. The `headers` in the properties had `name` _updated_. The `headers` in the properties had `description` _updated_. The `postData` in the properties had `name` _updated_. The `postData` in the properties had `description` _updated_. The `hasPostData` in the properties had `name` _updated_. The `hasPostData` in the properties had `description` _updated_. The `hasPostData` in the properties had `type` _updated_. The `mixedContentType` in the properties had `name` _updated_. The `mixedContentType` in the properties had `description` _updated_. The `initialPriority` in the properties had `name` _updated_. The `initialPriority` in the properties had `description` _updated_. The `initialPriority` in the properties had `$ref` _updated_. The `referrerPolicy` in the properties had `name` _updated_. The `referrerPolicy` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `name` _updated_. The `isLinkPreload` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `type` _updated_. The properties's `optional` _added_ (2 times). The properties's `type` _added_ (2 times). The properties's `$ref` _added_ (2 times). The properties's `enum` _added_. The properties's `isLinkPreload` _added_.
  6297. ## Roll protocol to r565161
  6298. ###### _2018-06-06 20:15:42_ | Diff: [e6b9650...ef21b44](https://github.com/ChromeDevTools/devtools-protocol/compare/e6b9650...ef21b44)
  6299. #### `Page`: new command
  6300. * [`Page.setFontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontSizes)
  6301. #### `Page`: modified command
  6302. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies) - `description` updated. The `fontFamilies` in the parameters had `description` _updated_.
  6303. #### `Page`: new type
  6304. * [`Page.FontSizes`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontSizes)
  6305. ## Roll protocol to r564968
  6306. ###### _2018-06-06 11:15:47_ | Diff: [78ab8c3...e6b9650](https://github.com/ChromeDevTools/devtools-protocol/compare/78ab8c3...e6b9650)
  6307. #### `Network`: modified event
  6308. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished) - The `blockedCrossSiteDocument` in the parameters had `name` _updated_. The `blockedCrossSiteDocument` in the parameters had `description` _updated_.
  6309. ## Roll protocol to r564939
  6310. ###### _2018-06-06 10:16:18_ | Diff: [8cc61c7...78ab8c3](https://github.com/ChromeDevTools/devtools-protocol/compare/8cc61c7...78ab8c3)
  6311. #### `Page`: new command
  6312. * [`Page.setFontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setFontFamilies)
  6313. #### `Page`: new type
  6314. * [`Page.FontFamilies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FontFamilies)
  6315. ## Roll protocol to r564874
  6316. ###### _2018-06-06 07:16:13_ | Diff: [3bb6299...8cc61c7](https://github.com/ChromeDevTools/devtools-protocol/compare/3bb6299...8cc61c7)
  6317. #### `Runtime`: modified command
  6318. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding) - `description` updated. The parameters's `executionContextId` _added_.
  6319. ## Roll protocol to r564725
  6320. ###### _2018-06-05 17:15:41_ | Diff: [2c9e648...3bb6299](https://github.com/ChromeDevTools/devtools-protocol/compare/2c9e648...3bb6299)
  6321. #### `Emulation`: new command
  6322. * [`Emulation.setDocumentCookieDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDocumentCookieDisabled)
  6323. ## Roll protocol to r564347
  6324. ###### _2018-06-04 19:15:53_ | Diff: [e5023ab...2c9e648](https://github.com/ChromeDevTools/devtools-protocol/compare/e5023ab...2c9e648)
  6325. #### `Runtime`: new command
  6326. * [`Runtime.setMaxCallStackSizeToCapture`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setMaxCallStackSizeToCapture)
  6327. ## Roll protocol to r563930 554653 554626
  6328. ###### _2018-06-01 22:15:40_ | Diff: [92b6b49...170e987](https://github.com/ChromeDevTools/devtools-protocol/compare/92b6b49...170e987)
  6329. #### `Runtime`: new commands
  6330. * [`Runtime.addBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-addBinding)
  6331. * [`Runtime.removeBinding`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-removeBinding)
  6332. #### `Runtime`: new event
  6333. * [`Runtime.bindingCalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-bindingCalled)
  6334. ## Roll protocol to r563694
  6335. ###### _2018-06-01 10:15:46_ | Diff: [686864e...38129ec](https://github.com/ChromeDevTools/devtools-protocol/compare/686864e...38129ec)
  6336. #### `Runtime`: new command
  6337. * [`Runtime.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-setAsyncCallStackDepth)
  6338. ## Roll protocol to r563547
  6339. ###### _2018-05-31 23:15:35_ | Diff: [8490a4e...686864e](https://github.com/ChromeDevTools/devtools-protocol/compare/8490a4e...686864e)
  6340. #### `Target`: new event
  6341. * [`Target.targetCrashed`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetCrashed)
  6342. ## Roll protocol to r563180
  6343. ###### _2018-05-31 01:15:44_ | Diff: [a53449b...8490a4e](https://github.com/ChromeDevTools/devtools-protocol/compare/a53449b...8490a4e)
  6344. #### `Network`: new types
  6345. * [`Network.SignedExchangeErrorField`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeErrorField)
  6346. * [`Network.SignedExchangeError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeError)
  6347. #### `Network`: modified type
  6348. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo) - The `errors` in the properties had `type` _removed_. The `3` in the properties had `$ref` _added_.
  6349. ## Roll protocol to r562716
  6350. ###### _2018-05-29 20:15:40_ | Diff: [1c585c3...a53449b](https://github.com/ChromeDevTools/devtools-protocol/compare/1c585c3...a53449b)
  6351. #### `Emulation`: new command
  6352. * [`Emulation.setScrollbarsHidden`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScrollbarsHidden)
  6353. ## Roll protocol to r562010
  6354. ###### _2018-05-25 14:17:24_ | Diff: [05729d1...1c585c3](https://github.com/ChromeDevTools/devtools-protocol/compare/05729d1...1c585c3)
  6355. #### `Emulation`: new command
  6356. * [`Emulation.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setUserAgentOverride)
  6357. #### `Emulation`: modified command
  6358. * [`Emulation.setNavigatorOverrides`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setNavigatorOverrides) - `deprecated` added.
  6359. #### `Network`: modified command
  6360. * [`Network.setUserAgentOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setUserAgentOverride) - `redirect` added. The parameters's `acceptLanguage` _added_. The parameters's `platform` _added_.
  6361. ## Roll protocol to r561764
  6362. ###### _2018-05-24 21:16:41_ | Diff: [7369468...05729d1](https://github.com/ChromeDevTools/devtools-protocol/compare/7369468...05729d1)
  6363. #### `Network`: modified type
  6364. * [`Network.SignedExchangeSignature`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeSignature) - The `integrity` in the properties had `name` _updated_. The `integrity` in the properties had `description` _updated_. The `certUrl` in the properties had `name` _updated_. The `certUrl` in the properties had `description` _updated_. The `validityUrl` in the properties had `name` _updated_. The `validityUrl` in the properties had `description` _updated_. The `date` in the properties had `name` _updated_. The `date` in the properties had `description` _updated_. The `date` in the properties had `type` _updated_. The `expires` in the properties had `name` _updated_. The `expires` in the properties had `description` _updated_. The `expires` in the properties had `type` _updated_. The properties's `optional` _added_ (2 times). The properties's `date` _added_. The properties's `expires` _added_. The properties's `certificates` _added_.
  6365. ## Roll protocol to r560325
  6366. ###### _2018-05-21 12:16:45_ | Diff: [375788c...7369468](https://github.com/ChromeDevTools/devtools-protocol/compare/375788c...7369468)
  6367. #### `DOMSnapshot`: new commands
  6368. * [`DOMSnapshot.disable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-disable)
  6369. * [`DOMSnapshot.enable`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-enable)
  6370. #### `DOMSnapshot`: modified type
  6371. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `originURL` _added_.
  6372. ## Roll protocol to r560288
  6373. ###### _2018-05-21 10:16:32_ | Diff: [9ba7e8e...375788c](https://github.com/ChromeDevTools/devtools-protocol/compare/9ba7e8e...375788c)
  6374. #### `Network`: modified type
  6375. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The `type` in the properties had `other` _updated_. The `url` in the properties had `description` _updated_. The `0` in the properties had `other` _added_.
  6376. ## Roll protocol to r559758
  6377. ###### _2018-05-17 18:17:25_ | Diff: [f1dbfcc...9ba7e8e](https://github.com/ChromeDevTools/devtools-protocol/compare/f1dbfcc...9ba7e8e)
  6378. #### `Emulation`: modified command
  6379. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The return value's `virtualTimeTicksBase` _removed_. The `virtualTimeBase` in the return value had `$ref` _removed_. The `virtualTimeBase` in the return value had `name` _updated_. The `virtualTimeBase` in the return value had `description` _updated_. The return value's `type` _added_.
  6380. #### `HeadlessExperimental`: modified command
  6381. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The parameters's `interval` _removed_. The parameters's `noDisplayUpdates` _removed_. The parameters's `screenshot` _removed_. The `frameTime` in the parameters had `$ref` _removed_. The `deadline` in the parameters had `$ref` _removed_. The `deadlineTicks` in the parameters had `type` _removed_. The `frameTime` in the parameters had `name` _updated_. The `frameTime` in the parameters had `description` _updated_. The `frameTimeTicks` in the parameters had `name` _updated_. The `frameTimeTicks` in the parameters had `description` _updated_. The `deadline` in the parameters had `name` _updated_. The `deadline` in the parameters had `description` _updated_. The `deadlineTicks` in the parameters had `name` _updated_. The `deadlineTicks` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_.
  6382. ## Roll protocol to r559378
  6383. ###### _2018-05-16 18:17:29_ | Diff: [fbaebb8...f1dbfcc](https://github.com/ChromeDevTools/devtools-protocol/compare/fbaebb8...f1dbfcc)
  6384. #### `Network`: new types
  6385. * [`Network.SignedExchangeSignature`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeSignature)
  6386. * [`Network.SignedExchangeHeader`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeHeader)
  6387. #### `Network`: modified type
  6388. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo) - The properties's `header` _added_. The properties's `securityDetails` _added_. The properties's `errors` _added_.
  6389. ## Roll protocol to r558951
  6390. ###### _2018-05-15 20:17:16_ | Diff: [089aa20...fbaebb8](https://github.com/ChromeDevTools/devtools-protocol/compare/089aa20...fbaebb8)
  6391. #### `Network`: modified type
  6392. * [`Network.ErrorReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ErrorReason) - The enum's `BlockedByClient` _added_. The enum's `BlockedByResponse` _added_.
  6393. ## Roll protocol to r558587
  6394. ###### _2018-05-14 19:17:03_ | Diff: [981276a...089aa20](https://github.com/ChromeDevTools/devtools-protocol/compare/981276a...089aa20)
  6395. #### `HeadlessExperimental`: removed command
  6396. * [`HeadlessExperimental.enterDeterministicMode`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enterDeterministicMode)
  6397. ## Roll protocol to r558111
  6398. ###### _2018-05-11 21:17:36_ | Diff: [50de366...981276a](https://github.com/ChromeDevTools/devtools-protocol/compare/50de366...981276a)
  6399. #### `Network`: modified type
  6400. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason) - The enum's `csp` _updated_. The enum's `mixed-content` _updated_. The enum's `origin` _updated_. The enum's `inspector` _updated_. The enum's `subresource-filter` _updated_. The enum's `content-type` _updated_. The enum's `other` _updated_.
  6401. ## Roll protocol to r557426
  6402. ###### _2018-05-09 19:16:30_ | Diff: [2dd2129...50de366](https://github.com/ChromeDevTools/devtools-protocol/compare/2dd2129...50de366)
  6403. #### `Page`: modified type
  6404. * [`Page.ResourceType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ResourceType) - The enum's `Other` _updated_. The enum's `Other` _added_.
  6405. ## Roll protocol to r557245
  6406. ###### _2018-05-09 11:16:32_ | Diff: [fe1ebc7...2dd2129](https://github.com/ChromeDevTools/devtools-protocol/compare/fe1ebc7...2dd2129)
  6407. #### `Network`: new event
  6408. * [`Network.signedExchangeReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-signedExchangeReceived)
  6409. #### `Network`: new type
  6410. * [`Network.SignedExchangeInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedExchangeInfo)
  6411. ## Roll protocol to r556981
  6412. ###### _2018-05-08 15:17:35_ | Diff: [eef9084...fe1ebc7](https://github.com/ChromeDevTools/devtools-protocol/compare/eef9084...fe1ebc7)
  6413. #### `Target`: new command
  6414. * [`Target.getBrowserContexts`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getBrowserContexts)
  6415. ## Roll protocol to r556911
  6416. ###### _2018-05-08 12:17:45_ | Diff: [c3f4857...eef9084](https://github.com/ChromeDevTools/devtools-protocol/compare/c3f4857...eef9084)
  6417. #### `Target`: modified commands
  6418. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `browserContextId` in the parameters had `description` _updated_.
  6419. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - `description` updated.
  6420. ## Roll protocol to r556284
  6421. ###### _2018-05-04 18:16:12_ | Diff: [e638d2b...c3f4857](https://github.com/ChromeDevTools/devtools-protocol/compare/e638d2b...c3f4857)
  6422. #### `Target`: modified commands
  6423. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `browserContextId` in the parameters had `description` _updated_.
  6424. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - `description` updated.
  6425. ## Roll protocol to r555991
  6426. ###### _2018-05-03 22:17:28_ | Diff: [7fff91e...e638d2b](https://github.com/ChromeDevTools/devtools-protocol/compare/7fff91e...e638d2b)
  6427. #### `Network`: modified type
  6428. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason) - The enum's `other` _updated_. The enum's `other` _added_.
  6429. ## Roll protocol to r555920
  6430. ###### _2018-05-03 17:17:33_ | Diff: [71093c0...7fff91e](https://github.com/ChromeDevTools/devtools-protocol/compare/71093c0...7fff91e)
  6431. #### `Accessibility`: modified type
  6432. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName) - The enum's `haspopup` _updated_.
  6433. ## Roll protocol to r555642
  6434. ###### _2018-05-02 18:17:15_ | Diff: [1bac408...71093c0](https://github.com/ChromeDevTools/devtools-protocol/compare/1bac408...71093c0)
  6435. #### `Target`: modified commands
  6436. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `browserContextId` in the parameters had `description` _updated_.
  6437. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - `description` updated.
  6438. ## Roll protocol to r555444
  6439. ###### _2018-05-02 10:16:49_ | Diff: [3db7418...847cc8f](https://github.com/ChromeDevTools/devtools-protocol/compare/3db7418...847cc8f)
  6440. #### `Emulation`: modified command
  6441. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The parameters's `initialVirtualTime` _added_.
  6442. ## Roll protocol to r555290
  6443. ###### _2018-05-01 19:36:15_ | Diff: [a4e1551...3f3afae](https://github.com/ChromeDevTools/devtools-protocol/compare/a4e1551...3f3afae)
  6444. #### `Debugger`: modified command
  6445. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The parameters's `timeout` _added_.
  6446. #### `IO`: modified command
  6447. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read) - The `offset` in the parameters had `description` _updated_.
  6448. #### `Network`: new command
  6449. * [`Network.takeResponseBodyForInterceptionAsStream`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-takeResponseBodyForInterceptionAsStream)
  6450. #### `Network`: modified event
  6451. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `authChallenge` in the parameters had `$ref` _removed_. The `responseStatusCode` in the parameters had `type` _removed_. The `responseHeaders` in the parameters had `$ref` _removed_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `type` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The `responseErrorReason` in the parameters had `name` _updated_. The `responseErrorReason` in the parameters had `description` _updated_. The `responseErrorReason` in the parameters had `$ref` _updated_. The `responseStatusCode` in the parameters had `name` _updated_. The `responseStatusCode` in the parameters had `description` _updated_. The `responseHeaders` in the parameters had `name` _updated_. The `responseHeaders` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_. The parameters's `responseHeaders` _added_.
  6452. #### `Page`: new commands
  6453. * [`Page.close`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-close)
  6454. * [`Page.setWebLifecycleState`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setWebLifecycleState)
  6455. #### `Target`: modified type
  6456. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The properties's `browserContextId` _added_.
  6457. ## Roll protocol to r552984
  6458. ###### _2018-04-23 20:15:56_ | Diff: [be9625a...f92b9bc](https://github.com/ChromeDevTools/devtools-protocol/compare/be9625a...f92b9bc)
  6459. #### `Debugger`: new command
  6460. * [`Debugger.setBreakpointOnFunctionCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointOnFunctionCall)
  6461. ## Roll protocol to r551066
  6462. ###### _2018-04-16 12:16:51_ | Diff: [fcfcf97...be9625a](https://github.com/ChromeDevTools/devtools-protocol/compare/fcfcf97...be9625a)
  6463. #### `DOMSnapshot`: modified command
  6464. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - The parameters's `includeUserAgentShadowTree` _added_.
  6465. ## Roll protocol to r550912
  6466. ###### _2018-04-14 21:15:26_ | Diff: [3d34c50...fcfcf97](https://github.com/ChromeDevTools/devtools-protocol/compare/3d34c50...fcfcf97)
  6467. #### `CSS`: modified command
  6468. * [`CSS.getStyleSheetText`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getStyleSheetText) - `description` updated.
  6469. ## Roll protocol to r550912
  6470. ###### _2018-04-14 20:16:17_ | Diff: [82883de...4e76695](https://github.com/ChromeDevTools/devtools-protocol/compare/82883de...4e76695)
  6471. #### `Runtime`: modified command
  6472. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `timeout` _added_.
  6473. #### `Runtime`: new type
  6474. * [`Runtime.TimeDelta`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-TimeDelta)
  6475. ## Roll protocol to r549285
  6476. ###### _2018-04-09 14:42:08_ | Diff: [269e3b9...d3103cb](https://github.com/ChromeDevTools/devtools-protocol/compare/269e3b9...d3103cb)
  6477. #### `Accessibility`: modified command
  6478. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree) - The `fetchRelatives` in the parameters had `type` _removed_. The `nodeId` in the parameters had `description` _updated_. The `fetchRelatives` in the parameters had `name` _updated_. The `fetchRelatives` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `$ref` _added_. The parameters's `objectId` _added_. The parameters's `fetchRelatives` _added_.
  6479. ## Roll protocol to r548694 546310
  6480. ###### _2018-04-05 23:16:18_ | Diff: [8dcb075...b4e9799](https://github.com/ChromeDevTools/devtools-protocol/compare/8dcb075...b4e9799)
  6481. #### `Page`: new event
  6482. * [`Page.navigatedWithinDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigatedWithinDocument)
  6483. ## Roll protocol to r548678
  6484. ###### _2018-04-05 22:16:22_ | Diff: [1c8a690...8dcb075](https://github.com/ChromeDevTools/devtools-protocol/compare/1c8a690...8dcb075)
  6485. #### `Network`: new type
  6486. * [`Network.CertificateTransparencyCompliance`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CertificateTransparencyCompliance)
  6487. #### `Network`: modified type
  6488. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails) - The properties's `certificateTransparencyCompliance` _added_.
  6489. ## Roll protocol to r548607
  6490. ###### _2018-04-05 16:16:34_ | Diff: [9ce98fd...1c8a690](https://github.com/ChromeDevTools/devtools-protocol/compare/9ce98fd...1c8a690)
  6491. #### `Page`: new command
  6492. * [`Page.setBypassCSP`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setBypassCSP)
  6493. ## Roll protocol to r548385
  6494. ###### _2018-04-05 04:15:56_ | Diff: [028a567...9ce98fd](https://github.com/ChromeDevTools/devtools-protocol/compare/028a567...9ce98fd)
  6495. #### `Emulation`: modified command
  6496. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The return value's `virtualTimeTicksBase` _added_.
  6497. #### `HeadlessExperimental`: modified command
  6498. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The `deadline` in the parameters had `$ref` _removed_. The `interval` in the parameters had `type` _removed_. The `screenshot` in the parameters had `$ref` _removed_. The `frameTime` in the parameters had `description` _updated_. The `deadline` in the parameters had `name` _updated_. The `deadline` in the parameters had `description` _updated_. The `interval` in the parameters had `name` _updated_. The `interval` in the parameters had `description` _updated_. The `noDisplayUpdates` in the parameters had `name` _updated_. The `noDisplayUpdates` in the parameters had `description` _updated_. The `noDisplayUpdates` in the parameters had `type` _updated_. The `screenshot` in the parameters had `name` _updated_. The `screenshot` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_. The parameters's `noDisplayUpdates` _added_. The parameters's `screenshot` _added_.
  6499. ## Roll protocol to r548216
  6500. ###### _2018-04-04 15:17:24_ | Diff: [20d9703...86650dd](https://github.com/ChromeDevTools/devtools-protocol/compare/20d9703...86650dd)
  6501. #### `Page`: modified event
  6502. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening) - The `defaultPrompt` in the parameters had `optional` _removed_. The `defaultPrompt` in the parameters had `name` _updated_. The `defaultPrompt` in the parameters had `description` _updated_. The `defaultPrompt` in the parameters had `type` _updated_. The parameters's `defaultPrompt` _added_.
  6503. ## Roll protocol to r547073
  6504. ###### _2018-03-29 19:17:03_ | Diff: [e367b98...914920e](https://github.com/ChromeDevTools/devtools-protocol/compare/e367b98...914920e)
  6505. #### `Page`: modified command
  6506. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The `headerTemplate` in the parameters had `description` _updated_.
  6507. #### `Security`: modified command
  6508. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors) - `description` updated.
  6509. #### `Security`: modified event
  6510. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError) - `description` updated.
  6511. ## Roll protocol to r544660
  6512. ###### _2018-03-21 03:16:20_ | Diff: [e4fc001...f5b1e8d](https://github.com/ChromeDevTools/devtools-protocol/compare/e4fc001...f5b1e8d)
  6513. #### `Runtime`: new commands
  6514. * [`Runtime.getIsolateId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getIsolateId)
  6515. * [`Runtime.getHeapUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getHeapUsage)
  6516. ## Roll protocol to r544006
  6517. ###### _2018-03-19 04:16:53_ | Diff: [250bac6...e4fc001](https://github.com/ChromeDevTools/devtools-protocol/compare/250bac6...e4fc001)
  6518. #### `Runtime`: new command
  6519. * [`Runtime.terminateExecution`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-terminateExecution)
  6520. ## Roll protocol to r543304
  6521. ###### _2018-03-14 21:16:19_ | Diff: [792ac23...250bac6](https://github.com/ChromeDevTools/devtools-protocol/compare/792ac23...250bac6)
  6522. #### `Runtime`: modified command
  6523. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects) - The parameters's `objectGroup` _added_.
  6524. ## Roll protocol to r542783
  6525. ###### _2018-03-13 06:16:56_ | Diff: [73a2c13...792ac23](https://github.com/ChromeDevTools/devtools-protocol/compare/73a2c13...792ac23)
  6526. #### `DOMSnapshot`: modified command
  6527. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - The parameters's `includePaintOrder` _added_.
  6528. #### `DOMSnapshot`: modified types
  6529. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - The `startCharacterIndex` in the properties had `description` _updated_. The `numCharacters` in the properties had `description` _updated_.
  6530. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The properties's `paintOrder` _added_.
  6531. ## Roll protocol to r542397
  6532. ###### _2018-03-11 03:15:46_ | Diff: [551a1eb...73a2c13](https://github.com/ChromeDevTools/devtools-protocol/compare/551a1eb...73a2c13)
  6533. #### `Runtime`: modified types
  6534. * [`Runtime.UnserializableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UnserializableValue) - `description` updated.
  6535. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `0` in the properties had `bigint` _added_.
  6536. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview) - The `0` in the properties had `bigint` _added_.
  6537. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview) - The `1` in the properties had `bigint` _added_.
  6538. ## Roll protocol to r541521
  6539. ###### _2018-03-07 11:15:56 -0800_ | Diff: [6ddf2d1...551a1eb](https://github.com/ChromeDevTools/devtools-protocol/compare/6ddf2d1...551a1eb)
  6540. #### `Network`: modified event
  6541. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The parameters's `hasUserGesture` _added_.
  6542. ## Roll protocol to r541407
  6543. ###### _2018-03-07 03:17:31 -0800_ | Diff: [3941055...6ddf2d1](https://github.com/ChromeDevTools/devtools-protocol/compare/3941055...6ddf2d1)
  6544. #### `Browser`: new command
  6545. * [`Browser.getBrowserCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getBrowserCommandLine)
  6546. #### `Browser`: removed command
  6547. * [`Browser.getCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getCommandLine)
  6548. ## Roll protocol to r540852
  6549. ###### _2018-03-05 09:16:30 -0800_ | Diff: [9aebc2d...7fc80c6](https://github.com/ChromeDevTools/devtools-protocol/compare/9aebc2d...7fc80c6)
  6550. #### `Runtime`: modified command
  6551. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `throwOnSideEffect` _added_.
  6552. ## Roll protocol to r540814
  6553. ###### _2018-03-05 06:16:48 -0800_ | Diff: [3834095...9aebc2d](https://github.com/ChromeDevTools/devtools-protocol/compare/3834095...9aebc2d)
  6554. #### `Runtime`: modified command
  6555. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `throwOnSideEffect` _removed_.
  6556. ## Roll protocol to r540805
  6557. ###### _2018-03-05 04:16:24 -0800_ | Diff: [e392c1f...3834095](https://github.com/ChromeDevTools/devtools-protocol/compare/e392c1f...3834095)
  6558. #### `HeadlessExperimental`: new command
  6559. * [`HeadlessExperimental.enterDeterministicMode`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enterDeterministicMode)
  6560. ## Roll protocol to r540693
  6561. ###### _2018-03-02 16:16:14 -0800_ | Diff: [0a8b4ea...e392c1f](https://github.com/ChromeDevTools/devtools-protocol/compare/0a8b4ea...e392c1f)
  6562. #### `Runtime`: modified command
  6563. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `throwOnSideEffect` _added_.
  6564. ## Roll protocol to r540265
  6565. ###### _2018-03-01 12:17:20 -0800_ | Diff: [dd5f03d...0a8b4ea](https://github.com/ChromeDevTools/devtools-protocol/compare/dd5f03d...0a8b4ea)
  6566. #### `Memory`: modified type
  6567. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode) - The `count` in the properties had `name` _updated_. The `count` in the properties had `description` _updated_.
  6568. ## Roll protocol to r540157
  6569. ###### _2018-03-01 07:16:55 -0800_ | Diff: [392d86b...dd5f03d](https://github.com/ChromeDevTools/devtools-protocol/compare/392d86b...dd5f03d)
  6570. #### `Runtime`: modified command
  6571. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `throwOnSideEffect` _removed_.
  6572. ## Roll protocol to r540149
  6573. ###### _2018-03-01 06:17:13 -0800_ | Diff: [7b87f78...392d86b](https://github.com/ChromeDevTools/devtools-protocol/compare/7b87f78...392d86b)
  6574. #### `CSS`: modified event
  6575. * [`CSS.fontsUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-fontsUpdated) - `description` updated.
  6576. #### `CSS`: new type
  6577. * [`CSS.FontFace`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-FontFace)
  6578. ## Roll protocol to r540130
  6579. ###### _2018-03-01 04:16:43 -0800_ | Diff: [215f116...7b87f78](https://github.com/ChromeDevTools/devtools-protocol/compare/215f116...7b87f78)
  6580. #### `HeadlessExperimental`: modified command
  6581. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The return value's `screenshotData` _removed_. `description` updated. The `screenshot` in the parameters had `description` _updated_. The `hasDamage` in the return value had `description` _updated_. The `mainFrameContentUpdated` in the return value had `name` _updated_. The `mainFrameContentUpdated` in the return value had `description` _updated_. The `mainFrameContentUpdated` in the return value had `type` _updated_. The return value's `optional` _added_.
  6582. #### `HeadlessExperimental`: removed event
  6583. * [`HeadlessExperimental.mainFrameReadyForScreenshots`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-mainFrameReadyForScreenshots)
  6584. ## Roll protocol to r540125
  6585. ###### _2018-03-01 03:17:08 -0800_ | Diff: [5ef5fe2...215f116](https://github.com/ChromeDevTools/devtools-protocol/compare/5ef5fe2...215f116)
  6586. #### `Browser`: new command
  6587. * [`Browser.getCommandLine`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getCommandLine)
  6588. ## Roll protocol to r540081
  6589. ###### _2018-02-28 23:16:47 -0800_ | Diff: [6d37388...5ef5fe2](https://github.com/ChromeDevTools/devtools-protocol/compare/6d37388...5ef5fe2)
  6590. #### `Runtime`: modified command
  6591. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The parameters's `throwOnSideEffect` _added_.
  6592. ## Roll protocol to r539359
  6593. ###### _2018-02-26 17:17:01 -0800_ | Diff: [c1c234c...6d37388](https://github.com/ChromeDevTools/devtools-protocol/compare/c1c234c...6d37388)
  6594. #### `DOMSnapshot`: modified type
  6595. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `isClickable` in the properties had `type` _removed_. The `eventListeners` in the properties had `items` _removed_. The `isClickable` in the properties had `name` _updated_. The `isClickable` in the properties had `description` _updated_. The `eventListeners` in the properties had `name` _updated_. The `eventListeners` in the properties had `description` _updated_. The `eventListeners` in the properties had `type` _updated_. The `currentSourceURL` in the properties had `name` _updated_. The `currentSourceURL` in the properties had `description` _updated_. The `currentSourceURL` in the properties had `type` _updated_. The properties's `$ref` _added_. The properties's `items` _added_. The properties's `currentSourceURL` _added_.
  6596. ## Roll protocol to r536902
  6597. ###### _2018-02-14 16:16:08 -0800_ | Diff: [28c2256...4bb1064](https://github.com/ChromeDevTools/devtools-protocol/compare/28c2256...4bb1064)
  6598. #### `DOMSnapshot`: modified type
  6599. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - The `startCharacterIndex` in the properties had `description` _updated_. The `numCharacters` in the properties had `description` _updated_.
  6600. ## Roll protocol to r535969
  6601. ###### _2018-02-10 00:15:46 -0800_ | Diff: [33149ca...28c2256](https://github.com/ChromeDevTools/devtools-protocol/compare/33149ca...28c2256)
  6602. #### `Memory`: new command
  6603. * [`Memory.getBrowserSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getBrowserSamplingProfile)
  6604. #### `Memory`: modified command
  6605. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile) - `description` updated.
  6606. ## Roll protocol to r533104
  6607. ###### _2018-01-30 16:16:07 -0800_ | Diff: [50ba84b...a1f43fb](https://github.com/ChromeDevTools/devtools-protocol/compare/50ba84b...a1f43fb)
  6608. #### `Target`: removed command
  6609. * [`Target.setAttachToFrames`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAttachToFrames)
  6610. ## Roll protocol to r532981
  6611. ###### _2018-01-30 11:15:57 -0800_ | Diff: [449767c...1a3a261](https://github.com/ChromeDevTools/devtools-protocol/compare/449767c...1a3a261)
  6612. #### `Page`: modified command
  6613. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The parameters's `preferCSSPageSize` _added_.
  6614. ## Roll protocol to r532683
  6615. ###### _2018-01-29 16:16:05 -0800_ | Diff: [e3e1778...449767c](https://github.com/ChromeDevTools/devtools-protocol/compare/e3e1778...449767c)
  6616. #### `CSS`: modified command
  6617. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking) - `description` updated.
  6618. ## Roll protocol to r532239
  6619. ###### _2018-01-27 10:15:37 -0800_ | Diff: [c80303f...e3e1778](https://github.com/ChromeDevTools/devtools-protocol/compare/c80303f...e3e1778)
  6620. #### `Memory`: new command
  6621. * [`Memory.getAllTimeSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getAllTimeSamplingProfile)
  6622. #### `Memory`: modified command
  6623. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile) - `description` updated.
  6624. ## Roll protocol to r532143
  6625. ###### _2018-01-26 19:15:57 -0800_ | Diff: [38926f7...c80303f](https://github.com/ChromeDevTools/devtools-protocol/compare/38926f7...c80303f)
  6626. #### `Page`: modified command
  6627. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The parameters's `frameId` _added_.
  6628. ## Roll protocol to r531658
  6629. ###### _2018-01-24 12:15:46 -0800_ | Diff: [dfe55cf...38926f7](https://github.com/ChromeDevTools/devtools-protocol/compare/dfe55cf...38926f7)
  6630. #### `Inspector`: new event
  6631. * [`Inspector.targetReloadedAfterCrash`](https://chromedevtools.github.io/devtools-protocol/tot/Inspector/#event-targetReloadedAfterCrash)
  6632. ## Roll protocol to r531129
  6633. ###### _2018-01-22 18:16:00 -0800_ | Diff: [77a647f...dfe55cf](https://github.com/ChromeDevTools/devtools-protocol/compare/77a647f...dfe55cf)
  6634. #### `Input`: modified command
  6635. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `timestamp` in the parameters had `description` _updated_.
  6636. ## Roll protocol to r530993
  6637. ###### _2018-01-22 13:15:56 -0800_ | Diff: [1ecb1dc...77a647f](https://github.com/ChromeDevTools/devtools-protocol/compare/1ecb1dc...77a647f)
  6638. #### `Memory`: new commands
  6639. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  6640. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  6641. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  6642. #### `Memory`: new types
  6643. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  6644. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  6645. ## Roll protocol to r530967
  6646. ###### _2018-01-22 12:15:52 -0800_ | Diff: [bf24ee4...1ecb1dc](https://github.com/ChromeDevTools/devtools-protocol/compare/bf24ee4...1ecb1dc)
  6647. #### `Input`: modified command
  6648. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `timestamp` in the parameters had `$ref` _removed_. The `button` in the parameters had `type` _removed_. The `button` in the parameters had `enum` _removed_. The `timestamp` in the parameters had `name` _updated_. The `timestamp` in the parameters had `description` _updated_. The `button` in the parameters had `name` _updated_. The `button` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `enum` _added_. The parameters's `optional` _added_. The parameters's `$ref` _added_.
  6649. ## Roll protocol to r530836
  6650. ###### _2018-01-22 03:16:04 -0800_ | Diff: [8f8d2e4...bf24ee4](https://github.com/ChromeDevTools/devtools-protocol/compare/8f8d2e4...bf24ee4)
  6651. #### `Memory`: removed commands
  6652. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  6653. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  6654. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  6655. #### `Memory`: removed types
  6656. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  6657. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  6658. ## Roll protocol to r530755
  6659. ###### _2018-01-19 21:15:46 -0800_ | Diff: [e813152...8f8d2e4](https://github.com/ChromeDevTools/devtools-protocol/compare/e813152...8f8d2e4)
  6660. #### `DOM`: new command
  6661. * [`DOM.getFrameOwner`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFrameOwner)
  6662. #### `Memory`: new commands
  6663. * [`Memory.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-startSampling)
  6664. * [`Memory.stopSampling`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-stopSampling)
  6665. * [`Memory.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-getSamplingProfile)
  6666. #### `Memory`: new types
  6667. * [`Memory.SamplingProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfileNode)
  6668. * [`Memory.SamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#type-SamplingProfile)
  6669. ## Roll protocol to r530611
  6670. ###### _2018-01-19 13:15:39 -0800_ | Diff: [f46e9df...e813152](https://github.com/ChromeDevTools/devtools-protocol/compare/f46e9df...e813152)
  6671. #### `DOMSnapshot`: modified type
  6672. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `currentSourceURL` _added_.
  6673. ## Roll protocol to r529963
  6674. ###### _2018-01-17 16:16:10 -0800_ | Diff: [d388c24...f46e9df](https://github.com/ChromeDevTools/devtools-protocol/compare/d388c24...f46e9df)
  6675. #### `HeadlessExperimental`: modified command
  6676. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The `screenshot` in the parameters had `$ref` _removed_. The `screenshot` in the parameters had `name` _updated_. The `screenshot` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `screenshot` _added_.
  6677. ## Roll protocol to r528753
  6678. ###### _2018-01-11 13:15:46 -0800_ | Diff: [ffcb5e6...252a483](https://github.com/ChromeDevTools/devtools-protocol/compare/ffcb5e6...252a483)
  6679. #### `Network`: new command
  6680. * [`Network.getRequestPostData`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getRequestPostData)
  6681. #### `Network`: modified command
  6682. * [`Network.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enable) - The parameters's `maxPostDataSize` _added_.
  6683. #### `Network`: modified type
  6684. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `mixedContentType` in the properties had `$ref` _removed_. The `referrerPolicy` in the properties had `type` _removed_. The `referrerPolicy` in the properties had `enum` _removed_. The `isLinkPreload` in the properties had `optional` _removed_. The `mixedContentType` in the properties had `name` _updated_. The `mixedContentType` in the properties had `description` _updated_. The `initialPriority` in the properties had `name` _updated_. The `initialPriority` in the properties had `description` _updated_. The `initialPriority` in the properties had `$ref` _updated_. The `referrerPolicy` in the properties had `name` _updated_. The `referrerPolicy` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `name` _updated_. The `isLinkPreload` in the properties had `description` _updated_. The `isLinkPreload` in the properties had `type` _updated_. The properties's `type` _added_. The properties's `optional` _added_. The properties's `$ref` _added_. The properties's `enum` _added_. The properties's `isLinkPreload` _added_.
  6685. ## Roll protocol to r528498
  6686. ###### _2018-01-10 16:15:41 -0800_ | Diff: [75a38f8...ffcb5e6](https://github.com/ChromeDevTools/devtools-protocol/compare/75a38f8...ffcb5e6)
  6687. #### `Browser`: new commands
  6688. * [`Browser.getHistograms`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistograms)
  6689. * [`Browser.getHistogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getHistogram)
  6690. #### `Browser`: new types
  6691. * [`Browser.Bucket`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bucket)
  6692. * [`Browser.Histogram`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Histogram)
  6693. ## Roll protocol to r528271
  6694. ###### _2018-01-10 02:15:56 -0800_ | Diff: [ba5cbc1...75a38f8](https://github.com/ChromeDevTools/devtools-protocol/compare/ba5cbc1...75a38f8)
  6695. #### `Emulation`: modified command
  6696. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The parameters's `waitForNavigation` _added_.
  6697. ## Roll protocol to r528237
  6698. ###### _2018-01-09 20:15:50 -0800_ | Diff: [978dbaa...ba5cbc1](https://github.com/ChromeDevTools/devtools-protocol/compare/978dbaa...ba5cbc1)
  6699. #### `Page`: new command
  6700. * [`Page.crash`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-crash)
  6701. ## Roll protocol to r527612
  6702. ###### _2018-01-08 04:15:43 -0800_ | Diff: [0f2584d...978dbaa](https://github.com/ChromeDevTools/devtools-protocol/compare/0f2584d...978dbaa)
  6703. #### `DOMSnapshot`: modified command
  6704. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - The parameters's `includeEventListeners` _added_.
  6705. #### `DOMSnapshot`: modified type
  6706. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `eventListeners` _added_.
  6707. ## Roll protocol to r526633
  6708. ###### _2018-01-02 22:15:35 -0800_ | Diff: [cc1c2f4...0f2584d](https://github.com/ChromeDevTools/devtools-protocol/compare/cc1c2f4...0f2584d)
  6709. #### `Network`: modified event
  6710. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished) - The parameters's `blockedCrossSiteDocument` _added_.
  6711. ## Roll protocol to r526584
  6712. ###### _2018-01-02 18:15:45 -0800_ | Diff: [5f10915...cc1c2f4](https://github.com/ChromeDevTools/devtools-protocol/compare/5f10915...cc1c2f4)
  6713. #### `Page`: removed command
  6714. * [`Page.setAutoAttachToCreatedPages`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setAutoAttachToCreatedPages)
  6715. ## Roll protocol to r525305
  6716. ###### _2017-12-20 03:16:10 -0800_ | Diff: [5325d5e...5f10915](https://github.com/ChromeDevTools/devtools-protocol/compare/5325d5e...5f10915)
  6717. #### `Security`: new command
  6718. * [`Security.setIgnoreCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setIgnoreCertificateErrors)
  6719. #### `Security`: modified commands
  6720. * [`Security.handleCertificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-handleCertificateError) - `deprecated` added.
  6721. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors) - `deprecated` added.
  6722. #### `Security`: modified event
  6723. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError) - `description` updated. `deprecated` added.
  6724. ## Roll protocol to r524155
  6725. ###### _2017-12-14 12:15:45 -0800_ | Diff: [0956b7c...5325d5e](https://github.com/ChromeDevTools/devtools-protocol/compare/0956b7c...5325d5e)
  6726. #### `Page`: modified command
  6727. * [`Page.reload`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-reload) - The `scriptToEvaluateOnLoad` in the parameters had `description` _updated_.
  6728. ## Roll protocol to r524136
  6729. ###### _2017-12-14 11:16:05 -0800_ | Diff: [1cdc73b...0956b7c](https://github.com/ChromeDevTools/devtools-protocol/compare/1cdc73b...0956b7c)
  6730. #### `Security`: modified type
  6731. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The `mixedContentType` in the properties had `$ref` _removed_. The `certificate` in the properties had `type` _removed_. The `certificate` in the properties had `items` _removed_. The `summary` in the properties had `name` _updated_. The `summary` in the properties had `description` _updated_. The `description` in the properties had `name` _updated_. The `description` in the properties had `description` _updated_. The `mixedContentType` in the properties had `name` _updated_. The `mixedContentType` in the properties had `description` _updated_. The `certificate` in the properties had `name` _updated_. The `certificate` in the properties had `description` _updated_. The properties's `type` _added_. The properties's `$ref` _added_. The properties's `certificate` _added_.
  6732. ## Roll protocol to r523966
  6733. ###### _2017-12-13 17:15:41 -0800_ | Diff: [d620873...1cdc73b](https://github.com/ChromeDevTools/devtools-protocol/compare/d620873...1cdc73b)
  6734. #### `Page`: modified command
  6735. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The parameters's `headerTemplate` _added_. The parameters's `footerTemplate` _added_.
  6736. ## Roll protocol to r522771 520620
  6737. ###### _2017-12-08 05:15:43 -0800_ | Diff: [e755d8d...257859e](https://github.com/ChromeDevTools/devtools-protocol/compare/e755d8d...257859e)
  6738. #### `Console`: modified command
  6739. * [`Console.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-enable) - `description` updated.
  6740. #### `Debugger`: modified commands
  6741. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable) - `description` updated.
  6742. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The `objectGroup` in the parameters had `description` _updated_. The `includeCommandLineAPI` in the parameters had `description` _updated_. The `silent` in the parameters had `description` _updated_.
  6743. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - `description` updated. The `end` in the parameters had `description` _updated_.
  6744. * [`Debugger.scheduleStepIntoAsync`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-scheduleStepIntoAsync) - `description` updated.
  6745. * [`Debugger.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setAsyncCallStackDepth) - The `maxDepth` in the parameters had `description` _updated_.
  6746. * [`Debugger.setBlackboxPatterns`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxPatterns) - `description` updated.
  6747. * [`Debugger.setBlackboxedRanges`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBlackboxedRanges) - `description` updated.
  6748. * [`Debugger.setBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpoint) - The `condition` in the parameters had `description` _updated_.
  6749. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - `description` updated. The `urlRegex` in the parameters had `description` _updated_. The `condition` in the parameters had `description` _updated_.
  6750. * [`Debugger.setPauseOnExceptions`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setPauseOnExceptions) - `description` updated.
  6751. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource) - The `dryRun` in the parameters had `description` _updated_.
  6752. * [`Debugger.setVariableValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setVariableValue) - `description` updated. The `scopeNumber` in the parameters had `description` _updated_.
  6753. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto) - The `breakOnAsyncCall` in the parameters had `description` _updated_.
  6754. #### `Debugger`: modified events
  6755. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `asyncCallStackTraceId` in the parameters had `description` _updated_.
  6756. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - `description` updated.
  6757. #### `Debugger`: modified type
  6758. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope) - The `object` in the properties had `description` _updated_.
  6759. #### `HeapProfiler`: modified commands
  6760. * [`HeapProfiler.addInspectedHeapObject`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-addInspectedHeapObject) - `description` updated.
  6761. * [`HeapProfiler.startSampling`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-startSampling) - The `samplingInterval` in the parameters had `description` _updated_.
  6762. * [`HeapProfiler.stopTrackingHeapObjects`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-stopTrackingHeapObjects) - The `reportProgress` in the parameters had `description` _updated_.
  6763. #### `HeapProfiler`: modified events
  6764. * [`HeapProfiler.heapStatsUpdate`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-heapStatsUpdate) - The `statsUpdate` in the parameters had `description` _updated_.
  6765. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId) - `description` updated.
  6766. #### `Profiler`: modified commands
  6767. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage) - `description` updated.
  6768. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage) - `description` updated.
  6769. * [`Profiler.stopPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopPreciseCoverage) - `description` updated.
  6770. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - `description` updated.
  6771. #### `Profiler`: modified types
  6772. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode) - The `deoptReason` in the properties had `description` _updated_.
  6773. * [`Profiler.Profile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-Profile) - The `timeDeltas` in the properties had `description` _updated_.
  6774. #### `Runtime`: modified commands
  6775. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - `description` updated. The `objectId` in the parameters had `description` _updated_. The `arguments` in the parameters had `description` _updated_. The `silent` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_. The `executionContextId` in the parameters had `description` _updated_. The `objectGroup` in the parameters had `description` _updated_.
  6776. * [`Runtime.compileScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-compileScript) - The `executionContextId` in the parameters had `description` _updated_.
  6777. * [`Runtime.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-enable) - `description` updated.
  6778. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `silent` in the parameters had `description` _updated_. The `contextId` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_.
  6779. * [`Runtime.getProperties`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-getProperties) - `description` updated. The `ownProperties` in the parameters had `description` _updated_. The `accessorPropertiesOnly` in the parameters had `description` _updated_.
  6780. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript) - The `executionContextId` in the parameters had `description` _updated_. The `silent` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_.
  6781. #### `Runtime`: modified events
  6782. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled) - The `context` in the parameters had `description` _updated_.
  6783. * [`Runtime.inspectRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-inspectRequested) - `description` updated.
  6784. #### `Runtime`: modified types
  6785. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `unserializableValue` in the properties had `description` _updated_.
  6786. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor) - The `get` in the properties had `description` _updated_. The `set` in the properties had `description` _updated_. The `configurable` in the properties had `description` _updated_. The `enumerable` in the properties had `description` _updated_.
  6787. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - `description` updated.
  6788. * [`Runtime.ExecutionContextDescription`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExecutionContextDescription) - The `id` in the properties had `description` _updated_.
  6789. * [`Runtime.ExceptionDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ExceptionDetails) - `description` updated.
  6790. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace) - The `description` in the properties had `description` _updated_.
  6791. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId) - `description` updated.
  6792. ## Roll protocol to r522695
  6793. ###### _2017-12-07 19:16:02 -0800_ | Diff: [5cf9fe1...e755d8d](https://github.com/ChromeDevTools/devtools-protocol/compare/5cf9fe1...e755d8d)
  6794. #### `IndexedDB`: new command
  6795. * [`IndexedDB.deleteObjectStoreEntries`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteObjectStoreEntries)
  6796. ## Roll protocol to r522024
  6797. ###### _2017-12-05 22:15:31 -0800_ | Diff: [d7f4617...5cf9fe1](https://github.com/ChromeDevTools/devtools-protocol/compare/d7f4617...5cf9fe1)
  6798. #### `Tracing`: modified command
  6799. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `streamCompression` in the parameters had `description` _updated_.
  6800. ## Roll protocol to r521951
  6801. ###### _2017-12-05 18:15:33 -0800_ | Diff: [ddbd496...d7f4617](https://github.com/ChromeDevTools/devtools-protocol/compare/ddbd496...d7f4617)
  6802. #### `Tracing`: modified command
  6803. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `traceConfig` in the parameters had `name` _updated_. The `traceConfig` in the parameters had `$ref` _updated_. The parameters's `description` _added_. The parameters's `traceConfig` _added_.
  6804. #### `Tracing`: modified event
  6805. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - The parameters's `streamCompression` _added_.
  6806. #### `Tracing`: new type
  6807. * [`Tracing.StreamCompression`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#type-StreamCompression)
  6808. ## Roll protocol to r521854
  6809. ###### _2017-12-05 14:15:34 -0800_ | Diff: [5e7327e...ddbd496](https://github.com/ChromeDevTools/devtools-protocol/compare/5e7327e...ddbd496)
  6810. #### `Accessibility`: modified command
  6811. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree) - The `nodes` in the return value had `description` _updated_.
  6812. #### `Accessibility`: modified type
  6813. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName) - `description` updated.
  6814. #### `Animation`: modified type
  6815. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - The `cssId` in the properties had `description` _updated_.
  6816. #### `ApplicationCache`: modified command
  6817. * [`ApplicationCache.getFramesWithManifests`](https://chromedevtools.github.io/devtools-protocol/tot/ApplicationCache/#method-getFramesWithManifests) - `description` updated. The `frameIds` in the return value had `description` _updated_.
  6818. #### `Audits`: modified command
  6819. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse) - `description` updated.
  6820. #### `Browser`: modified commands
  6821. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds) - The `bounds` in the return value had `description` _updated_.
  6822. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget) - The `bounds` in the return value had `description` _updated_.
  6823. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds) - The `bounds` in the parameters had `description` _updated_.
  6824. #### `CSS`: modified commands
  6825. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule) - `description` updated.
  6826. * [`CSS.enable`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-enable) - `description` updated.
  6827. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState) - `description` updated.
  6828. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - The `backgroundColors` in the return value had `description` _updated_. The `computedFontWeight` in the return value had `description` _updated_.
  6829. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode) - `description` updated.
  6830. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode) - `description` updated.
  6831. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode) - `description` updated.
  6832. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta) - `description` updated.
  6833. #### `CSS`: modified event
  6834. * [`CSS.mediaQueryResultChanged`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#event-mediaQueryResultChanged) - `description` updated.
  6835. #### `CSS`: modified types
  6836. * [`CSS.StyleSheetOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-StyleSheetOrigin) - `description` updated.
  6837. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The `isInline` in the properties had `description` _updated_.
  6838. * [`CSS.CSSRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSRule) - The `styleSheetId` in the properties had `description` _updated_. The `media` in the properties had `description` _updated_.
  6839. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage) - The `styleSheetId` in the properties had `description` _updated_.
  6840. * [`CSS.CSSStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyle) - The `styleSheetId` in the properties had `description` _updated_.
  6841. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia) - The `source` in the properties had `description` _updated_. The `range` in the properties had `description` _updated_.
  6842. * [`CSS.CSSKeyframeRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSKeyframeRule) - The `styleSheetId` in the properties had `description` _updated_.
  6843. #### `DOM`: modified commands
  6844. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo) - `description` updated. The `insertBeforeNodeId` in the parameters had `description` _updated_.
  6845. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode) - `description` updated. The `depth` in the parameters had `description` _updated_. The `pierce` in the parameters had `description` _updated_.
  6846. * [`DOM.discardSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-discardSearchResults) - `description` updated.
  6847. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument) - The `depth` in the parameters had `description` _updated_. The `pierce` in the parameters had `description` _updated_.
  6848. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument) - The `depth` in the parameters had `description` _updated_. The `pierce` in the parameters had `description` _updated_.
  6849. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults) - `description` updated.
  6850. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo) - The `insertBeforeNodeId` in the parameters had `description` _updated_.
  6851. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch) - `description` updated.
  6852. * [`DOM.pushNodesByBackendIdsToFrontend`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-pushNodesByBackendIdsToFrontend) - The `nodeIds` in the return value had `description` _updated_.
  6853. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes) - `description` updated. The `depth` in the parameters had `description` _updated_. The `pierce` in the parameters had `description` _updated_.
  6854. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode) - `description` updated.
  6855. * [`DOM.setAttributesAsText`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setAttributesAsText) - `description` updated. The `name` in the parameters had `description` _updated_.
  6856. * [`DOM.setInspectedNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectedNode) - `description` updated.
  6857. #### `DOM`: modified event
  6858. * [`DOM.setChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-setChildNodes) - `description` updated.
  6859. #### `DOM`: modified types
  6860. * [`DOM.BackendNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNodeId) - `description` updated.
  6861. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - `description` updated. The `nodeId` in the properties had `description` _updated_.
  6862. #### `DOMDebugger`: modified commands
  6863. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners) - The `depth` in the parameters had `description` _updated_. The `pierce` in the parameters had `description` _updated_.
  6864. * [`DOMDebugger.setEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setEventListenerBreakpoint) - The `targetName` in the parameters had `description` _updated_.
  6865. #### `DOMSnapshot`: modified command
  6866. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - `description` updated.
  6867. #### `DOMSnapshot`: modified types
  6868. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `childNodeIndexes` in the properties had `description` _updated_. The `pseudoElementIndexes` in the properties had `description` _updated_. The `layoutNodeIndex` in the properties had `description` _updated_. The `contentDocumentIndex` in the properties had `description` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `description` _updated_. The `isClickable` in the properties had `description` _updated_.
  6869. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox) - `description` updated.
  6870. #### `Emulation`: modified commands
  6871. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride) - `description` updated. The `color` in the parameters had `description` _updated_.
  6872. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - `description` updated. The `mobile` in the parameters had `description` _updated_. The `viewport` in the parameters had `description` _updated_.
  6873. * [`Emulation.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setGeolocationOverride) - `description` updated.
  6874. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - `description` updated. The `budget` in the parameters had `description` _updated_. The `maxVirtualTimeTaskStarvationCount` in the parameters had `description` _updated_.
  6875. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize) - `description` updated.
  6876. #### `Emulation`: modified events
  6877. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced) - The `virtualTimeElapsed` in the parameters had `description` _updated_.
  6878. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused) - The `virtualTimeElapsed` in the parameters had `description` _updated_.
  6879. #### `Emulation`: modified type
  6880. * [`Emulation.VirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#type-VirtualTimePolicy) - `description` updated.
  6881. #### `HeadlessExperimental`: modified command
  6882. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - `description` updated. The `frameTime` in the parameters had `description` _updated_. The `deadline` in the parameters had `description` _updated_. The `interval` in the parameters had `description` _updated_. The `screenshot` in the parameters had `description` _updated_. The `hasDamage` in the return value had `description` _updated_.
  6883. #### `HeadlessExperimental`: modified event
  6884. * [`HeadlessExperimental.mainFrameReadyForScreenshots`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-mainFrameReadyForScreenshots) - `description` updated.
  6885. #### `IO`: modified command
  6886. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read) - The `offset` in the parameters had `description` _updated_.
  6887. #### `IO`: modified type
  6888. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle) - `description` updated.
  6889. #### `Input`: modified commands
  6890. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The `modifiers` in the parameters had `description` _updated_. The `text` in the parameters had `description` _updated_. The `unmodifiedText` in the parameters had `description` _updated_. The `key` in the parameters had `description` _updated_. The `location` in the parameters had `description` _updated_.
  6891. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `y` in the parameters had `description` _updated_. The `modifiers` in the parameters had `description` _updated_.
  6892. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - The `type` in the parameters had `description` _updated_. The `touchPoints` in the parameters had `description` _updated_. The `modifiers` in the parameters had `description` _updated_.
  6893. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `modifiers` in the parameters had `description` _updated_.
  6894. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture) - The `gestureSourceType` in the parameters had `description` _updated_.
  6895. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture) - The `xOverscroll` in the parameters had `description` _updated_. The `yOverscroll` in the parameters had `description` _updated_. The `gestureSourceType` in the parameters had `description` _updated_.
  6896. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture) - The `gestureSourceType` in the parameters had `description` _updated_.
  6897. #### `Input`: modified type
  6898. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint) - The `y` in the properties had `description` _updated_.
  6899. #### `LayerTree`: modified type
  6900. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer) - The `drawsContent` in the properties had `description` _updated_.
  6901. #### `Log`: modified command
  6902. * [`Log.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-enable) - `description` updated.
  6903. #### `Network`: modified commands
  6904. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - `description` updated. The `errorReason` in the parameters had `description` _updated_. The `rawResponse` in the parameters had `description` _updated_. The `url` in the parameters had `description` _updated_. The `method` in the parameters had `description` _updated_. The `headers` in the parameters had `description` _updated_.
  6905. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies) - The `url` in the parameters had `description` _updated_.
  6906. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies) - `description` updated.
  6907. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - `description` updated.
  6908. * [`Network.replayXHR`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-replayXHR) - `description` updated.
  6909. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The `url` in the parameters had `description` _updated_.
  6910. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception) - The `patterns` in the parameters had `description` _updated_.
  6911. #### `Network`: modified event
  6912. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - `description` updated. The `interceptionId` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `description` _updated_. The `responseErrorReason` in the parameters had `description` _updated_. The `responseStatusCode` in the parameters had `description` _updated_. The `responseHeaders` in the parameters had `description` _updated_.
  6913. #### `Network`: modified types
  6914. * [`Network.CookieSameSite`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieSameSite) - `description` updated.
  6915. * [`Network.ResourceTiming`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ResourceTiming) - The `requestTime` in the properties had `description` _updated_.
  6916. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The `lineNumber` in the properties had `description` _updated_.
  6917. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - The `url` in the properties had `description` _updated_.
  6918. * [`Network.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse) - The `response` in the properties had `description` _updated_. The `username` in the properties had `description` _updated_. The `password` in the properties had `description` _updated_.
  6919. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage) - `description` updated.
  6920. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The `urlPattern` in the properties had `description` _updated_.
  6921. #### `Overlay`: modified commands
  6922. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode) - `description` updated.
  6923. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode) - `description` updated. The `highlightConfig` in the parameters had `description` _updated_.
  6924. #### `Overlay`: modified event
  6925. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested) - `description` updated.
  6926. #### `Page`: modified commands
  6927. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld) - The `grantUniveralAccess` in the parameters had `description` _updated_.
  6928. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies) - `description` updated.
  6929. * [`Page.handleJavaScriptDialog`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-handleJavaScriptDialog) - The `promptText` in the parameters had `description` _updated_.
  6930. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The `pageRanges` in the parameters had `description` _updated_. The `ignoreInvalidPageRanges` in the parameters had `description` _updated_.
  6931. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - `description` updated. The `mobile` in the parameters had `description` _updated_.
  6932. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior) - The `behavior` in the parameters had `description` _updated_.
  6933. * [`Page.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setGeolocationOverride) - `description` updated.
  6934. #### `Page`: modified events
  6935. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The `delay` in the parameters had `description` _updated_.
  6936. * [`Page.javascriptDialogClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogClosed) - `description` updated.
  6937. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening) - `description` updated.
  6938. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen) - `description` updated.
  6939. #### `Security`: modified command
  6940. * [`Security.setOverrideCertificateErrors`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-setOverrideCertificateErrors) - `description` updated.
  6941. #### `Security`: modified events
  6942. * [`Security.certificateError`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-certificateError) - `description` updated.
  6943. * [`Security.securityStateChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#event-securityStateChanged) - The `explanations` in the parameters had `description` _updated_.
  6944. #### `Security`: modified types
  6945. * [`Security.MixedContentType`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-MixedContentType) - `description` updated.
  6946. * [`Security.InsecureContentStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-InsecureContentStatus) - The `ranContentWithCertErrors` in the properties had `description` _updated_. The `displayedContentWithCertErrors` in the properties had `description` _updated_.
  6947. * [`Security.CertificateErrorAction`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-CertificateErrorAction) - `description` updated.
  6948. #### `ServiceWorker`: modified type
  6949. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion) - The `scriptResponseTime` in the properties had `description` _updated_.
  6950. #### `SystemInfo`: modified command
  6951. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo) - The `modelName` in the return value had `description` _updated_. The `modelVersion` in the return value had `description` _updated_. The `commandLine` in the return value had `description` _updated_.
  6952. #### `Target`: modified commands
  6953. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - `description` updated.
  6954. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The `enableBeginFrameControl` in the parameters had `description` _updated_.
  6955. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - `description` updated. The `waitForDebuggerOnStart` in the parameters had `description` _updated_.
  6956. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets) - `description` updated.
  6957. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations) - `description` updated.
  6958. #### `Target`: modified events
  6959. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - `description` updated.
  6960. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget) - `description` updated.
  6961. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged) - `description` updated.
  6962. #### `Tracing`: modified command
  6963. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `transferMode` in the parameters had `description` _updated_.
  6964. #### `Tracing`: modified events
  6965. * [`Tracing.bufferUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-bufferUsage) - The `percentFull` in the parameters had `description` _updated_. The `value` in the parameters had `description` _updated_.
  6966. * [`Tracing.dataCollected`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-dataCollected) - `description` updated.
  6967. * [`Tracing.tracingComplete`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#event-tracingComplete) - `description` updated.
  6968. ## Roll protocol to r521293
  6969. ###### _2017-12-04 01:15:42 -0800_ | Diff: [80a4bf5...8f8623b](https://github.com/ChromeDevTools/devtools-protocol/compare/80a4bf5...8f8623b)
  6970. #### `Console`: modified command
  6971. * [`Console.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Console/#method-enable) - `description` updated.
  6972. #### `Debugger`: modified commands
  6973. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The `objectGroup` in the parameters had `description` _updated_. The `silent` in the parameters had `description` _updated_.
  6974. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace) - `description` updated.
  6975. * [`Debugger.setAsyncCallStackDepth`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setAsyncCallStackDepth) - The `maxDepth` in the parameters had `description` _updated_.
  6976. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - `description` updated. The `urlRegex` in the parameters had `description` _updated_.
  6977. * [`Debugger.setPauseOnExceptions`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setPauseOnExceptions) - `description` updated.
  6978. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource) - The `dryRun` in the parameters had `description` _updated_.
  6979. #### `Debugger`: modified event
  6980. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `asyncCallStackTraceId` in the parameters had `description` _updated_.
  6981. #### `Debugger`: modified types
  6982. * [`Debugger.Location`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Location) - The `scriptId` in the properties had `description` _updated_.
  6983. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame) - The `this` in the properties had `description` _updated_.
  6984. * [`Debugger.Scope`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-Scope) - The `object` in the properties had `description` _updated_.
  6985. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation) - The `scriptId` in the properties had `description` _updated_.
  6986. #### `Runtime`: modified commands
  6987. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `arguments` in the parameters had `description` _removed_. The `silent` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_.
  6988. * [`Runtime.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-enable) - `description` updated.
  6989. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `silent` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_.
  6990. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript) - The `silent` in the parameters had `description` _updated_. The `awaitPromise` in the parameters had `description` _updated_.
  6991. #### `Runtime`: modified event
  6992. * [`Runtime.exceptionRevoked`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionRevoked) - The `exceptionId` in the parameters had `description` _updated_.
  6993. #### `Runtime`: modified types
  6994. * [`Runtime.RemoteObject`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-RemoteObject) - The `subtype` in the properties had `description` _updated_. The `className` in the properties had `description` _updated_. The `unserializableValue` in the properties had `description` _updated_. The `preview` in the properties had `description` _updated_.
  6995. * [`Runtime.ObjectPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-ObjectPreview) - The `subtype` in the properties had `description` _updated_. The `entries` in the properties had `description` _updated_.
  6996. * [`Runtime.PropertyPreview`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyPreview) - The `subtype` in the properties had `description` _updated_.
  6997. * [`Runtime.PropertyDescriptor`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-PropertyDescriptor) - The `get` in the properties had `description` _updated_. The `set` in the properties had `description` _updated_. The `symbol` in the properties had `description` _updated_.
  6998. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - `description` updated.
  6999. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId) - `description` updated.
  7000. #### `Schema`: modified command
  7001. * [`Schema.getDomains`](https://chromedevtools.github.io/devtools-protocol/tot/Schema/#method-getDomains) - `handlers` removed.
  7002. ## Roll protocol to r520165
  7003. ###### _2017-11-29 10:15:43 -0800_ | Diff: [e1e5c6b...0741c94](https://github.com/ChromeDevTools/devtools-protocol/compare/e1e5c6b...0741c94)
  7004. #### `Accessibility`: modified command
  7005. * [`Accessibility.getPartialAXTree`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#method-getPartialAXTree) - The `nodes` in the return value had `description` _updated_.
  7006. #### `Accessibility`: modified type
  7007. * [`Accessibility.AXNode`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXNode) - The `role` in the properties had `description` _updated_. The `name` in the properties had `description` _updated_. The `description` in the properties had `description` _updated_. The `value` in the properties had `description` _updated_.
  7008. #### `Animation`: modified types
  7009. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - The `id` in the properties had `description` _updated_. The `name` in the properties had `description` _updated_. The `pausedState` in the properties had `description` _updated_. The `playState` in the properties had `description` _updated_. The `playbackRate` in the properties had `description` _updated_. The `startTime` in the properties had `description` _updated_. The `currentTime` in the properties had `description` _updated_. The `type` in the properties had `description` _updated_. The `source` in the properties had `description` _updated_. The `cssId` in the properties had `description` _updated_.
  7010. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect) - The `delay` in the properties had `description` _updated_. The `endDelay` in the properties had `description` _updated_. The `iterationStart` in the properties had `description` _updated_. The `iterations` in the properties had `description` _updated_. The `duration` in the properties had `description` _updated_. The `direction` in the properties had `description` _updated_. The `fill` in the properties had `description` _updated_. The `backendNodeId` in the properties had `description` _updated_. The `keyframesRule` in the properties had `description` _updated_. The `easing` in the properties had `description` _updated_.
  7011. * [`Animation.KeyframeStyle`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-KeyframeStyle) - The `easing` in the properties had `description` _updated_.
  7012. #### `CSS`: modified commands
  7013. * [`CSS.addRule`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-addRule) - `description` updated.
  7014. * [`CSS.createStyleSheet`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-createStyleSheet) - `description` updated.
  7015. * [`CSS.forcePseudoState`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-forcePseudoState) - The `forcedPseudoClasses` in the parameters had `enum` _removed_.
  7016. * [`CSS.getComputedStyleForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getComputedStyleForNode) - `description` updated.
  7017. * [`CSS.getInlineStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getInlineStylesForNode) - `description` updated.
  7018. * [`CSS.getMatchedStylesForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMatchedStylesForNode) - `description` updated.
  7019. #### `CSS`: modified types
  7020. * [`CSS.ShorthandEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-ShorthandEntry) - The `important` in the properties had `description` _updated_.
  7021. * [`CSS.CSSProperty`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSProperty) - The `important` in the properties had `description` _updated_. The `implicit` in the properties had `description` _updated_. The `parsedOk` in the properties had `description` _updated_.
  7022. #### `DOM`: modified commands
  7023. * [`DOM.copyTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-copyTo) - The `insertBeforeNodeId` in the parameters had `description` _updated_.
  7024. * [`DOM.discardSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-discardSearchResults) - `description` updated.
  7025. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults) - `description` updated.
  7026. * [`DOM.moveTo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-moveTo) - The `insertBeforeNodeId` in the parameters had `description` _updated_.
  7027. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch) - `description` updated.
  7028. * [`DOM.querySelector`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelector) - `description` updated.
  7029. * [`DOM.querySelectorAll`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-querySelectorAll) - `description` updated.
  7030. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes) - `description` updated.
  7031. * [`DOM.requestNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestNode) - `description` updated.
  7032. #### `DOM`: modified events
  7033. * [`DOM.attributeModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeModified) - `description` updated.
  7034. * [`DOM.attributeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-attributeRemoved) - `description` updated.
  7035. * [`DOM.characterDataModified`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-characterDataModified) - `description` updated.
  7036. * [`DOM.childNodeCountUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeCountUpdated) - `description` updated.
  7037. * [`DOM.childNodeInserted`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeInserted) - `description` updated.
  7038. * [`DOM.childNodeRemoved`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-childNodeRemoved) - `description` updated.
  7039. * [`DOM.documentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-documentUpdated) - `description` updated.
  7040. * [`DOM.inlineStyleInvalidated`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inlineStyleInvalidated) - `description` updated.
  7041. #### `DOM`: modified types
  7042. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode) - The `nodeType` in the properties had `description` _updated_. The `nodeName` in the properties had `description` _updated_.
  7043. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - The `nodeId` in the properties had `description` _updated_. The `nodeType` in the properties had `description` _updated_. The `nodeName` in the properties had `description` _updated_. The `localName` in the properties had `description` _updated_. The `nodeValue` in the properties had `description` _updated_. The `childNodeCount` in the properties had `description` _updated_. The `attributes` in the properties had `description` _updated_. The `documentURL` in the properties had `description` _updated_. The `baseURL` in the properties had `description` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `description` _updated_. The `internalSubset` in the properties had `description` _updated_. The `xmlVersion` in the properties had `description` _updated_. The `name` in the properties had `description` _updated_. The `value` in the properties had `description` _updated_.
  7044. * [`DOM.Quad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Quad) - `minItems` removed. `maxItems` removed.
  7045. #### `DOMDebugger`: modified commands
  7046. * [`DOMDebugger.removeDOMBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-removeDOMBreakpoint) - `description` updated.
  7047. * [`DOMDebugger.setEventListenerBreakpoint`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-setEventListenerBreakpoint) - The `targetName` in the parameters had `description` _updated_.
  7048. #### `DOMDebugger`: modified type
  7049. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener) - The `type` in the properties had `description` _updated_. The `useCapture` in the properties had `description` _updated_. The `passive` in the properties had `description` _updated_. The `once` in the properties had `description` _updated_.
  7050. #### `DOMSnapshot`: modified command
  7051. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot) - `description` updated.
  7052. #### `DOMSnapshot`: modified types
  7053. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `nodeType` in the properties had `description` _updated_. The `nodeName` in the properties had `description` _updated_. The `nodeValue` in the properties had `description` _updated_. The `backendNodeId` in the properties had `description` _updated_. The `childNodeIndexes` in the properties had `description` _updated_. The `attributes` in the properties had `description` _updated_. The `pseudoElementIndexes` in the properties had `description` _updated_. The `layoutNodeIndex` in the properties had `description` _updated_. The `documentURL` in the properties had `description` _updated_. The `baseURL` in the properties had `description` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `description` _updated_. The `contentDocumentIndex` in the properties had `description` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `description` _updated_.
  7054. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The `domNodeIndex` in the properties had `description` _updated_. The `styleIndex` in the properties had `description` _updated_.
  7055. #### `IO`: modified type
  7056. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle) - `description` updated.
  7057. #### `IndexedDB`: modified commands
  7058. * [`IndexedDB.clearObjectStore`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-clearObjectStore)
  7059. * [`IndexedDB.deleteDatabase`](https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB/#method-deleteDatabase)
  7060. #### `Input`: modified command
  7061. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The `text` in the parameters had `description` _updated_.
  7062. #### `LayerTree`: modified command
  7063. * [`LayerTree.loadSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#method-loadSnapshot) - The `tiles` in the parameters had `minItems` _removed_.
  7064. #### `LayerTree`: modified types
  7065. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer) - The `transform` in the properties had `minItems` _removed_. The `transform` in the properties had `maxItems` _removed_.
  7066. * [`LayerTree.PaintProfile`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-PaintProfile) - The items's `description` _removed_.
  7067. #### `Log`: modified command
  7068. * [`Log.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#method-enable) - `description` updated.
  7069. #### `Network`: modified commands
  7070. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - The `errorReason` in the parameters had `description` _updated_.
  7071. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies) - `description` updated.
  7072. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - `description` updated.
  7073. * [`Network.setCacheDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCacheDisabled) - `description` updated.
  7074. #### `Network`: modified type
  7075. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `encodedDataLength` in the properties had `optional` _removed_.
  7076. #### `Overlay`: modified command
  7077. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode) - The `highlightConfig` in the parameters had `description` _updated_.
  7078. #### `Overlay`: modified events
  7079. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested) - `description` updated.
  7080. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested) - `description` updated.
  7081. #### `Page`: modified commands
  7082. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies) - `description` updated.
  7083. * [`Page.startScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-startScreencast) - `description` updated.
  7084. * [`Page.stopScreencast`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopScreencast) - `description` updated.
  7085. #### `Page`: modified events
  7086. * [`Page.screencastFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastFrame) - `description` updated.
  7087. * [`Page.screencastVisibilityChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-screencastVisibilityChanged) - `description` updated.
  7088. #### `ServiceWorker`: modified type
  7089. * [`ServiceWorker.ServiceWorkerVersion`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#type-ServiceWorkerVersion) - The `scriptResponseTime` in the properties had `description` _updated_.
  7090. #### `Target`: modified commands
  7091. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - The `waitForDebuggerOnStart` in the parameters had `description` _updated_.
  7092. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets) - `description` updated.
  7093. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations) - `description` updated.
  7094. #### `Target`: modified events
  7095. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget) - `description` updated.
  7096. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - `description` updated.
  7097. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget) - `description` updated.
  7098. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged) - `description` updated.
  7099. #### `Tracing`: modified command
  7100. * [`Tracing.start`](https://chromedevtools.github.io/devtools-protocol/tot/Tracing/#method-start) - The `traceConfig` in the parameters had `description` _removed_. The `transferMode` in the parameters had `description` _updated_.
  7101. ## Roll protocol to r518882
  7102. ###### _2017-11-23 02:15:33 -0800_ | Diff: [a86a78e...e1e5c6b](https://github.com/ChromeDevTools/devtools-protocol/compare/a86a78e...e1e5c6b)
  7103. #### `Runtime`: modified commands
  7104. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `userGesture` in the parameters had `experimental` _removed_.
  7105. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `userGesture` in the parameters had `experimental` _removed_.
  7106. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects) - `experimental` removed.
  7107. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames) - `experimental` removed.
  7108. #### `Runtime`: removed type
  7109. * [`Runtime.AsyncTaskId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-AsyncTaskId)
  7110. #### `Runtime`: modified type
  7111. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId) - `description` updated. The properties's `optional` _added_.
  7112. #### `Debugger`: new command
  7113. * [`Debugger.pauseOnAsyncCall`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncCall)
  7114. #### `Debugger`: removed command
  7115. * [`Debugger.pauseOnAsyncTask`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncTask)
  7116. #### `Debugger`: modified commands
  7117. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - The `scriptHash` in the parameters had `experimental` _removed_.
  7118. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - `experimental` removed.
  7119. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation) - The `targetCallFrames` in the parameters had `experimental` _removed_.
  7120. * [`Debugger.searchInContent`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-searchInContent) - `experimental` removed.
  7121. * [`Debugger.evaluateOnCallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-evaluateOnCallFrame) - The `throwOnSideEffect` in the parameters had `experimental` _removed_.
  7122. #### `Debugger`: modified events
  7123. * [`Debugger.scriptParsed`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptParsed) - The `hasSourceURL` in the parameters had `experimental` _removed_. The `isModule` in the parameters had `experimental` _removed_. The `length` in the parameters had `experimental` _removed_.
  7124. * [`Debugger.scriptFailedToParse`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-scriptFailedToParse) - The `hasSourceURL` in the parameters had `experimental` _removed_. The `isModule` in the parameters had `experimental` _removed_. The `length` in the parameters had `experimental` _removed_.
  7125. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `scheduledAsyncTaskId` in the parameters had `name` _updated_. The `scheduledAsyncTaskId` in the parameters had `$ref` _updated_. The `scheduledAsyncTaskId` in the parameters had `description` _updated_.
  7126. #### `Debugger`: modified types
  7127. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame) - The `functionLocation` in the properties had `experimental` _removed_.
  7128. * [`Debugger.SearchMatch`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-SearchMatch) - `experimental` removed.
  7129. * [`Debugger.BreakLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-BreakLocation) - `experimental` removed.
  7130. #### `Profiler`: modified commands
  7131. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage) - `experimental` removed.
  7132. * [`Profiler.stopPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopPreciseCoverage) - `experimental` removed.
  7133. * [`Profiler.takePreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takePreciseCoverage) - `experimental` removed.
  7134. * [`Profiler.getBestEffortCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-getBestEffortCoverage) - `experimental` removed.
  7135. #### `Profiler`: modified types
  7136. * [`Profiler.ProfileNode`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ProfileNode) - The `hitCount` in the properties had `experimental` _removed_. The `positionTicks` in the properties had `experimental` _removed_.
  7137. * [`Profiler.PositionTickInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-PositionTickInfo) - `experimental` removed.
  7138. * [`Profiler.CoverageRange`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-CoverageRange) - `experimental` removed.
  7139. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage) - `experimental` removed.
  7140. * [`Profiler.ScriptCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptCoverage) - `experimental` removed.
  7141. ## Roll protocol to r518863
  7142. ###### _2017-11-22 22:15:28 -0800_ | Diff: [764cee6...a86a78e](https://github.com/ChromeDevTools/devtools-protocol/compare/764cee6...a86a78e)
  7143. #### `Runtime`: new types
  7144. * [`Runtime.UniqueDebuggerId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-UniqueDebuggerId)
  7145. * [`Runtime.StackTraceId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTraceId)
  7146. #### `Runtime`: modified type
  7147. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace) - The properties's `parentId` _added_.
  7148. #### `Debugger`: new command
  7149. * [`Debugger.getStackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getStackTrace)
  7150. #### `Debugger`: modified commands
  7151. * [`Debugger.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-enable)
  7152. * [`Debugger.setScriptSource`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setScriptSource) - The `exceptionDetails` in the return value had `name` _updated_. The `exceptionDetails` in the return value had `$ref` _updated_. The `exceptionDetails` in the return value had `description` _updated_. The return value's `experimental` _added_. The return value's `exceptionDetails` _added_.
  7153. * [`Debugger.restartFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-restartFrame) - The return value's `asyncStackTraceId` _added_.
  7154. #### `Debugger`: modified event
  7155. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The `scheduledAsyncTaskId` in the parameters had `name` _updated_. The `scheduledAsyncTaskId` in the parameters had `$ref` _updated_. The `scheduledAsyncTaskId` in the parameters had `description` _updated_. The parameters's `scheduledAsyncTaskId` _added_.
  7156. ## Roll protocol to r518700 517208
  7157. ###### _2017-11-22 11:16:19 -0800_ | Diff: [4105e8d...3a092a2](https://github.com/ChromeDevTools/devtools-protocol/compare/4105e8d...3a092a2)
  7158. #### `Runtime`: modified type
  7159. * [`Runtime.StackTrace`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-StackTrace) - The properties's `promiseCreationFrame` _removed_.
  7160. ## Roll protocol to r518504
  7161. ###### _2017-11-21 18:16:11 -0800_ | Diff: [4d81be2...4105e8d](https://github.com/ChromeDevTools/devtools-protocol/compare/4d81be2...4105e8d)
  7162. #### `Page`: modified commands
  7163. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The `loaderId` in the return value had `experimental` _removed_.
  7164. * [`Page.setDocumentContent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDocumentContent) - `experimental` removed.
  7165. #### `Page`: modified type
  7166. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata) - The `offsetTop` in the properties had `experimental` _removed_. The `pageScaleFactor` in the properties had `experimental` _removed_. The `deviceWidth` in the properties had `experimental` _removed_. The `deviceHeight` in the properties had `experimental` _removed_. The `scrollOffsetX` in the properties had `experimental` _removed_. The `scrollOffsetY` in the properties had `experimental` _removed_. The `timestamp` in the properties had `experimental` _removed_.
  7167. #### `Emulation`: modified command
  7168. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `experimental` _added_.
  7169. #### `Network`: modified commands
  7170. * [`Network.canClearBrowserCache`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCache) - `deprecated` added.
  7171. * [`Network.canClearBrowserCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canClearBrowserCookies) - `deprecated` added.
  7172. * [`Network.canEmulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canEmulateNetworkConditions) - `deprecated` added.
  7173. #### `Database`: modified types
  7174. * [`Database.DatabaseId`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-DatabaseId) - `experimental` removed.
  7175. * [`Database.Database`](https://chromedevtools.github.io/devtools-protocol/tot/Database/#type-Database) - `experimental` removed.
  7176. #### `DOMStorage`: modified types
  7177. * [`DOMStorage.StorageId`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-StorageId) - `experimental` removed.
  7178. * [`DOMStorage.Item`](https://chromedevtools.github.io/devtools-protocol/tot/DOMStorage/#type-Item) - `experimental` removed.
  7179. #### `Target`: modified commands
  7180. * [`Target.setAutoAttach`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAutoAttach) - `experimental` added.
  7181. * [`Target.getTargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-getTargetInfo) - `experimental` added.
  7182. #### `Target`: modified events
  7183. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget) - `experimental` added.
  7184. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - `experimental` added.
  7185. #### `Animation`: modified types
  7186. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - `experimental` removed. The `pausedState` in the properties had `experimental` _removed_.
  7187. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect) - `experimental` removed.
  7188. ## Roll protocol to r517901
  7189. ###### _2017-11-20 12:15:46 -0800_ | Diff: [05920a2...4d81be2](https://github.com/ChromeDevTools/devtools-protocol/compare/05920a2...4d81be2)
  7190. #### `Page`: modified command
  7191. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The `errorText` in the return value had `type` _removed_. The `errorText` in the return value had `name` _updated_. The `errorText` in the return value had `description` _updated_. The return value's `$ref` _added_. The return value's `experimental` _added_. The return value's `errorText` _added_.
  7192. ## Roll protocol to r517530
  7193. ###### _2017-11-17 12:15:35 -0800_ | Diff: [29d3c99...05920a2](https://github.com/ChromeDevTools/devtools-protocol/compare/29d3c99...05920a2)
  7194. #### `Accessibility`: new type
  7195. * [`Accessibility.AXPropertyName`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXPropertyName)
  7196. #### `Accessibility`: removed types
  7197. * [`Accessibility.AXGlobalStates`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXGlobalStates)
  7198. * [`Accessibility.AXLiveRegionAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXLiveRegionAttributes)
  7199. * [`Accessibility.AXWidgetAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXWidgetAttributes)
  7200. * [`Accessibility.AXWidgetStates`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXWidgetStates)
  7201. * [`Accessibility.AXRelationshipAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXRelationshipAttributes)
  7202. #### `Accessibility`: modified type
  7203. * [`Accessibility.AXProperty`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXProperty) - The `name` in the properties had `type` _removed_. The properties's `$ref` _added_.
  7204. ## Roll protocol to r517415
  7205. ###### _2017-11-17 08:15:51 -0800_ | Diff: [9451957...29d3c99](https://github.com/ChromeDevTools/devtools-protocol/compare/9451957...29d3c99)
  7206. #### `Emulation`: modified command
  7207. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The `budget` in the parameters had `type` _updated_.
  7208. #### `Emulation`: modified events
  7209. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced) - The `virtualTimeElapsed` in the parameters had `type` _updated_.
  7210. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused) - The `virtualTimeElapsed` in the parameters had `type` _updated_.
  7211. ## Roll protocol to r517348
  7212. ###### _2017-11-17 01:15:46 -0800_ | Diff: [24d697a...9451957](https://github.com/ChromeDevTools/devtools-protocol/compare/24d697a...9451957)
  7213. #### `Network`: new command
  7214. * [`Network.searchInResponseBody`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-searchInResponseBody)
  7215. ## Roll protocol to r516944
  7216. ###### _2017-11-15 17:35:11 -0800_ | Diff: [efb204b...24d697a](https://github.com/ChromeDevTools/devtools-protocol/compare/efb204b...24d697a)
  7217. #### `Network`: new command
  7218. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  7219. #### `Network`: modified event
  7220. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `redirectHeaders` in the parameters had `$ref` _removed_. The `redirectStatusCode` in the parameters had `type` _removed_. The `redirectUrl` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `$ref` _removed_. The `redirectHeaders` in the parameters had `name` _updated_. The `redirectHeaders` in the parameters had `description` _updated_. The `redirectStatusCode` in the parameters had `name` _updated_. The `redirectStatusCode` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_ (2 times). The parameters's `responseHeaders` _added_.
  7221. #### `Network`: new type
  7222. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  7223. #### `Network`: modified type
  7224. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The properties's `interceptionStage` _added_.
  7225. ## Roll protocol to r516591
  7226. ###### _2017-11-14 20:15:32 -0800_ | Diff: [c0d3ebf...efb204b](https://github.com/ChromeDevTools/devtools-protocol/compare/c0d3ebf...efb204b)
  7227. #### `Network`: removed command
  7228. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  7229. #### `Network`: modified event
  7230. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The parameters's `responseHeaders` _removed_. The `redirectUrl` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `$ref` _removed_. The `responseErrorReason` in the parameters had `$ref` _removed_. The `responseStatusCode` in the parameters had `type` _removed_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The `responseErrorReason` in the parameters had `name` _updated_. The `responseErrorReason` in the parameters had `description` _updated_. The `responseStatusCode` in the parameters had `name` _updated_. The `responseStatusCode` in the parameters had `description` _updated_. The parameters's `$ref` _added_ (2 times). The parameters's `type` _added_ (2 times).
  7231. #### `Network`: removed type
  7232. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  7233. #### `Network`: modified type
  7234. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The properties's `interceptionStage` _removed_.
  7235. ## Roll protocol to r516563 516429
  7236. ###### _2017-11-14 18:15:47 -0800_ | Diff: [d3257bc...a1b4645](https://github.com/ChromeDevTools/devtools-protocol/compare/d3257bc...a1b4645)
  7237. #### `Network`: new command
  7238. * [`Network.getResponseBodyForInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getResponseBodyForInterception)
  7239. #### `Network`: modified event
  7240. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `redirectHeaders` in the parameters had `$ref` _removed_. The `redirectStatusCode` in the parameters had `type` _removed_. The `redirectUrl` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `$ref` _removed_. The `redirectHeaders` in the parameters had `name` _updated_. The `redirectHeaders` in the parameters had `description` _updated_. The `redirectStatusCode` in the parameters had `name` _updated_. The `redirectStatusCode` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_ (2 times). The parameters's `responseHeaders` _added_.
  7241. #### `Network`: new type
  7242. * [`Network.InterceptionStage`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionStage)
  7243. #### `Network`: modified type
  7244. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern) - The properties's `interceptionStage` _added_.
  7245. ## Roll protocol to r515398
  7246. ###### _2017-11-09 17:16:13 -0800_ | Diff: [abb8c6c...d3257bc](https://github.com/ChromeDevTools/devtools-protocol/compare/abb8c6c...d3257bc)
  7247. #### `Page`: modified command
  7248. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The `loaderId` in the return value had `$ref` _removed_. The `loaderId` in the return value had `experimental` _removed_. The `frameId` in the return value had `description` _updated_. The `loaderId` in the return value had `name` _updated_. The `loaderId` in the return value had `description` _updated_. The return value's `type` _added_. The return value's `optional` _added_.
  7249. ## Roll protocol to r514369
  7250. ###### _2017-11-06 19:15:46 -0800_ | Diff: [2cda62b...abb8c6c](https://github.com/ChromeDevTools/devtools-protocol/compare/2cda62b...abb8c6c)
  7251. #### `HeapProfiler`: new command
  7252. * [`HeapProfiler.getSamplingProfile`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#method-getSamplingProfile)
  7253. ## Roll protocol to r514112
  7254. ###### _2017-11-06 04:15:45 -0800_ | Diff: [d9a7169...2cda62b](https://github.com/ChromeDevTools/devtools-protocol/compare/d9a7169...2cda62b)
  7255. #### `Runtime`: new type
  7256. * [`Runtime.AsyncTaskId`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-AsyncTaskId)
  7257. #### `Debugger`: new command
  7258. * [`Debugger.pauseOnAsyncTask`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-pauseOnAsyncTask)
  7259. #### `Debugger`: modified commands
  7260. * [`Debugger.stepInto`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-stepInto)
  7261. * [`Debugger.scheduleStepIntoAsync`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-scheduleStepIntoAsync) - `description` updated.
  7262. #### `Debugger`: modified event
  7263. * [`Debugger.paused`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#event-paused) - The parameters's `scheduledAsyncTaskId` _added_.
  7264. ## Roll protocol to r514053
  7265. ###### _2017-11-04 11:15:40_ | Diff: [e310fa1...d9a7169](https://github.com/ChromeDevTools/devtools-protocol/compare/e310fa1...d9a7169)
  7266. #### `Debugger`: new command
  7267. * [`Debugger.setReturnValue`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setReturnValue)
  7268. ## Roll protocol to r513425
  7269. ###### _2017-11-02 01:15:48_ | Diff: [4ea1613...e310fa1](https://github.com/ChromeDevTools/devtools-protocol/compare/4ea1613...e310fa1)
  7270. #### `Page`: new command
  7271. * [`Page.setLifecycleEventsEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setLifecycleEventsEnabled)
  7272. #### `Page`: modified command
  7273. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The return value's `loaderId` _added_.
  7274. ## Roll protocol to r513411
  7275. ###### _2017-11-01 22:15:48_ | Diff: [dcd904a...4ea1613](https://github.com/ChromeDevTools/devtools-protocol/compare/dcd904a...4ea1613)
  7276. #### `Page`: modified event
  7277. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen) - `description` updated. The `windowName` in the parameters had `description` _updated_. The `windowFeatures` in the parameters had `type` _updated_. The `windowFeatures` in the parameters had `description` _updated_. The `userGesture` in the parameters had `description` _updated_. The parameters's `items` _added_.
  7278. ## Roll protocol to r513373
  7279. ###### _2017-11-01 19:15:47_ | Diff: [a1e4422...dcd904a](https://github.com/ChromeDevTools/devtools-protocol/compare/a1e4422...dcd904a)
  7280. #### `Page`: modified event
  7281. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent) - The `name` in the parameters had `type` _removed_. The `timestamp` in the parameters had `$ref` _removed_. The `name` in the parameters had `name` _updated_. The `timestamp` in the parameters had `name` _updated_. The parameters's `$ref` _added_. The parameters's `description` _added_. The parameters's `type` _added_. The parameters's `timestamp` _added_.
  7282. #### `Network`: modified events
  7283. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `loaderId` in the parameters had `description` _updated_.
  7284. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `loaderId` in the parameters had `description` _updated_.
  7285. ## Roll protocol to r513327 513317
  7286. ###### _2017-11-01 17:15:44_ | Diff: [171f927...916de95](https://github.com/ChromeDevTools/devtools-protocol/compare/171f927...916de95)
  7287. #### `Page`: modified commands
  7288. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument) - `experimental` removed.
  7289. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument) - `experimental` removed.
  7290. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The `referrer` in the parameters had `experimental` _removed_. The `transitionType` in the parameters had `experimental` _removed_. The `frameId` in the return value had `experimental` _removed_.
  7291. * [`Page.stopLoading`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-stopLoading) - `experimental` removed.
  7292. * [`Page.getNavigationHistory`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getNavigationHistory) - `experimental` removed.
  7293. * [`Page.navigateToHistoryEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigateToHistoryEntry) - `experimental` removed.
  7294. * [`Page.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getCookies) - `deprecated` added.
  7295. * [`Page.deleteCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-deleteCookie) - `deprecated` added.
  7296. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - `deprecated` added.
  7297. * [`Page.clearDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceMetricsOverride) - `deprecated` added.
  7298. * [`Page.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setGeolocationOverride) - `deprecated` added.
  7299. * [`Page.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearGeolocationOverride) - `deprecated` added.
  7300. * [`Page.setDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceOrientationOverride) - `deprecated` added.
  7301. * [`Page.clearDeviceOrientationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-clearDeviceOrientationOverride) - `deprecated` added.
  7302. * [`Page.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setTouchEmulationEnabled) - `deprecated` added.
  7303. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot) - `experimental` removed. The `clip` in the parameters had `experimental` _removed_.
  7304. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - `experimental` removed.
  7305. * [`Page.getAppManifest`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getAppManifest) - `experimental` removed.
  7306. * [`Page.getLayoutMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getLayoutMetrics) - `experimental` removed.
  7307. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld) - `experimental` removed.
  7308. #### `Page`: modified events
  7309. * [`Page.frameAttached`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameAttached) - The `stack` in the parameters had `experimental` _removed_.
  7310. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The `reason` in the parameters had `experimental` _removed_. The `url` in the parameters had `experimental` _removed_.
  7311. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen) - `experimental` removed.
  7312. #### `Page`: removed type
  7313. * [`Page.NavigationResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationResponse)
  7314. #### `Page`: modified types
  7315. * [`Page.ScriptIdentifier`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScriptIdentifier) - `experimental` removed.
  7316. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType) - `experimental` removed.
  7317. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry) - `experimental` removed.
  7318. * [`Page.DialogType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-DialogType) - `experimental` removed.
  7319. * [`Page.AppManifestError`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-AppManifestError) - `experimental` removed.
  7320. * [`Page.LayoutViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-LayoutViewport) - `experimental` removed.
  7321. * [`Page.VisualViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-VisualViewport) - `experimental` removed.
  7322. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport) - `experimental` removed.
  7323. #### `Emulation`: modified commands
  7324. * [`Emulation.setScriptExecutionDisabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setScriptExecutionDisabled) - `experimental` removed.
  7325. * [`Emulation.setGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setGeolocationOverride) - `experimental` removed.
  7326. * [`Emulation.clearGeolocationOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-clearGeolocationOverride) - `experimental` removed.
  7327. * [`Emulation.canEmulate`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-canEmulate) - `experimental` removed.
  7328. * [`Emulation.setDefaultBackgroundColorOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDefaultBackgroundColorOverride) - `experimental` removed.
  7329. #### `Network`: modified commands
  7330. * [`Network.getCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getCookies) - `experimental` removed.
  7331. * [`Network.getAllCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getAllCookies) - `experimental` removed.
  7332. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies) - `experimental` removed.
  7333. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - `experimental` removed.
  7334. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies) - `experimental` removed.
  7335. * [`Network.canEmulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-canEmulateNetworkConditions) - `experimental` removed.
  7336. #### `Network`: modified events
  7337. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `wallTime` in the parameters had `experimental` _removed_. The `type` in the parameters had `experimental` _removed_. The `frameId` in the parameters had `experimental` _removed_.
  7338. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `frameId` in the parameters had `experimental` _removed_.
  7339. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed) - The `blockedReason` in the parameters had `experimental` _removed_.
  7340. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest) - `experimental` removed. The `wallTime` in the parameters had `experimental` _removed_.
  7341. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived) - `experimental` removed.
  7342. * [`Network.webSocketCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketCreated) - `experimental` removed.
  7343. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed) - `experimental` removed.
  7344. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived) - `experimental` removed.
  7345. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError) - `experimental` removed.
  7346. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent) - `experimental` removed.
  7347. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived) - `experimental` removed.
  7348. #### `Network`: modified types
  7349. * [`Network.BlockedReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-BlockedReason) - `experimental` removed.
  7350. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `remoteIPAddress` in the properties had `experimental` _removed_. The `remotePort` in the properties had `experimental` _removed_.
  7351. * [`Network.WebSocketRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketRequest) - `experimental` removed.
  7352. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse) - `experimental` removed.
  7353. * [`Network.WebSocketFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketFrame) - `experimental` removed.
  7354. * [`Network.Cookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Cookie) - `experimental` removed.
  7355. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam) - `experimental` removed.
  7356. #### `DOM`: modified commands
  7357. * [`DOM.getDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getDocument) - The `depth` in the parameters had `experimental` _removed_. The `pierce` in the parameters had `experimental` _removed_.
  7358. * [`DOM.getFlattenedDocument`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getFlattenedDocument) - The `depth` in the parameters had `experimental` _removed_. The `pierce` in the parameters had `experimental` _removed_.
  7359. * [`DOM.requestChildNodes`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-requestChildNodes) - The `depth` in the parameters had `experimental` _removed_. The `pierce` in the parameters had `experimental` _removed_.
  7360. * [`DOM.performSearch`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-performSearch) - The `includeUserAgentShadowDOM` in the parameters had `experimental` _removed_.
  7361. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus) - `experimental` removed.
  7362. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles) - `experimental` removed.
  7363. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel) - `experimental` removed. `description` updated.
  7364. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode) - The `depth` in the parameters had `experimental` _removed_. The `pierce` in the parameters had `experimental` _removed_.
  7365. #### `DOM`: modified types
  7366. * [`DOM.BackendNodeId`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNodeId) - `experimental` removed.
  7367. * [`DOM.BackendNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BackendNode) - `experimental` removed.
  7368. * [`DOM.Node`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Node) - The `parentId` in the properties had `experimental` _removed_. The `backendNodeId` in the properties had `experimental` _removed_. The `baseURL` in the properties had `experimental` _removed_. The `frameId` in the properties had `experimental` _removed_. The `shadowRoots` in the properties had `experimental` _removed_. The `templateContent` in the properties had `experimental` _removed_. The `pseudoElements` in the properties had `experimental` _removed_. The `distributedNodes` in the properties had `experimental` _removed_. The `isSVG` in the properties had `experimental` _removed_.
  7369. * [`DOM.Quad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Quad) - `experimental` removed.
  7370. * [`DOM.BoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-BoxModel) - `experimental` removed.
  7371. * [`DOM.ShapeOutsideInfo`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-ShapeOutsideInfo) - `experimental` removed.
  7372. * [`DOM.Rect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-Rect) - `experimental` removed.
  7373. #### `CSS`: modified commands
  7374. * [`CSS.getPlatformFontsForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getPlatformFontsForNode) - `experimental` removed.
  7375. * [`CSS.collectClassNames`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-collectClassNames) - `experimental` removed.
  7376. * [`CSS.getMediaQueries`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getMediaQueries) - `experimental` removed.
  7377. * [`CSS.setEffectivePropertyValueForNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-setEffectivePropertyValueForNode) - `experimental` removed.
  7378. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - `experimental` removed.
  7379. * [`CSS.startRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-startRuleUsageTracking) - `experimental` removed.
  7380. * [`CSS.takeCoverageDelta`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-takeCoverageDelta) - `experimental` removed.
  7381. * [`CSS.stopRuleUsageTracking`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-stopRuleUsageTracking) - `experimental` removed.
  7382. #### `CSS`: removed type
  7383. * [`CSS.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-InlineTextBox)
  7384. #### `CSS`: modified types
  7385. * [`CSS.CSSStyleSheetHeader`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSStyleSheetHeader) - The `length` in the properties had `experimental` _removed_.
  7386. * [`CSS.RuleUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-RuleUsage) - `experimental` removed.
  7387. * [`CSS.CSSMedia`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-CSSMedia) - The `mediaList` in the properties had `experimental` _removed_.
  7388. * [`CSS.MediaQuery`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQuery) - `experimental` removed.
  7389. * [`CSS.MediaQueryExpression`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-MediaQueryExpression) - `experimental` removed.
  7390. * [`CSS.PlatformFontUsage`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-PlatformFontUsage) - `experimental` removed.
  7391. #### `DOMSnapshot`: new type
  7392. * [`DOMSnapshot.InlineTextBox`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-InlineTextBox)
  7393. #### `DOMSnapshot`: modified type
  7394. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode) - The `inlineTextNodes` in the properties had `$ref` _updated_.
  7395. #### `DOMDebugger`: modified command
  7396. * [`DOMDebugger.getEventListeners`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#method-getEventListeners) - `experimental` removed. The `depth` in the parameters had `experimental` _removed_. The `pierce` in the parameters had `experimental` _removed_.
  7397. #### `DOMDebugger`: modified type
  7398. * [`DOMDebugger.EventListener`](https://chromedevtools.github.io/devtools-protocol/tot/DOMDebugger/#type-EventListener) - `experimental` removed.
  7399. #### `Target`: modified commands
  7400. * [`Target.setAttachToFrames`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setAttachToFrames) - `experimental` added.
  7401. * [`Target.setRemoteLocations`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setRemoteLocations) - `experimental` added.
  7402. * [`Target.createBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext) - `experimental` added.
  7403. * [`Target.disposeBrowserContext`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-disposeBrowserContext) - `experimental` added.
  7404. #### `Target`: modified types
  7405. * [`Target.BrowserContextID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-BrowserContextID) - `experimental` added.
  7406. * [`Target.RemoteLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-RemoteLocation) - `experimental` added.
  7407. #### `Input`: modified commands
  7408. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The `location` in the parameters had `experimental` _removed_.
  7409. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - `experimental` removed.
  7410. #### `Input`: modified type
  7411. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint) - `experimental` removed.
  7412. #### `Browser`: modified commands
  7413. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget) - `experimental` added.
  7414. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds) - `experimental` added.
  7415. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds) - `experimental` added.
  7416. #### `Browser`: modified types
  7417. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID) - `experimental` added.
  7418. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState) - `experimental` added.
  7419. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds) - `experimental` added.
  7420. ## Roll protocol to r512925
  7421. ###### _2017-10-31 13:15:51_ | Diff: [d7f1734...171f927](https://github.com/ChromeDevTools/devtools-protocol/compare/d7f1734...171f927)
  7422. #### `Page`: new command
  7423. * [`Page.getFrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree)
  7424. #### `Page`: new type
  7425. * [`Page.FrameTree`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameTree)
  7426. ## Roll protocol to r511679
  7427. ###### _2017-10-25 18:15:34_ | Diff: [704cc11...d7f1734](https://github.com/ChromeDevTools/devtools-protocol/compare/704cc11...d7f1734)
  7428. #### `Network`: modified event
  7429. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `isNavigationRequest` in the parameters had `type` _removed_. The `redirectHeaders` in the parameters had `$ref` _removed_. The `redirectHeaders` in the parameters had `optional` _removed_. The `redirectStatusCode` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `$ref` _removed_. The `resourceType` in the parameters had `name` _updated_. The `resourceType` in the parameters had `$ref` _updated_. The `resourceType` in the parameters had `description` _updated_. The `isNavigationRequest` in the parameters had `name` _updated_. The `isNavigationRequest` in the parameters had `description` _updated_. The `redirectHeaders` in the parameters had `name` _updated_. The `redirectHeaders` in the parameters had `description` _updated_. The `redirectStatusCode` in the parameters had `name` _updated_. The `redirectStatusCode` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `type` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The parameters's `$ref` _added_ (2 times). The parameters's `type` _added_ (2 times). The parameters's `authChallenge` _added_.
  7430. ## Roll protocol to r510771
  7431. ###### _2017-10-23 05:16:00_ | Diff: [228b292...745052e](https://github.com/ChromeDevTools/devtools-protocol/compare/228b292...745052e)
  7432. #### `HeadlessExperimental`: modified command
  7433. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame) - The `screenshotData` in the return value had `optional` _removed_. The `screenshotData` in the return value had `name` _updated_. The `screenshotData` in the return value had `type` _updated_. The `screenshotData` in the return value had `description` _updated_. The return value's `screenshotData` _added_.
  7434. ## Roll protocol to r510657
  7435. ###### _2017-10-20 21:15:50_ | Diff: [5df6a06...cb1d580](https://github.com/ChromeDevTools/devtools-protocol/compare/5df6a06...cb1d580)
  7436. #### `Network`: new command
  7437. * [`Network.setRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterception)
  7438. #### `Network`: removed command
  7439. * [`Network.setRequestInterceptionEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterceptionEnabled)
  7440. #### `Network`: new type
  7441. * [`Network.RequestPattern`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-RequestPattern)
  7442. ## Roll protocol to r509994
  7443. ###### _2017-10-18 21:15:50_ | Diff: [06db515...5df6a06](https://github.com/ChromeDevTools/devtools-protocol/compare/06db515...5df6a06)
  7444. #### `Input`: modified command
  7445. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The parameters's `location` _added_.
  7446. ## Roll protocol to r509917
  7447. ###### _2017-10-18 16:15:52_ | Diff: [2249014...06db515](https://github.com/ChromeDevTools/devtools-protocol/compare/2249014...06db515)
  7448. #### `Emulation`: modified command
  7449. * [`Emulation.setVirtualTimePolicy`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVirtualTimePolicy) - The parameters's `maxVirtualTimeTaskStarvationCount` _added_.
  7450. ## Roll protocol to r509331
  7451. ###### _2017-10-17 02:15:55_ | Diff: [c623810...2249014](https://github.com/ChromeDevTools/devtools-protocol/compare/c623810...2249014)
  7452. #### `Runtime`: new command
  7453. * [`Runtime.globalLexicalScopeNames`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-globalLexicalScopeNames)
  7454. ## Roll protocol to r508301
  7455. ###### _2017-10-12 03:16:09_ | Diff: [e95be51...4eaa4f7](https://github.com/ChromeDevTools/devtools-protocol/compare/e95be51...4eaa4f7)
  7456. #### `Browser`: new command
  7457. * [`Browser.close`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-close)
  7458. ## Roll protocol to r508087
  7459. ###### _2017-10-11 13:15:51_ | Diff: [4856f10...2988a57](https://github.com/ChromeDevTools/devtools-protocol/compare/4856f10...2988a57)
  7460. #### `Target`: modified type
  7461. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The properties's `openerId` _added_.
  7462. ## Roll protocol to r507818
  7463. ###### _2017-10-10 16:15:50_ | Diff: [662fafd...4856f10](https://github.com/ChromeDevTools/devtools-protocol/compare/662fafd...4856f10)
  7464. #### `HeadlessExperimental`: new domain
  7465. * [`HeadlessExperimental.HeadlessExperimental`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#domain-HeadlessExperimental)
  7466. #### `Page`: modified command
  7467. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The parameters's `viewport` _added_.
  7468. #### `Emulation`: modified command
  7469. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `viewport` _added_.
  7470. #### `Target`: modified command
  7471. * [`Target.createTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget) - The parameters's `enableBeginFrameControl` _added_.
  7472. #### `HeadlessExperimental`: new commands
  7473. * [`HeadlessExperimental.enable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-enable)
  7474. * [`HeadlessExperimental.disable`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-disable)
  7475. * [`HeadlessExperimental.beginFrame`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#method-beginFrame)
  7476. #### `HeadlessExperimental`: new events
  7477. * [`HeadlessExperimental.needsBeginFramesChanged`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-needsBeginFramesChanged)
  7478. * [`HeadlessExperimental.mainFrameReadyForScreenshots`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#event-mainFrameReadyForScreenshots)
  7479. #### `HeadlessExperimental`: new type
  7480. * [`HeadlessExperimental.ScreenshotParams`](https://chromedevtools.github.io/devtools-protocol/tot/HeadlessExperimental/#type-ScreenshotParams)
  7481. ## Roll protocol to r507615
  7482. ###### _2017-10-10 01:15:40_ | Diff: [a63b5fa...662fafd](https://github.com/ChromeDevTools/devtools-protocol/compare/a63b5fa...662fafd)
  7483. #### `Page`: new event
  7484. * [`Page.windowOpen`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-windowOpen)
  7485. ## Roll protocol to r507488
  7486. ###### _2017-10-09 14:16:01_ | Diff: [11ca8ba...a63b5fa](https://github.com/ChromeDevTools/devtools-protocol/compare/11ca8ba...a63b5fa)
  7487. #### `Page`: modified event
  7488. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent) - The `name` in the parameters had `type` _removed_. The `timestamp` in the parameters had `$ref` _removed_. The `name` in the parameters had `name` _updated_. The `timestamp` in the parameters had `name` _updated_. The parameters's `$ref` _added_. The parameters's `description` _added_. The parameters's `type` _added_. The parameters's `timestamp` _added_.
  7489. ## Roll protocol to r507347
  7490. ###### _2017-10-09 03:16:03_ | Diff: [2189599...11ca8ba](https://github.com/ChromeDevTools/devtools-protocol/compare/2189599...11ca8ba)
  7491. #### `Network`: modified command
  7492. * [`Network.setRequestInterceptionEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterceptionEnabled) - `description` updated. The parameters's `resourceTypes` _added_.
  7493. ## Roll protocol to r507305
  7494. ###### _2017-10-08 01:15:50_ | Diff: [555aaea...2189599](https://github.com/ChromeDevTools/devtools-protocol/compare/555aaea...2189599)
  7495. #### `Debugger`: modified command
  7496. * [`Debugger.setBreakpointByUrl`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-setBreakpointByUrl) - The `columnNumber` in the parameters had `name` _updated_. The `columnNumber` in the parameters had `type` _updated_. The `columnNumber` in the parameters had `description` _updated_. The `condition` in the parameters had `name` _updated_. The `condition` in the parameters had `type` _updated_. The `condition` in the parameters had `description` _updated_. The parameters's `experimental` _added_. The parameters's `condition` _added_.
  7497. ## Roll protocol to r507040
  7498. ###### _2017-10-06 06:15:53_ | Diff: [1fd8f9d...555aaea](https://github.com/ChromeDevTools/devtools-protocol/compare/1fd8f9d...555aaea)
  7499. #### `Emulation`: new event
  7500. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced)
  7501. ## Roll protocol to r506815
  7502. ###### _2017-10-05 12:15:34_ | Diff: [53e8611...7931842](https://github.com/ChromeDevTools/devtools-protocol/compare/53e8611...7931842)
  7503. #### `Emulation`: removed event
  7504. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced)
  7505. ## Roll protocol to r506789
  7506. ###### _2017-10-05 11:15:33_ | Diff: [d9b6389...53e8611](https://github.com/ChromeDevTools/devtools-protocol/compare/d9b6389...53e8611)
  7507. #### `Page`: modified event
  7508. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The `reason` in the parameters had `formSubmission` _updated_. The `reason` in the parameters had `httpHeaderRefresh` _updated_. The `reason` in the parameters had `scriptInitiated` _updated_. The `reason` in the parameters had `metaTagRefresh` _updated_. The `reason` in the parameters had `pageBlockInterstitial` _updated_. The `reason` in the parameters had `reload` _updated_. The `2` in the parameters had `reload` _added_.
  7509. #### `Emulation`: new event
  7510. * [`Emulation.virtualTimeAdvanced`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeAdvanced)
  7511. ## Roll protocol to r505811
  7512. ###### _2017-10-02 15:15:35_ | Diff: [ae7b452...e81a47d](https://github.com/ChromeDevTools/devtools-protocol/compare/ae7b452...e81a47d)
  7513. #### `Animation`: modified types
  7514. * [`Animation.Animation`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-Animation) - The `source` in the properties had `$ref` _removed_. The `type` in the properties had `type` _removed_. The `type` in the properties had `enum` _removed_. The `source` in the properties had `name` _updated_. The `source` in the properties had `description` _updated_. The `type` in the properties had `name` _updated_. The `type` in the properties had `description` _updated_. The properties's `type` _added_. The properties's `enum` _added_. The properties's `$ref` _added_. The properties's `optional` _added_.
  7515. * [`Animation.AnimationEffect`](https://chromedevtools.github.io/devtools-protocol/tot/Animation/#type-AnimationEffect) - The properties's `optional` _added_.
  7516. ## Roll protocol to r505461
  7517. ###### _2017-09-29 15:15:43_ | Diff: [80f8dac...ae7b452](https://github.com/ChromeDevTools/devtools-protocol/compare/80f8dac...ae7b452)
  7518. #### `Log`: modified type
  7519. * [`Log.LogEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Log/#type-LogEntry) - The `source` in the properties had `other` _updated_. The `0` in the properties had `other` _added_. The properties's `args` _added_.
  7520. ## Roll protocol to r505240
  7521. ###### _2017-09-28 18:15:42_ | Diff: [406b6a8...80f8dac](https://github.com/ChromeDevTools/devtools-protocol/compare/406b6a8...80f8dac)
  7522. #### `Storage`: new commands
  7523. * [`Storage.trackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackIndexedDBForOrigin)
  7524. * [`Storage.untrackIndexedDBForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackIndexedDBForOrigin)
  7525. #### `Storage`: new events
  7526. * [`Storage.indexedDBListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBListUpdated)
  7527. * [`Storage.indexedDBContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-indexedDBContentUpdated)
  7528. ## Roll protocol to r504912
  7529. ###### _2017-09-27 22:15:34_ | Diff: [c690a27...406b6a8](https://github.com/ChromeDevTools/devtools-protocol/compare/c690a27...406b6a8)
  7530. #### `Runtime`: modified event
  7531. * [`Runtime.exceptionRevoked`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-exceptionRevoked) - The `exceptionId` in the parameters had `description` _updated_.
  7532. ## Roll protocol to r504880
  7533. ###### _2017-09-27 20:15:26_ | Diff: [6ab68c9...c690a27](https://github.com/ChromeDevTools/devtools-protocol/compare/6ab68c9...c690a27)
  7534. #### `DOM`: modified command
  7535. * [`DOM.getSearchResults`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getSearchResults) - `description` updated.
  7536. ## Roll protocol to r504262
  7537. ###### _2017-09-25 19:15:28_ | Diff: [6c8cab7...6ab68c9](https://github.com/ChromeDevTools/devtools-protocol/compare/6c8cab7...6ab68c9)
  7538. #### `Network`: modified types
  7539. * [`Network.Response`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) - The `status` in the properties had `type` _updated_.
  7540. * [`Network.WebSocketResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-WebSocketResponse) - The `status` in the properties had `type` _updated_.
  7541. ## Roll protocol to r502201
  7542. ###### _2017-09-15 01:15:32_ | Diff: [f2d4460...6c8cab7](https://github.com/ChromeDevTools/devtools-protocol/compare/f2d4460...6c8cab7)
  7543. #### `ServiceWorker`: new command
  7544. * [`ServiceWorker.stopAllWorkers`](https://chromedevtools.github.io/devtools-protocol/tot/ServiceWorker/#method-stopAllWorkers)
  7545. ## Roll protocol to r501229
  7546. ###### _2017-09-12 03:15:42_ | Diff: [fee6891...f2d4460](https://github.com/ChromeDevTools/devtools-protocol/compare/fee6891...f2d4460)
  7547. #### `Emulation`: new command
  7548. * [`Emulation.setNavigatorOverrides`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setNavigatorOverrides)
  7549. ## Roll protocol to r500703
  7550. ###### _2017-09-08 15:15:55_ | Diff: [adb2948...fee6891](https://github.com/ChromeDevTools/devtools-protocol/compare/adb2948...fee6891)
  7551. #### `Profiler`: new commands
  7552. * [`Profiler.startTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startTypeProfile)
  7553. * [`Profiler.stopTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-stopTypeProfile)
  7554. * [`Profiler.takeTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-takeTypeProfile)
  7555. #### `Profiler`: new types
  7556. * [`Profiler.TypeObject`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeObject)
  7557. * [`Profiler.TypeProfileEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-TypeProfileEntry)
  7558. * [`Profiler.ScriptTypeProfile`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-ScriptTypeProfile)
  7559. ## Roll protocol to r500564
  7560. ###### _2017-09-08 04:15:36_ | Diff: [7794931...adb2948](https://github.com/ChromeDevTools/devtools-protocol/compare/7794931...adb2948)
  7561. #### `Debugger`: modified type
  7562. * [`Debugger.CallFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#type-CallFrame) - The `scopeChain` in the properties had `items` _removed_. The `this` in the properties had `$ref` _removed_. The `returnValue` in the properties had `optional` _removed_. The `scopeChain` in the properties had `name` _updated_. The `scopeChain` in the properties had `type` _updated_. The `scopeChain` in the properties had `description` _updated_. The `this` in the properties had `name` _updated_. The `this` in the properties had `description` _updated_. The `returnValue` in the properties had `name` _updated_. The `returnValue` in the properties had `description` _updated_. The properties's `type` _added_. The properties's `items` _added_. The properties's `returnValue` _added_.
  7563. ## Roll protocol to r500445
  7564. ###### _2017-09-07 17:15:41_ | Diff: [ce22a9f...7794931](https://github.com/ChromeDevTools/devtools-protocol/compare/ce22a9f...7794931)
  7565. #### `Input`: modified type
  7566. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint) - The `x` in the properties had `type` _updated_. The `y` in the properties had `type` _updated_. The `radiusX` in the properties had `type` _updated_. The `radiusX` in the properties had `description` _updated_. The `radiusY` in the properties had `type` _updated_. The `radiusY` in the properties had `description` _updated_.
  7567. ## Roll protocol to r500221
  7568. ###### _2017-09-06 22:15:25_ | Diff: [a0d1c79...ce22a9f](https://github.com/ChromeDevTools/devtools-protocol/compare/a0d1c79...ce22a9f)
  7569. #### `Network`: modified command
  7570. * [`Network.emulateNetworkConditions`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-emulateNetworkConditions) - The `latency` in the parameters had `description` _updated_. The `downloadThroughput` in the parameters had `description` _updated_. The `uploadThroughput` in the parameters had `description` _updated_.
  7571. #### `Network`: modified type
  7572. * [`Network.ConnectionType`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ConnectionType) - `description` updated.
  7573. ## Roll protocol to r499605
  7574. ###### _2017-09-05 05:16:01_ | Diff: [96c09fd...a0d1c79](https://github.com/ChromeDevTools/devtools-protocol/compare/96c09fd...a0d1c79)
  7575. #### `Emulation`: new event
  7576. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused)
  7577. #### `Emulation`: modified event
  7578. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired) - `description` updated.
  7579. ## Roll protocol to r499541
  7580. ###### _2017-09-04 19:15:31_ | Diff: [a7c9118...96c09fd](https://github.com/ChromeDevTools/devtools-protocol/compare/a7c9118...96c09fd)
  7581. #### `Page`: modified command
  7582. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The `scale` in the parameters had `description` _updated_. The `screenWidth` in the parameters had `description` _updated_. The `screenHeight` in the parameters had `description` _updated_. The `positionX` in the parameters had `description` _updated_. The `positionY` in the parameters had `description` _updated_.
  7583. #### `Emulation`: modified command
  7584. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The `scale` in the parameters had `description` _updated_. The `screenWidth` in the parameters had `description` _updated_. The `screenHeight` in the parameters had `description` _updated_. The `positionX` in the parameters had `description` _updated_. The `positionY` in the parameters had `description` _updated_.
  7585. ## Roll protocol to r499413
  7586. ###### _2017-09-03 02:15:28_ | Diff: [78d5984...a7c9118](https://github.com/ChromeDevTools/devtools-protocol/compare/78d5984...a7c9118)
  7587. #### `Emulation`: removed event
  7588. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused)
  7589. #### `Emulation`: modified event
  7590. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired) - `description` updated.
  7591. ## Roll protocol to r499273
  7592. ###### _2017-09-01 13:15:31_ | Diff: [95fdb0b...78d5984](https://github.com/ChromeDevTools/devtools-protocol/compare/95fdb0b...78d5984)
  7593. #### `Runtime`: modified command
  7594. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `objectId` in the parameters had `$ref` _removed_. The `functionDeclaration` in the parameters had `type` _removed_. The `objectId` in the parameters had `name` _updated_. The `objectId` in the parameters had `description` _updated_. The `functionDeclaration` in the parameters had `name` _updated_. The `functionDeclaration` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `$ref` _added_. The parameters's `optional` _added_. The parameters's `executionContextId` _added_. The parameters's `objectGroup` _added_.
  7595. ## Roll protocol to r498841
  7596. ###### _2017-08-31 06:16:26_ | Diff: [44bc1f3...95fdb0b](https://github.com/ChromeDevTools/devtools-protocol/compare/44bc1f3...95fdb0b)
  7597. #### `Runtime`: modified command
  7598. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The parameters's `executionContextId` _removed_. The parameters's `objectGroup` _removed_. The `functionDeclaration` in the parameters had `type` _removed_. The `objectId` in the parameters had `$ref` _removed_. The `objectId` in the parameters had `optional` _removed_. The `functionDeclaration` in the parameters had `name` _updated_. The `functionDeclaration` in the parameters had `description` _updated_. The `objectId` in the parameters had `name` _updated_. The `objectId` in the parameters had `description` _updated_. The parameters's `$ref` _added_. The parameters's `type` _added_.
  7599. #### `Emulation`: new event
  7600. * [`Emulation.virtualTimePaused`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimePaused)
  7601. #### `Emulation`: modified event
  7602. * [`Emulation.virtualTimeBudgetExpired`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#event-virtualTimeBudgetExpired) - `description` updated.
  7603. ## Roll protocol to r498768
  7604. ###### _2017-08-30 23:15:32_ | Diff: [7d46741...44bc1f3](https://github.com/ChromeDevTools/devtools-protocol/compare/7d46741...44bc1f3)
  7605. #### `Runtime`: modified command
  7606. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `objectId` in the parameters had `$ref` _removed_. The `functionDeclaration` in the parameters had `type` _removed_. The `objectId` in the parameters had `name` _updated_. The `objectId` in the parameters had `description` _updated_. The `functionDeclaration` in the parameters had `name` _updated_. The `functionDeclaration` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `$ref` _added_. The parameters's `optional` _added_. The parameters's `executionContextId` _added_. The parameters's `objectGroup` _added_.
  7607. ## Roll protocol to r498659
  7608. ###### _2017-08-30 16:15:32_ | Diff: [4c6535a...7d46741](https://github.com/ChromeDevTools/devtools-protocol/compare/4c6535a...7d46741)
  7609. #### `CacheStorage`: modified type
  7610. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `responseTime` in the properties had `name` _updated_. The `responseTime` in the properties had `type` _updated_. The `responseTime` in the properties had `description` _updated_. The `responseHeaders` in the properties had `name` _updated_. The `responseHeaders` in the properties had `description` _updated_. The properties's `responseTime` _added_. The properties's `responseStatus` _added_. The properties's `responseStatusText` _added_. The properties's `responseHeaders` _added_.
  7611. ## Roll protocol to r498251
  7612. ###### _2017-08-29 15:15:42_ | Diff: [a5dfd5d...4c6535a](https://github.com/ChromeDevTools/devtools-protocol/compare/a5dfd5d...4c6535a)
  7613. #### `CacheStorage`: new type
  7614. * [`CacheStorage.Header`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-Header)
  7615. #### `CacheStorage`: modified types
  7616. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `request` in the properties had `name` _updated_. The `request` in the properties had `description` _updated_. The `response` in the properties had `name` _updated_. The `response` in the properties had `type` _updated_. The `response` in the properties had `description` _updated_. The `responseTime` in the properties had `name` _updated_. The `responseTime` in the properties had `type` _updated_. The `responseTime` in the properties had `description` _updated_. The properties's `items` _added_.
  7617. * [`CacheStorage.CachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponse) - The properties's `body` _removed_. The `headers` in the properties had `name` _updated_. The `headers` in the properties had `type` _updated_. The `headers` in the properties had `description` _updated_.
  7618. ## Roll protocol to r497858
  7619. ###### _2017-08-28 13:15:33_ | Diff: [afb185e...a5dfd5d](https://github.com/ChromeDevTools/devtools-protocol/compare/afb185e...a5dfd5d)
  7620. #### `Runtime`: modified type
  7621. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - The `value` in the properties had `description` _updated_.
  7622. ## Roll protocol to r497762
  7623. ###### _2017-08-28 08:15:29_ | Diff: [03d4f5f...afb185e](https://github.com/ChromeDevTools/devtools-protocol/compare/03d4f5f...afb185e)
  7624. #### `Runtime`: modified type
  7625. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - The `value` in the properties had `description` _updated_.
  7626. ## Roll protocol to r497708
  7627. ###### _2017-08-28 01:15:30_ | Diff: [0958f69...03d4f5f](https://github.com/ChromeDevTools/devtools-protocol/compare/0958f69...03d4f5f)
  7628. #### `Memory`: new command
  7629. * [`Memory.prepareForLeakDetection`](https://chromedevtools.github.io/devtools-protocol/tot/Memory/#method-prepareForLeakDetection)
  7630. ## Roll protocol to r497654
  7631. ###### _2017-08-25 22:15:24_ | Diff: [7f086f5...0958f69](https://github.com/ChromeDevTools/devtools-protocol/compare/7f086f5...0958f69)
  7632. #### `Runtime`: modified type
  7633. * [`Runtime.CallArgument`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#type-CallArgument) - The `value` in the properties had `description` _updated_.
  7634. ## Roll protocol to r497463
  7635. ###### _2017-08-25 11:15:26_ | Diff: [57e8992...7f086f5](https://github.com/ChromeDevTools/devtools-protocol/compare/57e8992...7f086f5)
  7636. #### `Security`: modified type
  7637. * [`Security.SecurityState`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityState) - The enum's `info` _removed_. The enum's `warning` _updated_. The enum's `secure` _updated_.
  7638. ## Roll protocol to r497428
  7639. ###### _2017-08-25 09:15:25_ | Diff: [dd57a17...57e8992](https://github.com/ChromeDevTools/devtools-protocol/compare/dd57a17...57e8992)
  7640. #### `Network`: modified command
  7641. * [`Network.setRequestInterceptionEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterceptionEnabled) - The `enabled` in the parameters had `description` _updated_. `description` added. The parameters's `patterns` _added_.
  7642. ## Roll protocol to r496905
  7643. ###### _2017-08-23 18:15:33_ | Diff: [3789a0d...dd57a17](https://github.com/ChromeDevTools/devtools-protocol/compare/3789a0d...dd57a17)
  7644. #### `Runtime`: modified command
  7645. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects) - The `constructorObjectId` in the parameters had `name` _updated_. The `constructorObjectId` in the parameters had `description` _updated_.
  7646. ## Roll protocol to r496688
  7647. ###### _2017-08-23 08:15:29_ | Diff: [326cc31...3789a0d](https://github.com/ChromeDevTools/devtools-protocol/compare/326cc31...3789a0d)
  7648. #### `Profiler`: modified command
  7649. * [`Profiler.startPreciseCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#method-startPreciseCoverage) - The parameters's `detailed` _added_.
  7650. ## Roll protocol to r496607
  7651. ###### _2017-08-23 00:15:24_ | Diff: [a223c0c...326cc31](https://github.com/ChromeDevTools/devtools-protocol/compare/a223c0c...326cc31)
  7652. #### `Page`: new event
  7653. * [`Page.lifecycleEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-lifecycleEvent)
  7654. ## Roll protocol to r496585
  7655. ###### _2017-08-22 21:15:27_ | Diff: [f1b621f...a223c0c](https://github.com/ChromeDevTools/devtools-protocol/compare/f1b621f...a223c0c)
  7656. #### `Page`: new command
  7657. * [`Page.setDownloadBehavior`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDownloadBehavior)
  7658. ## Roll protocol to r496160
  7659. ###### _2017-08-21 18:15:31_ | Diff: [7109da3...f1b621f](https://github.com/ChromeDevTools/devtools-protocol/compare/7109da3...f1b621f)
  7660. #### `DOM`: new command
  7661. * [`DOM.describeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-describeNode)
  7662. ## Roll protocol to r496061
  7663. ###### _2017-08-21 14:15:32_ | Diff: [1da2f21...7109da3](https://github.com/ChromeDevTools/devtools-protocol/compare/1da2f21...7109da3)
  7664. #### `Runtime`: new command
  7665. * [`Runtime.queryObjects`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-queryObjects)
  7666. ## Roll protocol to r495853
  7667. ###### _2017-08-20 15:15:25_ | Diff: [40a1403...1da2f21](https://github.com/ChromeDevTools/devtools-protocol/compare/40a1403...1da2f21)
  7668. #### `DOM`: modified command
  7669. * [`DOM.getOuterHTML`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getOuterHTML) - The `nodeId` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `backendNodeId` _added_. The parameters's `objectId` _added_.
  7670. ## Roll protocol to r495828
  7671. ###### _2017-08-19 15:15:24_ | Diff: [f253796...40a1403](https://github.com/ChromeDevTools/devtools-protocol/compare/f253796...40a1403)
  7672. #### `Audits`: new domain
  7673. * [`Audits.Audits`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#domain-Audits)
  7674. #### `Audits`: new command
  7675. * [`Audits.getEncodedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Audits/#method-getEncodedResponse)
  7676. ## Roll protocol to r495269
  7677. ###### _2017-08-17 12:15:44_ | Diff: [c10facc...f253796](https://github.com/ChromeDevTools/devtools-protocol/compare/c10facc...f253796)
  7678. #### `Network`: new command
  7679. * [`Network.deleteCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookies)
  7680. #### `Network`: removed command
  7681. * [`Network.deleteCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-deleteCookie)
  7682. ## Roll protocol to r495009
  7683. ###### _2017-08-16 17:15:31_ | Diff: [c10e566...c10facc](https://github.com/ChromeDevTools/devtools-protocol/compare/c10e566...c10facc)
  7684. #### `Input`: modified command
  7685. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - The `type` in the parameters had `description` _updated_. The `touchPoints` in the parameters had `description` _updated_. The `0` in the parameters had `touchCancel` _added_.
  7686. #### `Input`: modified type
  7687. * [`Input.TouchPoint`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint) - The properties's `id` _removed_. The `state` in the properties had `enum` _removed_. The `state` in the properties had `name` _updated_. The `state` in the properties had `type` _updated_. The `state` in the properties had `description` _updated_. The `x` in the properties had `name` _updated_. The `x` in the properties had `description` _updated_. The `y` in the properties had `name` _updated_. The `y` in the properties had `description` _updated_. The `radiusX` in the properties had `name` _updated_. The `radiusX` in the properties had `description` _updated_. The `radiusY` in the properties had `name` _updated_. The `radiusY` in the properties had `type` _updated_. The `radiusY` in the properties had `description` _updated_. The `rotationAngle` in the properties had `name` _updated_. The `rotationAngle` in the properties had `description` _updated_. The `force` in the properties had `name` _updated_. The `force` in the properties had `description` _updated_. The properties's `optional` _added_.
  7688. ## Roll protocol to r494622
  7689. ###### _2017-08-15 17:15:31_ | Diff: [2090c47...c10e566](https://github.com/ChromeDevTools/devtools-protocol/compare/2090c47...c10e566)
  7690. #### `Network`: new command
  7691. * [`Network.setCookies`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookies)
  7692. #### `Network`: modified command
  7693. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The `url` in the parameters had `name` _updated_. The `url` in the parameters had `description` _updated_. The `name` in the parameters had `name` _updated_. The `name` in the parameters had `description` _updated_. The `value` in the parameters had `name` _updated_. The `value` in the parameters had `description` _updated_. The `domain` in the parameters had `description` _updated_. The `path` in the parameters had `description` _updated_. The `secure` in the parameters had `description` _updated_. The `httpOnly` in the parameters had `description` _updated_. The `sameSite` in the parameters had `description` _updated_. The `expirationDate` in the parameters had `name` _updated_. The `expirationDate` in the parameters had `description` _updated_. The parameters's `optional` _added_.
  7694. #### `Network`: new type
  7695. * [`Network.CookieParam`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CookieParam)
  7696. #### `Input`: modified command
  7697. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `0` in the parameters had `mouseWheel` _added_. The parameters's `deltaX` _added_. The parameters's `deltaY` _added_.
  7698. ## Roll protocol to r494333
  7699. ###### _2017-08-14 23:15:20_ | Diff: [993dd10...2090c47](https://github.com/ChromeDevTools/devtools-protocol/compare/993dd10...2090c47)
  7700. #### `Runtime`: modified commands
  7701. * [`Runtime.evaluate`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-evaluate) - The `awaitPromise` in the parameters had `description` _updated_.
  7702. * [`Runtime.callFunctionOn`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-callFunctionOn) - The `awaitPromise` in the parameters had `description` _updated_.
  7703. * [`Runtime.runScript`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#method-runScript) - The `awaitPromise` in the parameters had `description` _updated_.
  7704. ## Roll protocol to r494302
  7705. ###### _2017-08-14 19:15:35_ | Diff: [e71b448...993dd10](https://github.com/ChromeDevTools/devtools-protocol/compare/e71b448...993dd10)
  7706. #### `Overlay`: modified type
  7707. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig) - The properties's `cssGridColor` _added_.
  7708. ## Roll protocol to r494191
  7709. ###### _2017-08-14 14:15:39_ | Diff: [f1217c8...e71b448](https://github.com/ChromeDevTools/devtools-protocol/compare/f1217c8...e71b448)
  7710. #### `Performance`: new event
  7711. * [`Performance.metrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#event-metrics)
  7712. #### `Storage`: new commands
  7713. * [`Storage.trackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-trackCacheStorageForOrigin)
  7714. * [`Storage.untrackCacheStorageForOrigin`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-untrackCacheStorageForOrigin)
  7715. #### `Storage`: new events
  7716. * [`Storage.cacheStorageListUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageListUpdated)
  7717. * [`Storage.cacheStorageContentUpdated`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#event-cacheStorageContentUpdated)
  7718. ## Roll protocol to r493957
  7719. ###### _2017-08-11 22:15:29_ | Diff: [c314a8c...f1217c8](https://github.com/ChromeDevTools/devtools-protocol/compare/c314a8c...f1217c8)
  7720. #### `Browser`: new command
  7721. * [`Browser.getVersion`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getVersion)
  7722. ## Roll protocol to r493949
  7723. ###### _2017-08-11 20:15:31_ | Diff: [f1415d2...c314a8c](https://github.com/ChromeDevTools/devtools-protocol/compare/f1415d2...c314a8c)
  7724. #### `Security`: removed command
  7725. * [`Security.showCertificateViewer`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#method-showCertificateViewer)
  7726. #### `Security`: modified type
  7727. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The `hasCertificate` in the properties had `type` _removed_. The `mixedContentType` in the properties had `$ref` _removed_. The `hasCertificate` in the properties had `name` _updated_. The `hasCertificate` in the properties had `description` _updated_. The `mixedContentType` in the properties had `name` _updated_. The `mixedContentType` in the properties had `description` _updated_. The properties's `$ref` _added_. The properties's `type` _added_. The properties's `items` _added_.
  7728. ## Roll protocol to r493629
  7729. ###### _2017-08-10 18:15:28_ | Diff: [97e6602...f1415d2](https://github.com/ChromeDevTools/devtools-protocol/compare/97e6602...f1415d2)
  7730. #### `Performance`: new domain
  7731. * [`Performance.Performance`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#domain-Performance)
  7732. #### `Performance`: new commands
  7733. * [`Performance.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-enable)
  7734. * [`Performance.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-disable)
  7735. * [`Performance.getMetrics`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#method-getMetrics)
  7736. #### `Performance`: new type
  7737. * [`Performance.Metric`](https://chromedevtools.github.io/devtools-protocol/tot/Performance/#type-Metric)
  7738. ## Roll protocol to r493463
  7739. ###### _2017-08-10 11:15:27_ | Diff: [6a97ff4...97e6602](https://github.com/ChromeDevTools/devtools-protocol/compare/6a97ff4...97e6602)
  7740. #### `Emulation`: new command
  7741. * [`Emulation.setEmitTouchEventsForMouse`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setEmitTouchEventsForMouse)
  7742. #### `Emulation`: modified command
  7743. * [`Emulation.setTouchEmulationEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setTouchEmulationEnabled) - The `configuration` in the parameters had `enum` _removed_. The `configuration` in the parameters had `name` _updated_. The `configuration` in the parameters had `type` _updated_. The `configuration` in the parameters had `description` _updated_. `description` updated.
  7744. ## Roll protocol to r492915
  7745. ###### _2017-08-09 02:15:29_ | Diff: [34e6ca8...6a97ff4](https://github.com/ChromeDevTools/devtools-protocol/compare/34e6ca8...6a97ff4)
  7746. #### `CSS`: modified command
  7747. * [`CSS.getBackgroundColors`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getBackgroundColors) - The return value's `computedFontSize` _added_. The return value's `computedFontWeight` _added_. The return value's `computedBodyFontSize` _added_.
  7748. ## Roll protocol to r491719
  7749. ###### _2017-08-03 06:15:23_ | Diff: [ff44833...34e6ca8](https://github.com/ChromeDevTools/devtools-protocol/compare/ff44833...34e6ca8)
  7750. #### `DOMSnapshot`: modified type
  7751. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `frameId` in the properties had `description` _updated_.
  7752. ## Roll protocol to r491274
  7753. ###### _2017-08-01 22:15:27_ | Diff: [80d4068...ff44833](https://github.com/ChromeDevTools/devtools-protocol/compare/80d4068...ff44833)
  7754. #### `Page`: modified events
  7755. * [`Page.javascriptDialogOpening`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogOpening) - The `type` in the parameters had `$ref` _removed_. The `message` in the parameters had `name` _updated_. The `message` in the parameters had `description` _updated_. The `type` in the parameters had `name` _updated_. The `type` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `defaultPrompt` _added_.
  7756. * [`Page.javascriptDialogClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-javascriptDialogClosed) - The parameters's `userInput` _added_.
  7757. ## Roll protocol to r491147
  7758. ###### _2017-08-01 16:15:38_ | Diff: [598f59e...80d4068](https://github.com/ChromeDevTools/devtools-protocol/compare/598f59e...80d4068)
  7759. #### `Accessibility`: modified types
  7760. * [`Accessibility.AXGlobalStates`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXGlobalStates) - The enum's `disabled` _updated_. The enum's `hidden` _updated_. The enum's `hiddenRoot` _updated_. The enum's `invalid` _updated_. The enum's `keyshortcuts` _updated_. The enum's `roledescription` _updated_. The enum's `roledescription` _added_.
  7761. * [`Accessibility.AXLiveRegionAttributes`](https://chromedevtools.github.io/devtools-protocol/tot/Accessibility/#type-AXLiveRegionAttributes) - The enum's `root` _removed_. The enum's `busy` _updated_.
  7762. ## Roll protocol to r490913
  7763. ###### _2017-08-01 01:15:27_ | Diff: [6dbc46a...598f59e](https://github.com/ChromeDevTools/devtools-protocol/compare/6dbc46a...598f59e)
  7764. #### `Page`: removed commands
  7765. * [`Page.setControlNavigations`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setControlNavigations)
  7766. * [`Page.processNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-processNavigation)
  7767. #### `Page`: removed event
  7768. * [`Page.navigationRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-navigationRequested)
  7769. #### `Network`: modified command
  7770. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - The `errorReason` in the parameters had `description` _updated_.
  7771. #### `Network`: modified event
  7772. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `redirectHeaders` in the parameters had `$ref` _removed_. The `redirectHeaders` in the parameters had `optional` _removed_. The `redirectStatusCode` in the parameters had `type` _removed_. The `authChallenge` in the parameters had `$ref` _removed_. The `redirectHeaders` in the parameters had `name` _updated_. The `redirectHeaders` in the parameters had `description` _updated_. The `redirectStatusCode` in the parameters had `name` _updated_. The `redirectStatusCode` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `type` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The `authChallenge` in the parameters had `name` _updated_. The `authChallenge` in the parameters had `description` _updated_. The parameters's `type` _added_ (2 times). The parameters's `$ref` _added_. The parameters's `authChallenge` _added_.
  7773. ## Roll protocol to r490738
  7774. ###### _2017-07-31 03:15:36_ | Diff: [815efee...6dbc46a](https://github.com/ChromeDevTools/devtools-protocol/compare/815efee...6dbc46a)
  7775. #### `DOMSnapshot`: modified type
  7776. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `frameId` in the properties had `$ref` _removed_. The `contentDocumentIndex` in the properties had `type` _removed_. The `pseudoType` in the properties had `$ref` _removed_. The `isClickable` in the properties had `type` _removed_. The `publicId` in the properties had `name` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `name` _updated_. The `systemId` in the properties had `description` _updated_. The `frameId` in the properties had `name` _updated_. The `frameId` in the properties had `description` _updated_. The `contentDocumentIndex` in the properties had `name` _updated_. The `contentDocumentIndex` in the properties had `description` _updated_. The `importedDocumentIndex` in the properties had `name` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `name` _updated_. The `templateContentIndex` in the properties had `description` _updated_. The `pseudoType` in the properties had `name` _updated_. The `pseudoType` in the properties had `description` _updated_. The `isClickable` in the properties had `name` _updated_. The `isClickable` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_ (2 times). The properties's `isClickable` _added_.
  7777. ## Roll protocol to r490636
  7778. ###### _2017-07-28 23:15:20_ | Diff: [d1125b4...815efee](https://github.com/ChromeDevTools/devtools-protocol/compare/d1125b4...815efee)
  7779. #### `Page`: new command
  7780. * [`Page.setAdBlockingEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setAdBlockingEnabled)
  7781. ## Roll protocol to r490621
  7782. ###### _2017-07-28 21:15:20_ | Diff: [44c6002...d1125b4](https://github.com/ChromeDevTools/devtools-protocol/compare/44c6002...d1125b4)
  7783. #### `Overlay`: new event
  7784. * [`Overlay.screenshotRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-screenshotRequested)
  7785. ## Roll protocol to r489908
  7786. ###### _2017-07-27 06:15:23_ | Diff: [057127c...44c6002](https://github.com/ChromeDevTools/devtools-protocol/compare/057127c...44c6002)
  7787. #### `LayerTree`: new type
  7788. * [`LayerTree.StickyPositionConstraint`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-StickyPositionConstraint)
  7789. #### `LayerTree`: modified type
  7790. * [`LayerTree.Layer`](https://chromedevtools.github.io/devtools-protocol/tot/LayerTree/#type-Layer) - The properties's `stickyPositionConstraint` _added_.
  7791. ## Roll protocol to r489613
  7792. ###### _2017-07-26 05:15:21_ | Diff: [fe85a1b...057127c](https://github.com/ChromeDevTools/devtools-protocol/compare/fe85a1b...057127c)
  7793. #### `Page`: modified event
  7794. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The parameters's `url` _added_.
  7795. ## Roll protocol to r489413
  7796. ###### _2017-07-25 13:15:27_ | Diff: [9433945...fe85a1b](https://github.com/ChromeDevTools/devtools-protocol/compare/9433945...fe85a1b)
  7797. #### `Page`: new command
  7798. * [`Page.bringToFront`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-bringToFront)
  7799. ## Roll protocol to r489024
  7800. ###### _2017-07-24 11:15:50_ | Diff: [07508bb...9433945](https://github.com/ChromeDevTools/devtools-protocol/compare/07508bb...9433945)
  7801. #### `Page`: modified event
  7802. * [`Page.frameScheduledNavigation`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-frameScheduledNavigation) - The parameters's `reason` _added_.
  7803. #### `IO`: modified command
  7804. * [`IO.read`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-read) - The `data` in the return value had `name` _updated_. The `data` in the return value had `type` _updated_. The `data` in the return value had `description` _updated_. The `eof` in the return value had `name` _updated_. The `eof` in the return value had `type` _updated_. The `eof` in the return value had `description` _updated_. The return value's `optional` _added_. The return value's `eof` _added_.
  7805. #### `IO`: modified type
  7806. * [`IO.StreamHandle`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#type-StreamHandle) - `description` added.
  7807. ## Roll protocol to r488771
  7808. ###### _2017-07-21 15:15:36_ | Diff: [a156198...07508bb](https://github.com/ChromeDevTools/devtools-protocol/compare/a156198...07508bb)
  7809. #### `IO`: new command
  7810. * [`IO.resolveBlob`](https://chromedevtools.github.io/devtools-protocol/tot/IO/#method-resolveBlob)
  7811. ## Roll protocol to r488639
  7812. ###### _2017-07-21 06:15:18_ | Diff: [3f4dbfa...a156198](https://github.com/ChromeDevTools/devtools-protocol/compare/3f4dbfa...a156198)
  7813. #### `Page`: modified type
  7814. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The `unreachableUrl` in the properties had `optional` _updated_. The `unreachableUrl` in the properties had `experimental` _updated_.
  7815. ## Roll protocol to r488555
  7816. ###### _2017-07-20 19:15:23_ | Diff: [6a7416a...3f4dbfa](https://github.com/ChromeDevTools/devtools-protocol/compare/6a7416a...3f4dbfa)
  7817. #### `CacheStorage`: new command
  7818. * [`CacheStorage.requestCachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#method-requestCachedResponse)
  7819. #### `CacheStorage`: new type
  7820. * [`CacheStorage.CachedResponse`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-CachedResponse)
  7821. ## Roll protocol to r488475
  7822. ###### _2017-07-20 16:15:20_ | Diff: [24063d5...6a7416a](https://github.com/ChromeDevTools/devtools-protocol/compare/24063d5...6a7416a)
  7823. #### `Page`: modified command
  7824. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The parameters's `positionY` _removed_. The parameters's `screenOrientation` _removed_. The `positionX` in the parameters had `type` _removed_. The `fitWindow` in the parameters had `name` _updated_. The `fitWindow` in the parameters had `type` _updated_. The `fitWindow` in the parameters had `description` _updated_. The `scale` in the parameters had `name` _updated_. The `scale` in the parameters had `type` _updated_. The `scale` in the parameters had `description` _updated_. The `offsetX` in the parameters had `name` _updated_. The `offsetX` in the parameters had `type` _updated_. The `offsetX` in the parameters had `description` _updated_. The `offsetY` in the parameters had `name` _updated_. The `offsetY` in the parameters had `type` _updated_. The `offsetY` in the parameters had `description` _updated_. The `screenWidth` in the parameters had `name` _updated_. The `screenWidth` in the parameters had `description` _updated_. The `screenHeight` in the parameters had `name` _updated_. The `screenHeight` in the parameters had `type` _updated_. The `screenHeight` in the parameters had `description` _updated_. The `positionX` in the parameters had `name` _updated_. The `positionX` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7825. #### `Emulation`: modified commands
  7826. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `positionY` _removed_. The parameters's `screenOrientation` _removed_. The `offsetX` in the parameters had `deprecated` _removed_. The `offsetY` in the parameters had `deprecated` _removed_. The `positionX` in the parameters had `type` _removed_. The `positionX` in the parameters had `experimental` _removed_. The `fitWindow` in the parameters had `name` _updated_. The `fitWindow` in the parameters had `type` _updated_. The `fitWindow` in the parameters had `description` _updated_. The `scale` in the parameters had `name` _updated_. The `scale` in the parameters had `type` _updated_. The `scale` in the parameters had `description` _updated_. The `offsetX` in the parameters had `name` _updated_. The `offsetX` in the parameters had `type` _updated_. The `offsetX` in the parameters had `description` _updated_. The `offsetY` in the parameters had `name` _updated_. The `offsetY` in the parameters had `type` _updated_. The `offsetY` in the parameters had `description` _updated_. The `screenWidth` in the parameters had `name` _updated_. The `screenWidth` in the parameters had `description` _updated_. The `screenHeight` in the parameters had `name` _updated_. The `screenHeight` in the parameters had `type` _updated_. The `screenHeight` in the parameters had `description` _updated_. The `positionX` in the parameters had `name` _updated_. The `positionX` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7827. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize) - `description` updated.
  7828. ## Roll protocol to r488407
  7829. ###### _2017-07-20 14:15:34_ | Diff: [0247171...24063d5](https://github.com/ChromeDevTools/devtools-protocol/compare/0247171...24063d5)
  7830. #### `Target`: modified commands
  7831. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The `targetId` in the parameters had `$ref` _removed_. The `message` in the parameters had `type` _removed_. `description` updated. The `targetId` in the parameters had `name` _updated_. The `message` in the parameters had `name` _updated_. The parameters's `type` _added_. The parameters's `$ref` _added_. The parameters's `optional` _added_. The parameters's `description` _added_. The parameters's `targetId` _added_.
  7832. * [`Target.attachToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-attachToTarget) - The `success` in the return value had `type` _removed_. The `success` in the return value had `name` _updated_. The `success` in the return value had `description` _updated_. The return value's `$ref` _added_.
  7833. * [`Target.detachFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-detachFromTarget) - `description` updated. The `targetId` in the parameters had `name` _updated_. The `targetId` in the parameters had `$ref` _updated_. The parameters's `optional` _added_. The parameters's `description` _added_. The parameters's `targetId` _added_.
  7834. #### `Target`: modified events
  7835. * [`Target.attachedToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-attachedToTarget) - The `waitingForDebugger` in the parameters had `type` _removed_. The `targetInfo` in the parameters had `name` _updated_. The `targetInfo` in the parameters had `$ref` _updated_. The `waitingForDebugger` in the parameters had `name` _updated_. The parameters's `description` _added_. The parameters's `$ref` _added_. The parameters's `waitingForDebugger` _added_.
  7836. * [`Target.detachedFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-detachedFromTarget) - `description` updated. The `targetId` in the parameters had `name` _updated_. The `targetId` in the parameters had `$ref` _updated_. The parameters's `description` _added_. The parameters's `targetId` _added_.
  7837. * [`Target.receivedMessageFromTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-receivedMessageFromTarget) - `description` updated. The `targetId` in the parameters had `name` _updated_. The `targetId` in the parameters had `$ref` _updated_. The parameters's `description` _added_. The parameters's `targetId` _added_.
  7838. #### `Target`: new type
  7839. * [`Target.SessionID`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-SessionID)
  7840. ## Roll protocol to r487821
  7841. ###### _2017-07-19 04:15:25_ | Diff: [1d10caf...0247171](https://github.com/ChromeDevTools/devtools-protocol/compare/1d10caf...0247171)
  7842. #### `Page`: modified command
  7843. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - The parameters's `ignoreInvalidPageRanges` _added_.
  7844. #### `Page`: modified type
  7845. * [`Page.Frame`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Frame) - The properties's `unreachableUrl` _added_.
  7846. ## Roll protocol to r486590
  7847. ###### _2017-07-13 18:15:23_ | Diff: [9612949...1d10caf](https://github.com/ChromeDevTools/devtools-protocol/compare/9612949...1d10caf)
  7848. #### `DOMSnapshot`: modified type
  7849. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `backendNodeId` in the properties had `$ref` _removed_. The `childNodeIndexes` in the properties had `items` _removed_. The `attributes` in the properties had `items` _removed_. The `pseudoElementIndexes` in the properties had `items` _removed_. The `layoutNodeIndex` in the properties had `type` _removed_. The `layoutNodeIndex` in the properties had `optional` _removed_. The `frameId` in the properties had `$ref` _removed_. The `backendNodeId` in the properties had `name` _updated_. The `backendNodeId` in the properties had `description` _updated_. The `childNodeIndexes` in the properties had `name` _updated_. The `childNodeIndexes` in the properties had `type` _updated_. The `childNodeIndexes` in the properties had `description` _updated_. The `attributes` in the properties had `name` _updated_. The `attributes` in the properties had `type` _updated_. The `attributes` in the properties had `description` _updated_. The `pseudoElementIndexes` in the properties had `name` _updated_. The `pseudoElementIndexes` in the properties had `type` _updated_. The `pseudoElementIndexes` in the properties had `description` _updated_. The `layoutNodeIndex` in the properties had `name` _updated_. The `layoutNodeIndex` in the properties had `description` _updated_. The `documentURL` in the properties had `name` _updated_. The `documentURL` in the properties had `type` _updated_. The `documentURL` in the properties had `description` _updated_. The `baseURL` in the properties had `name` _updated_. The `baseURL` in the properties had `type` _updated_. The `baseURL` in the properties had `description` _updated_. The `contentLanguage` in the properties had `name` _updated_. The `contentLanguage` in the properties had `type` _updated_. The `contentLanguage` in the properties had `description` _updated_. The `publicId` in the properties had `name` _updated_. The `publicId` in the properties had `type` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `name` _updated_. The `systemId` in the properties had `description` _updated_. The `frameId` in the properties had `name` _updated_. The `frameId` in the properties had `description` _updated_. The `contentDocumentIndex` in the properties had `name` _updated_. The `contentDocumentIndex` in the properties had `type` _updated_. The `contentDocumentIndex` in the properties had `description` _updated_. The `importedDocumentIndex` in the properties had `name` _updated_. The `importedDocumentIndex` in the properties had `type` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `name` _updated_. The `templateContentIndex` in the properties had `type` _updated_. The `templateContentIndex` in the properties had `description` _updated_. The `pseudoType` in the properties had `name` _updated_. The `pseudoType` in the properties had `$ref` _updated_. The `pseudoType` in the properties had `description` _updated_. The `isClickable` in the properties had `name` _updated_. The `isClickable` in the properties had `type` _updated_. The `isClickable` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `optional` _added_. The properties's `$ref` _added_. The properties's `items` _added_ (3 times). The properties's `importedDocumentIndex` _added_. The properties's `templateContentIndex` _added_. The properties's `pseudoType` _added_. The properties's `isClickable` _added_.
  7850. ## Roll protocol to r486216
  7851. ###### _2017-07-12 18:55:05_ | Diff: [361ec60...1329e26](https://github.com/ChromeDevTools/devtools-protocol/compare/361ec60...1329e26)
  7852. #### `DOM`: modified commands
  7853. * [`DOM.focus`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-focus) - The `nodeId` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `backendNodeId` _added_. The parameters's `objectId` _added_.
  7854. * [`DOM.setFileInputFiles`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setFileInputFiles) - The `nodeId` in the parameters had `$ref` _removed_. The `files` in the parameters had `type` _removed_. The `files` in the parameters had `items` _removed_. The `nodeId` in the parameters had `name` _updated_. The `nodeId` in the parameters had `description` _updated_. The `files` in the parameters had `name` _updated_. The `files` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `items` _added_. The parameters's `$ref` _added_. The parameters's `optional` _added_. The parameters's `backendNodeId` _added_. The parameters's `objectId` _added_.
  7855. * [`DOM.getBoxModel`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getBoxModel) - The `nodeId` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `backendNodeId` _added_. The parameters's `objectId` _added_.
  7856. ## Roll protocol to r486175
  7857. ###### _2017-07-12 17:15:26_ | Diff: [ea90b21...361ec60](https://github.com/ChromeDevTools/devtools-protocol/compare/ea90b21...361ec60)
  7858. #### `Input`: modified commands
  7859. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `x` in the parameters had `type` _updated_. The `x` in the parameters had `description` _updated_. The `y` in the parameters had `type` _updated_. The `y` in the parameters had `description` _updated_.
  7860. * [`Input.synthesizePinchGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizePinchGesture) - The `x` in the parameters had `type` _updated_. The `y` in the parameters had `type` _updated_.
  7861. * [`Input.synthesizeScrollGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeScrollGesture) - The `x` in the parameters had `type` _updated_. The `y` in the parameters had `type` _updated_. The `xDistance` in the parameters had `type` _updated_. The `yDistance` in the parameters had `type` _updated_. The `xOverscroll` in the parameters had `type` _updated_. The `yOverscroll` in the parameters had `type` _updated_.
  7862. * [`Input.synthesizeTapGesture`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-synthesizeTapGesture) - The `x` in the parameters had `type` _updated_. The `y` in the parameters had `type` _updated_.
  7863. ## Roll protocol to r485940 485678
  7864. ###### _2017-07-12 07:15:22_ | Diff: [3553411...9edfb70](https://github.com/ChromeDevTools/devtools-protocol/compare/3553411...9edfb70)
  7865. #### `Page`: modified command
  7866. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot) - The `fromSurface` in the parameters had `type` _removed_. The `fromSurface` in the parameters had `name` _updated_. The `fromSurface` in the parameters had `description` _updated_. The parameters's `$ref` _added_. The parameters's `fromSurface` _added_.
  7867. #### `Page`: new type
  7868. * [`Page.Viewport`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-Viewport)
  7869. ## Roll protocol to r485689 485314
  7870. ###### _2017-07-11 12:15:29_ | Diff: [837a781...3553411](https://github.com/ChromeDevTools/devtools-protocol/compare/837a781...3553411)
  7871. #### `Page`: modified command
  7872. * [`Page.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setDeviceMetricsOverride) - The parameters's `optional` _added_.
  7873. #### `Emulation`: removed commands
  7874. * [`Emulation.forceViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-forceViewport)
  7875. * [`Emulation.resetViewport`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-resetViewport)
  7876. #### `Emulation`: modified commands
  7877. * [`Emulation.setDeviceMetricsOverride`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setDeviceMetricsOverride) - The parameters's `optional` _added_.
  7878. * [`Emulation.setVisibleSize`](https://chromedevtools.github.io/devtools-protocol/tot/Emulation/#method-setVisibleSize) - `description` updated. `deprecated` added.
  7879. ## Roll protocol to r485250
  7880. ###### _2017-07-10 06:15:19_ | Diff: [25c87f6...837a781](https://github.com/ChromeDevTools/devtools-protocol/compare/25c87f6...837a781)
  7881. #### `DOM`: modified command
  7882. * [`DOM.resolveNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-resolveNode) - The `objectGroup` in the parameters had `type` _removed_. The `objectGroup` in the parameters had `name` _updated_. The `objectGroup` in the parameters had `description` _updated_. `description` updated. The parameters's `optional` _added_. The parameters's `$ref` _added_. The parameters's `objectGroup` _added_.
  7883. ## Roll protocol to r485002
  7884. ###### _2017-07-07 12:15:19_ | Diff: [0589169...25c87f6](https://github.com/ChromeDevTools/devtools-protocol/compare/0589169...25c87f6)
  7885. #### `Network`: new command
  7886. * [`Network.setRequestInterceptionEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setRequestInterceptionEnabled)
  7887. #### `Network`: removed command
  7888. * [`Network.enableRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enableRequestInterception)
  7889. ## Roll protocol to r484724
  7890. ###### _2017-07-06 13:15:20_ | Diff: [40987ca...0589169](https://github.com/ChromeDevTools/devtools-protocol/compare/40987ca...0589169)
  7891. #### `Page`: new commands
  7892. * [`Page.addScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnNewDocument)
  7893. * [`Page.removeScriptToEvaluateOnNewDocument`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnNewDocument)
  7894. #### `Page`: modified commands
  7895. * [`Page.addScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-addScriptToEvaluateOnLoad) - `deprecated` added. `description` added.
  7896. * [`Page.removeScriptToEvaluateOnLoad`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-removeScriptToEvaluateOnLoad) - `deprecated` added. `description` added.
  7897. ## Roll protocol to r484463
  7898. ###### _2017-07-05 21:15:19_ | Diff: [3cca818...40987ca](https://github.com/ChromeDevTools/devtools-protocol/compare/3cca818...40987ca)
  7899. #### `Security`: new type
  7900. * [`Security.MixedContentType`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-MixedContentType)
  7901. #### `Security`: modified type
  7902. * [`Security.SecurityStateExplanation`](https://chromedevtools.github.io/devtools-protocol/tot/Security/#type-SecurityStateExplanation) - The properties's `mixedContentType` _added_.
  7903. #### `Network`: modified type
  7904. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `mixedContentType` in the properties had `type` _removed_. The `mixedContentType` in the properties had `enum` _removed_. The `mixedContentType` in the properties had `description` _updated_. The properties's `$ref` _added_.
  7905. ## Roll protocol to r484434
  7906. ###### _2017-07-05 18:15:34_ | Diff: [81ccf3f...3cca818](https://github.com/ChromeDevTools/devtools-protocol/compare/81ccf3f...3cca818)
  7907. #### `Page`: modified events
  7908. * [`Page.domContentEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-domContentEventFired) - The `timestamp` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  7909. * [`Page.loadEventFired`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-loadEventFired) - The `timestamp` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  7910. #### `Page`: modified types
  7911. * [`Page.FrameResource`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-FrameResource) - The `lastModified` in the properties had `$ref` _updated_.
  7912. * [`Page.ScreencastFrameMetadata`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-ScreencastFrameMetadata) - The `timestamp` in the properties had `type` _removed_. The properties's `$ref` _added_.
  7913. #### `Network`: modified command
  7914. * [`Network.setCookie`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setCookie) - The `expirationDate` in the parameters had `$ref` _updated_.
  7915. #### `Network`: modified events
  7916. * [`Network.resourceChangedPriority`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-resourceChangedPriority) - The `timestamp` in the parameters had `$ref` _updated_.
  7917. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `timestamp` in the parameters had `$ref` _updated_. The `wallTime` in the parameters had `$ref` _updated_. The `wallTime` in the parameters had `description` _updated_.
  7918. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `timestamp` in the parameters had `$ref` _updated_.
  7919. * [`Network.dataReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-dataReceived) - The `timestamp` in the parameters had `$ref` _updated_.
  7920. * [`Network.loadingFinished`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFinished) - The `timestamp` in the parameters had `$ref` _updated_.
  7921. * [`Network.loadingFailed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-loadingFailed) - The `timestamp` in the parameters had `$ref` _updated_.
  7922. * [`Network.webSocketWillSendHandshakeRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketWillSendHandshakeRequest) - The `timestamp` in the parameters had `$ref` _updated_. The `wallTime` in the parameters had `$ref` _updated_.
  7923. * [`Network.webSocketHandshakeResponseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketHandshakeResponseReceived) - The `timestamp` in the parameters had `$ref` _updated_.
  7924. * [`Network.webSocketClosed`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketClosed) - The `timestamp` in the parameters had `$ref` _updated_.
  7925. * [`Network.webSocketFrameReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameReceived) - The `timestamp` in the parameters had `$ref` _updated_.
  7926. * [`Network.webSocketFrameError`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameError) - The `timestamp` in the parameters had `$ref` _updated_.
  7927. * [`Network.webSocketFrameSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-webSocketFrameSent) - The `timestamp` in the parameters had `$ref` _updated_.
  7928. * [`Network.eventSourceMessageReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-eventSourceMessageReceived) - The `timestamp` in the parameters had `$ref` _updated_.
  7929. #### `Network`: new types
  7930. * [`Network.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-TimeSinceEpoch)
  7931. * [`Network.MonotonicTime`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-MonotonicTime)
  7932. #### `Network`: removed type
  7933. * [`Network.Timestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Timestamp)
  7934. #### `Network`: modified types
  7935. * [`Network.SignedCertificateTimestamp`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SignedCertificateTimestamp) - The `timestamp` in the properties had `$ref` _updated_.
  7936. * [`Network.SecurityDetails`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityDetails) - The `validFrom` in the properties had `$ref` _updated_. The `validTo` in the properties had `$ref` _updated_.
  7937. #### `Input`: modified commands
  7938. * [`Input.dispatchKeyEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchKeyEvent) - The `timestamp` in the parameters had `type` _removed_. The `timestamp` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7939. * [`Input.dispatchMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchMouseEvent) - The `timestamp` in the parameters had `type` _removed_. The `timestamp` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7940. * [`Input.dispatchTouchEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-dispatchTouchEvent) - The `timestamp` in the parameters had `type` _removed_. The `timestamp` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7941. * [`Input.emulateTouchFromMouseEvent`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-emulateTouchFromMouseEvent) - The `timestamp` in the parameters had `type` _removed_. The `timestamp` in the parameters had `description` _updated_. The parameters's `$ref` _added_.
  7942. #### `Input`: new type
  7943. * [`Input.TimeSinceEpoch`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TimeSinceEpoch)
  7944. ## Roll protocol to r484012
  7945. ###### _2017-07-03 09:15:18_ | Diff: [e2e55ea...81ccf3f](https://github.com/ChromeDevTools/devtools-protocol/compare/e2e55ea...81ccf3f)
  7946. #### `Network`: modified events
  7947. * [`Network.requestWillBeSent`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestWillBeSent) - The `frameId` in the parameters had `experimental` _removed_. The `loaderId` in the parameters had `$ref` _removed_. The `documentURL` in the parameters had `type` _removed_. The `wallTime` in the parameters had `experimental` _removed_. The `frameId` in the parameters had `name` _updated_. The `frameId` in the parameters had `$ref` _updated_. The `frameId` in the parameters had `description` _updated_. The `loaderId` in the parameters had `name` _updated_. The `loaderId` in the parameters had `description` _updated_. The `documentURL` in the parameters had `name` _updated_. The `documentURL` in the parameters had `description` _updated_. The `request` in the parameters had `name` _updated_. The `request` in the parameters had `$ref` _updated_. The `request` in the parameters had `description` _updated_. The `timestamp` in the parameters had `name` _updated_. The `timestamp` in the parameters had `description` _updated_. The `wallTime` in the parameters had `name` _updated_. The `wallTime` in the parameters had `$ref` _updated_. The `wallTime` in the parameters had `description` _updated_. The `initiator` in the parameters had `name` _updated_. The `initiator` in the parameters had `$ref` _updated_. The `initiator` in the parameters had `description` _updated_. The `redirectResponse` in the parameters had `name` _updated_. The `redirectResponse` in the parameters had `$ref` _updated_. The `redirectResponse` in the parameters had `description` _updated_. The `type` in the parameters had `name` _updated_. The `type` in the parameters had `$ref` _updated_. The `type` in the parameters had `description` _updated_. The parameters's `type` _added_. The parameters's `$ref` _added_. The parameters's `experimental` _added_ (2 times). The parameters's `optional` _added_.
  7948. * [`Network.responseReceived`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived) - The `frameId` in the parameters had `experimental` _removed_. The `frameId` in the parameters had `name` _updated_. The `frameId` in the parameters had `$ref` _updated_. The `frameId` in the parameters had `description` _updated_. The `loaderId` in the parameters had `name` _updated_. The `loaderId` in the parameters had `$ref` _updated_. The `loaderId` in the parameters had `description` _updated_. The `timestamp` in the parameters had `name` _updated_. The `timestamp` in the parameters had `$ref` _updated_. The `timestamp` in the parameters had `description` _updated_. The `type` in the parameters had `name` _updated_. The `type` in the parameters had `$ref` _updated_. The `type` in the parameters had `description` _updated_. The `response` in the parameters had `name` _updated_. The `response` in the parameters had `$ref` _updated_. The `response` in the parameters had `description` _updated_. The parameters's `optional` _added_. The parameters's `experimental` _added_.
  7949. ## Roll protocol to r483799
  7950. ###### _2017-06-30 13:15:20_ | Diff: [8fad5bb...e2e55ea](https://github.com/ChromeDevTools/devtools-protocol/compare/8fad5bb...e2e55ea)
  7951. #### `DOMSnapshot`: modified type
  7952. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The `frameId` in the properties had `$ref` _removed_. The `contentDocumentIndex` in the properties had `type` _removed_. The `pseudoType` in the properties had `$ref` _removed_. The `isClickable` in the properties had `type` _removed_. The `publicId` in the properties had `name` _updated_. The `publicId` in the properties had `description` _updated_. The `systemId` in the properties had `name` _updated_. The `systemId` in the properties had `description` _updated_. The `frameId` in the properties had `name` _updated_. The `frameId` in the properties had `description` _updated_. The `contentDocumentIndex` in the properties had `name` _updated_. The `contentDocumentIndex` in the properties had `description` _updated_. The `importedDocumentIndex` in the properties had `name` _updated_. The `importedDocumentIndex` in the properties had `description` _updated_. The `templateContentIndex` in the properties had `name` _updated_. The `templateContentIndex` in the properties had `description` _updated_. The `pseudoType` in the properties had `name` _updated_. The `pseudoType` in the properties had `description` _updated_. The `isClickable` in the properties had `name` _updated_. The `isClickable` in the properties had `description` _updated_. The properties's `type` _added_ (2 times). The properties's `$ref` _added_ (2 times). The properties's `isClickable` _added_.
  7953. ## Roll protocol to r483706
  7954. ###### _2017-06-30 08:15:16_ | Diff: [d5a2d43...8fad5bb](https://github.com/ChromeDevTools/devtools-protocol/compare/d5a2d43...8fad5bb)
  7955. #### `DOMSnapshot`: modified type
  7956. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode) - The properties's `isClickable` _added_.
  7957. ## Roll protocol to r483512
  7958. ###### _2017-06-29 15:15:18_ | Diff: [cbd3167...d5a2d43](https://github.com/ChromeDevTools/devtools-protocol/compare/cbd3167...d5a2d43)
  7959. #### `Target`: modified command
  7960. * [`Target.setDiscoverTargets`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-setDiscoverTargets) - `description` updated.
  7961. #### `Target`: new event
  7962. * [`Target.targetInfoChanged`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#event-targetInfoChanged)
  7963. #### `Target`: modified type
  7964. * [`Target.TargetInfo`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetInfo) - The properties's `attached` _added_.
  7965. ## Roll protocol to r482373
  7966. ###### _2017-06-26 13:15:23_ | Diff: [7462a7d...31bb33b](https://github.com/ChromeDevTools/devtools-protocol/compare/7462a7d...31bb33b)
  7967. #### `Network`: modified type
  7968. * [`Network.Initiator`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Initiator) - The `url` in the properties had `description` _updated_. The `lineNumber` in the properties had `description` _updated_.
  7969. ## Roll protocol to r481914
  7970. ###### _2017-06-23 09:15:23_ | Diff: [6d93eed...7462a7d](https://github.com/ChromeDevTools/devtools-protocol/compare/6d93eed...7462a7d)
  7971. #### `Page`: modified command
  7972. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld)
  7973. ## Roll protocol to r481860
  7974. ###### _2017-06-23 05:15:20_ | Diff: [6463d0e...6d93eed](https://github.com/ChromeDevTools/devtools-protocol/compare/6463d0e...6d93eed)
  7975. #### `Profiler`: modified type
  7976. * [`Profiler.FunctionCoverage`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#type-FunctionCoverage) - The properties's `isBlockCoverage` _added_.
  7977. ## Roll protocol to r481735
  7978. ###### _2017-06-22 17:15:19_ | Diff: [ccabc09...6463d0e](https://github.com/ChromeDevTools/devtools-protocol/compare/ccabc09...6463d0e)
  7979. #### `Storage`: modified command
  7980. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota) - The return value's `usageBreakdown` _added_.
  7981. #### `Storage`: new type
  7982. * [`Storage.UsageForType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-UsageForType)
  7983. #### `Storage`: modified type
  7984. * [`Storage.StorageType`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-StorageType) - The enum's `other` _added_.
  7985. ## Roll protocol to r480235
  7986. ###### _2017-06-16 17:15:36_ | Diff: [cdb002c...ccabc09](https://github.com/ChromeDevTools/devtools-protocol/compare/cdb002c...ccabc09)
  7987. #### `Storage`: new command
  7988. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  7989. ## Roll protocol to r480007
  7990. ###### _2017-06-16 03:15:26_ | Diff: [34511ab...cdb002c](https://github.com/ChromeDevTools/devtools-protocol/compare/34511ab...cdb002c)
  7991. #### `Network`: modified command
  7992. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest) - The `errorReason` in the parameters had `description` _updated_. The `rawResponse` in the parameters had `description` _updated_. The `url` in the parameters had `description` _updated_. The `method` in the parameters had `description` _updated_. The `postData` in the parameters had `description` _updated_. The `headers` in the parameters had `description` _updated_. The parameters's `authChallengeResponse` _added_.
  7993. #### `Network`: modified event
  7994. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `interceptionId` in the parameters had `description` _updated_. The parameters's `authChallenge` _added_.
  7995. #### `Network`: new types
  7996. * [`Network.AuthChallenge`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallenge)
  7997. * [`Network.AuthChallengeResponse`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-AuthChallengeResponse)
  7998. ## Roll protocol to r479728
  7999. ###### _2017-06-15 09:15:20_ | Diff: [0fa531a...34511ab](https://github.com/ChromeDevTools/devtools-protocol/compare/0fa531a...34511ab)
  8000. #### `CSS`: removed command
  8001. * [`CSS.getLayoutTreeAndStyles`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#method-getLayoutTreeAndStyles)
  8002. #### `CSS`: removed types
  8003. * [`CSS.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-LayoutTreeNode)
  8004. * [`CSS.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/CSS/#type-ComputedStyle)
  8005. ## Roll protocol to r479333
  8006. ###### _2017-06-14 02:15:15_ | Diff: [d21a0f2...0fa531a](https://github.com/ChromeDevTools/devtools-protocol/compare/d21a0f2...0fa531a)
  8007. #### `Network`: modified event
  8008. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `InterceptionId` in the parameters had `name` _updated_.
  8009. ## Roll protocol to r479198
  8010. ###### _2017-06-13 16:15:25_ | Diff: [0dc9f1b...d21a0f2](https://github.com/ChromeDevTools/devtools-protocol/compare/0dc9f1b...d21a0f2)
  8011. #### `Network`: modified type
  8012. * [`Network.Request`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Request) - The `referrerPolicy` in the properties had `no-referrer-when-downgrade-origin-when-cross-origin` _updated_. The `6` in the properties had `strict-origin` _added_. The `6` in the properties had `strict-origin-when-cross-origin` _added_.
  8013. ## Roll protocol to r478853
  8014. ###### _2017-06-12 18:15:17_ | Diff: [17022a7...0dc9f1b](https://github.com/ChromeDevTools/devtools-protocol/compare/17022a7...0dc9f1b)
  8015. #### `Runtime`: modified event
  8016. * [`Runtime.consoleAPICalled`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-consoleAPICalled) - The parameters's `context` _added_.
  8017. ## Roll protocol to r478813
  8018. ###### _2017-06-12 16:15:23_ | Diff: [abcbcb5...17022a7](https://github.com/ChromeDevTools/devtools-protocol/compare/abcbcb5...17022a7)
  8019. #### `CacheStorage`: modified type
  8020. * [`CacheStorage.DataEntry`](https://chromedevtools.github.io/devtools-protocol/tot/CacheStorage/#type-DataEntry) - The `response` in the properties had `description` _updated_. The properties's `responseTime` _added_.
  8021. ## Roll protocol to r478513
  8022. ###### _2017-06-10 03:15:26_ | Diff: [3ac23d7...abcbcb5](https://github.com/ChromeDevTools/devtools-protocol/compare/3ac23d7...abcbcb5)
  8023. #### `DOMSnapshot`: new domain
  8024. * [`DOMSnapshot.DOMSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#domain-DOMSnapshot)
  8025. #### `DOMSnapshot`: new command
  8026. * [`DOMSnapshot.getSnapshot`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#method-getSnapshot)
  8027. #### `DOMSnapshot`: new types
  8028. * [`DOMSnapshot.DOMNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-DOMNode)
  8029. * [`DOMSnapshot.LayoutTreeNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-LayoutTreeNode)
  8030. * [`DOMSnapshot.ComputedStyle`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-ComputedStyle)
  8031. * [`DOMSnapshot.NameValue`](https://chromedevtools.github.io/devtools-protocol/tot/DOMSnapshot/#type-NameValue)
  8032. ## Roll protocol to r477611
  8033. ###### _2017-06-07 04:15:16_ | Diff: [ffd3dba...3ac23d7](https://github.com/ChromeDevTools/devtools-protocol/compare/ffd3dba...3ac23d7)
  8034. #### `Network`: modified event
  8035. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted) - The `redirectHeaders` in the parameters had `optional` _removed_. The `redirectStatusCode` in the parameters had `type` _removed_. The `redirectHeaders` in the parameters had `name` _updated_. The `redirectHeaders` in the parameters had `$ref` _updated_. The `redirectHeaders` in the parameters had `description` _updated_. The `redirectStatusCode` in the parameters had `name` _updated_. The `redirectStatusCode` in the parameters had `description` _updated_. The `redirectUrl` in the parameters had `name` _updated_. The `redirectUrl` in the parameters had `type` _updated_. The `redirectUrl` in the parameters had `description` _updated_. The parameters's `$ref` _added_. The parameters's `redirectUrl` _added_.
  8036. ## Roll protocol to r477501
  8037. ###### _2017-06-06 18:15:18_ | Diff: [579f232...ffd3dba](https://github.com/ChromeDevTools/devtools-protocol/compare/579f232...ffd3dba)
  8038. #### `Storage`: removed command
  8039. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  8040. #### `Storage`: removed type
  8041. * [`Storage.QuotaAndUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-QuotaAndUsage)
  8042. ## Roll protocol to r477431
  8043. ###### _2017-06-06 15:15:24_ | Diff: [6d50df6...579f232](https://github.com/ChromeDevTools/devtools-protocol/compare/6d50df6...579f232)
  8044. #### `Storage`: new command
  8045. * [`Storage.getUsageAndQuota`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-getUsageAndQuota)
  8046. #### `Storage`: new type
  8047. * [`Storage.QuotaAndUsage`](https://chromedevtools.github.io/devtools-protocol/tot/Storage/#type-QuotaAndUsage)
  8048. ## Roll protocol to r476654
  8049. ###### _2017-06-02 08:15:15_ | Diff: [5f36401...b0a59a9](https://github.com/ChromeDevTools/devtools-protocol/compare/5f36401...b0a59a9)
  8050. #### `Network`: new commands
  8051. * [`Network.enableRequestInterception`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-enableRequestInterception)
  8052. * [`Network.continueInterceptedRequest`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest)
  8053. #### `Network`: new event
  8054. * [`Network.requestIntercepted`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-requestIntercepted)
  8055. #### `Network`: new types
  8056. * [`Network.InterceptionId`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-InterceptionId)
  8057. * [`Network.ErrorReason`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-ErrorReason)
  8058. ## Roll protocol to r474209
  8059. ###### _2017-05-24 01:15:13_ | Diff: [408d0e6...f492fba](https://github.com/ChromeDevTools/devtools-protocol/compare/408d0e6...f492fba)
  8060. #### `Page`: modified command
  8061. * [`Page.captureScreenshot`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-captureScreenshot) - The `fromSurface` in the parameters had `description` _updated_.
  8062. ## Roll protocol to r474080
  8063. ###### _2017-05-23 15:15:33_ | Diff: [bb2b187...eca5adc](https://github.com/ChromeDevTools/devtools-protocol/compare/bb2b187...eca5adc)
  8064. #### `Input`: new command
  8065. * [`Input.setIgnoreInputEvents`](https://chromedevtools.github.io/devtools-protocol/tot/Input/#method-setIgnoreInputEvents)
  8066. ## Roll protocol to r474054 466964
  8067. ###### _2017-05-23 14:15:15_ | Diff: [e599527...bb2b187](https://github.com/ChromeDevTools/devtools-protocol/compare/e599527...bb2b187)
  8068. #### `Page`: modified command
  8069. * [`Page.navigate`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-navigate) - The parameters's `transitionType` _added_.
  8070. #### `Page`: new type
  8071. * [`Page.TransitionType`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-TransitionType)
  8072. #### `Page`: modified type
  8073. * [`Page.NavigationEntry`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-NavigationEntry) - The `title` in the properties had `name` _updated_. The `title` in the properties had `description` _updated_. The properties's `title` _added_. The properties's `transitionType` _added_.
  8074. ## Roll protocol to r472421
  8075. ###### _2017-05-17 04:15:14_ | Diff: [c7253c2...e599527](https://github.com/ChromeDevTools/devtools-protocol/compare/c7253c2...e599527)
  8076. #### `SystemInfo`: modified command
  8077. * [`SystemInfo.getInfo`](https://chromedevtools.github.io/devtools-protocol/tot/SystemInfo/#method-getInfo) - The return value's `commandLine` _added_.
  8078. ## Roll protocol to r472381
  8079. ###### _2017-05-17 01:15:16_ | Diff: [42e9444...c7253c2](https://github.com/ChromeDevTools/devtools-protocol/compare/42e9444...c7253c2)
  8080. #### `Debugger`: modified command
  8081. * [`Debugger.continueToLocation`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-continueToLocation) - The parameters's `targetCallFrames` _added_.
  8082. ## Roll protocol to r470873
  8083. ###### _2017-05-11 01:15:18_ | Diff: [a03b9bf...42e9444](https://github.com/ChromeDevTools/devtools-protocol/compare/a03b9bf...42e9444)
  8084. #### `Page`: new command
  8085. * [`Page.createIsolatedWorld`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-createIsolatedWorld)
  8086. ## Roll protocol to r470190
  8087. ###### _2017-05-08 21:15:15_ | Diff: [7060d50...a03b9bf](https://github.com/ChromeDevTools/devtools-protocol/compare/7060d50...a03b9bf)
  8088. #### `Page`: modified command
  8089. * [`Page.printToPDF`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF) - `description` updated.
  8090. ## Roll protocol to r467326
  8091. ###### _2017-04-26 08:15:16_ | Diff: [d7b68bb...c656485](https://github.com/ChromeDevTools/devtools-protocol/compare/d7b68bb...c656485)
  8092. #### `Runtime`: modified event
  8093. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated) - The `context` in the parameters had `description` _updated_.
  8094. #### `Debugger`: modified command
  8095. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - The `end` in the parameters had `description` _updated_.
  8096. #### `Profiler`: modified event
  8097. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted) - `description` updated.
  8098. #### `HeapProfiler`: modified event
  8099. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId) - `description` updated.
  8100. ## Roll protocol to r467252
  8101. ###### _2017-04-25 23:15:14_ | Diff: [94e4a6a...d7b68bb](https://github.com/ChromeDevTools/devtools-protocol/compare/94e4a6a...d7b68bb)
  8102. #### `Runtime`: modified event
  8103. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated) - The `context` in the parameters had `description` _updated_.
  8104. #### `Debugger`: modified command
  8105. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - The `end` in the parameters had `description` _updated_.
  8106. #### `Profiler`: modified event
  8107. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted) - `description` updated.
  8108. #### `HeapProfiler`: modified event
  8109. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId) - `description` updated.
  8110. ## Roll protocol to r466832
  8111. ###### _2017-04-24 17:15:24_ | Diff: [95a5c47...94e4a6a](https://github.com/ChromeDevTools/devtools-protocol/compare/95a5c47...94e4a6a)
  8112. #### `Overlay`: new domain
  8113. * [`Overlay.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Overlay)
  8114. #### `Overlay`: removed domain
  8115. * [`Overlay.Rendering`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Rendering)
  8116. #### `Page`: removed command
  8117. * [`Page.configureOverlay`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-configureOverlay)
  8118. #### `Overlay`: new commands
  8119. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  8120. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  8121. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  8122. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  8123. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  8124. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  8125. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  8126. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  8127. * [`Overlay.setSuspended`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setSuspended)
  8128. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  8129. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  8130. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  8131. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  8132. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  8133. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  8134. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  8135. #### `Overlay`: new events
  8136. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  8137. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  8138. #### `Overlay`: new types
  8139. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  8140. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  8141. #### `DOM`: removed commands
  8142. * [`DOM.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectMode)
  8143. * [`DOM.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightQuad)
  8144. * [`DOM.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightFrame)
  8145. * [`DOM.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getHighlightObjectForTest)
  8146. #### `DOM`: modified commands
  8147. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect) - `description` updated. `redirect` added.
  8148. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode) - `description` updated. `redirect` added.
  8149. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight) - `description` updated. `redirect` added.
  8150. #### `DOM`: removed events
  8151. * [`DOM.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inspectNodeRequested)
  8152. * [`DOM.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-nodeHighlightRequested)
  8153. #### `DOM`: removed types
  8154. * [`DOM.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-HighlightConfig)
  8155. * [`DOM.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-InspectMode)
  8156. ## Roll protocol to r466815
  8157. ###### _2017-04-24 16:15:14_ | Diff: [e5adaae...95a5c47](https://github.com/ChromeDevTools/devtools-protocol/compare/e5adaae...95a5c47)
  8158. #### `Runtime`: modified event
  8159. * [`Runtime.executionContextCreated`](https://chromedevtools.github.io/devtools-protocol/tot/Runtime/#event-executionContextCreated) - The `context` in the parameters had `description` _updated_.
  8160. #### `Debugger`: modified command
  8161. * [`Debugger.getPossibleBreakpoints`](https://chromedevtools.github.io/devtools-protocol/tot/Debugger/#method-getPossibleBreakpoints) - The `end` in the parameters had `description` _updated_.
  8162. #### `Profiler`: modified event
  8163. * [`Profiler.consoleProfileStarted`](https://chromedevtools.github.io/devtools-protocol/tot/Profiler/#event-consoleProfileStarted) - `description` updated.
  8164. #### `HeapProfiler`: modified event
  8165. * [`HeapProfiler.lastSeenObjectId`](https://chromedevtools.github.io/devtools-protocol/tot/HeapProfiler/#event-lastSeenObjectId) - `description` updated.
  8166. ## Roll protocol to r466559
  8167. ###### _2017-04-23 00:15:13_ | Diff: [6653c3f...e5adaae](https://github.com/ChromeDevTools/devtools-protocol/compare/6653c3f...e5adaae)
  8168. #### `Rendering`: new domain
  8169. * [`Rendering.Rendering`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#domain-Rendering)
  8170. #### `Rendering`: removed domain
  8171. * [`Rendering.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#domain-Overlay)
  8172. #### `Page`: new command
  8173. * [`Page.configureOverlay`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-configureOverlay)
  8174. #### `Rendering`: new commands
  8175. * [`Rendering.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowPaintRects)
  8176. * [`Rendering.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowDebugBorders)
  8177. * [`Rendering.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowFPSCounter)
  8178. * [`Rendering.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowScrollBottleneckRects)
  8179. * [`Rendering.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowViewportSizeOnResize)
  8180. #### `DOM`: new commands
  8181. * [`DOM.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectMode)
  8182. * [`DOM.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightQuad)
  8183. * [`DOM.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightFrame)
  8184. * [`DOM.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getHighlightObjectForTest)
  8185. #### `DOM`: modified commands
  8186. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect) - `redirect` removed. `description` updated.
  8187. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode) - `redirect` removed. `description` updated.
  8188. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight) - `redirect` removed. `description` updated.
  8189. #### `DOM`: new events
  8190. * [`DOM.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inspectNodeRequested)
  8191. * [`DOM.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-nodeHighlightRequested)
  8192. #### `DOM`: new types
  8193. * [`DOM.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-HighlightConfig)
  8194. * [`DOM.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-InspectMode)
  8195. ## Roll protocol to r466506
  8196. ###### _2017-04-21 17:15:18_ | Diff: [afbaab8...495acc6](https://github.com/ChromeDevTools/devtools-protocol/compare/afbaab8...495acc6)
  8197. #### `Overlay`: new domain
  8198. * [`Overlay.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Overlay)
  8199. #### `Overlay`: removed domain
  8200. * [`Overlay.Rendering`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Rendering)
  8201. #### `Page`: removed command
  8202. * [`Page.configureOverlay`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-configureOverlay)
  8203. #### `Overlay`: new commands
  8204. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  8205. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  8206. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  8207. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  8208. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  8209. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  8210. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  8211. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  8212. * [`Overlay.setSuspended`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setSuspended)
  8213. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  8214. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  8215. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  8216. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  8217. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  8218. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  8219. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  8220. #### `Overlay`: new events
  8221. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  8222. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  8223. #### `Overlay`: new types
  8224. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  8225. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  8226. #### `DOM`: removed commands
  8227. * [`DOM.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectMode)
  8228. * [`DOM.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightQuad)
  8229. * [`DOM.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightFrame)
  8230. * [`DOM.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getHighlightObjectForTest)
  8231. #### `DOM`: modified commands
  8232. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect) - `description` updated. `redirect` added.
  8233. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode) - `description` updated. `redirect` added.
  8234. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight) - `description` updated. `redirect` added.
  8235. #### `DOM`: removed events
  8236. * [`DOM.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inspectNodeRequested)
  8237. * [`DOM.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-nodeHighlightRequested)
  8238. #### `DOM`: removed types
  8239. * [`DOM.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-HighlightConfig)
  8240. * [`DOM.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-InspectMode)
  8241. ## Roll protocol to r465861
  8242. ###### _2017-04-19 19:15:14_ | Diff: [3dd613f...2621a84](https://github.com/ChromeDevTools/devtools-protocol/compare/3dd613f...2621a84)
  8243. #### `Rendering`: new domain
  8244. * [`Rendering.Rendering`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#domain-Rendering)
  8245. #### `Rendering`: removed domain
  8246. * [`Rendering.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#domain-Overlay)
  8247. #### `Page`: new command
  8248. * [`Page.configureOverlay`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-configureOverlay)
  8249. #### `Rendering`: new commands
  8250. * [`Rendering.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowPaintRects)
  8251. * [`Rendering.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowDebugBorders)
  8252. * [`Rendering.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowFPSCounter)
  8253. * [`Rendering.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowScrollBottleneckRects)
  8254. * [`Rendering.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Rendering/#method-setShowViewportSizeOnResize)
  8255. #### `DOM`: new commands
  8256. * [`DOM.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectMode)
  8257. * [`DOM.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightQuad)
  8258. * [`DOM.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightFrame)
  8259. * [`DOM.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getHighlightObjectForTest)
  8260. #### `DOM`: modified commands
  8261. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect) - `redirect` removed. `description` updated.
  8262. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode) - `redirect` removed. `description` updated.
  8263. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight) - `redirect` removed. `description` updated.
  8264. #### `DOM`: new events
  8265. * [`DOM.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inspectNodeRequested)
  8266. * [`DOM.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-nodeHighlightRequested)
  8267. #### `DOM`: new types
  8268. * [`DOM.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-HighlightConfig)
  8269. * [`DOM.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-InspectMode)
  8270. ## Roll protocol to r465817
  8271. ###### _2017-04-19 17:15:19_ | Diff: [af95ade...3dd613f](https://github.com/ChromeDevTools/devtools-protocol/compare/af95ade...3dd613f)
  8272. #### `Overlay`: new domain
  8273. * [`Overlay.Overlay`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Overlay)
  8274. #### `Overlay`: removed domain
  8275. * [`Overlay.Rendering`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#domain-Rendering)
  8276. #### `Page`: removed command
  8277. * [`Page.configureOverlay`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-configureOverlay)
  8278. #### `Overlay`: new commands
  8279. * [`Overlay.enable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-enable)
  8280. * [`Overlay.disable`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-disable)
  8281. * [`Overlay.setShowPaintRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowPaintRects)
  8282. * [`Overlay.setShowDebugBorders`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowDebugBorders)
  8283. * [`Overlay.setShowFPSCounter`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowFPSCounter)
  8284. * [`Overlay.setShowScrollBottleneckRects`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowScrollBottleneckRects)
  8285. * [`Overlay.setShowViewportSizeOnResize`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setShowViewportSizeOnResize)
  8286. * [`Overlay.setPausedInDebuggerMessage`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setPausedInDebuggerMessage)
  8287. * [`Overlay.setSuspended`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setSuspended)
  8288. * [`Overlay.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-setInspectMode)
  8289. * [`Overlay.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightRect)
  8290. * [`Overlay.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightQuad)
  8291. * [`Overlay.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightNode)
  8292. * [`Overlay.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-highlightFrame)
  8293. * [`Overlay.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-hideHighlight)
  8294. * [`Overlay.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#method-getHighlightObjectForTest)
  8295. #### `Overlay`: new events
  8296. * [`Overlay.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-nodeHighlightRequested)
  8297. * [`Overlay.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#event-inspectNodeRequested)
  8298. #### `Overlay`: new types
  8299. * [`Overlay.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-HighlightConfig)
  8300. * [`Overlay.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/Overlay/#type-InspectMode)
  8301. #### `DOM`: removed commands
  8302. * [`DOM.setInspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-setInspectMode)
  8303. * [`DOM.highlightQuad`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightQuad)
  8304. * [`DOM.highlightFrame`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightFrame)
  8305. * [`DOM.getHighlightObjectForTest`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-getHighlightObjectForTest)
  8306. #### `DOM`: modified commands
  8307. * [`DOM.highlightRect`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightRect) - `description` updated. `redirect` added.
  8308. * [`DOM.highlightNode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-highlightNode) - `description` updated. `redirect` added.
  8309. * [`DOM.hideHighlight`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#method-hideHighlight) - `description` updated. `redirect` added.
  8310. #### `DOM`: removed events
  8311. * [`DOM.inspectNodeRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-inspectNodeRequested)
  8312. * [`DOM.nodeHighlightRequested`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#event-nodeHighlightRequested)
  8313. #### `DOM`: removed types
  8314. * [`DOM.HighlightConfig`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-HighlightConfig)
  8315. * [`DOM.InspectMode`](https://chromedevtools.github.io/devtools-protocol/tot/DOM/#type-InspectMode)
  8316. ## Roll protocol to r464996
  8317. ###### _2017-04-17 13:15:14_ | Diff: [b37b8df...af95ade](https://github.com/ChromeDevTools/devtools-protocol/compare/b37b8df...af95ade)
  8318. #### `Page`: removed command
  8319. * [`Page.setColorPickerEnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-setColorPickerEnabled)
  8320. #### `Page`: removed event
  8321. * [`Page.colorPicked`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#event-colorPicked)
  8322. ## Roll protocol to r464752
  8323. ###### _2017-04-14 11:15:26_ | Diff: [a087d6e...b37b8df](https://github.com/ChromeDevTools/devtools-protocol/compare/a087d6e...b37b8df)
  8324. #### `Network`: removed command
  8325. * [`Network.setMonitoringXHREnabled`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setMonitoringXHREnabled)
  8326. ## Roll protocol to r464268
  8327. ###### _2017-04-12 20:15:15_ | Diff: [389442a...a087d6e](https://github.com/ChromeDevTools/devtools-protocol/compare/389442a...a087d6e)
  8328. #### `Browser`: new domain
  8329. * [`Browser.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#domain-Browser)
  8330. #### `Target`: modified command
  8331. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The `targetId` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  8332. #### `Browser`: new commands
  8333. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget)
  8334. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds)
  8335. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds)
  8336. #### `Browser`: new types
  8337. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID)
  8338. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState)
  8339. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds)
  8340. ## Roll protocol to r463392
  8341. ###### _2017-04-10 14:16:03_ | Diff: [bced713...6839ff5](https://github.com/ChromeDevTools/devtools-protocol/compare/bced713...6839ff5)
  8342. #### `Browser`: removed domain
  8343. * [`Browser.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#domain-Browser)
  8344. #### `Target`: modified command
  8345. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The `targetId` in the parameters had `$ref` _removed_. The parameters's `type` _added_.
  8346. ## Roll protocol to r463120
  8347. ###### _2017-04-07 20:15:13_ | Diff: [e6757c1...bced713](https://github.com/ChromeDevTools/devtools-protocol/compare/e6757c1...bced713)
  8348. #### `Browser`: new domain
  8349. * [`Browser.Browser`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#domain-Browser)
  8350. #### `Target`: modified command
  8351. * [`Target.sendMessageToTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-sendMessageToTarget) - The `targetId` in the parameters had `type` _removed_. The parameters's `$ref` _added_.
  8352. #### `Browser`: new commands
  8353. * [`Browser.getWindowForTarget`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowForTarget)
  8354. * [`Browser.setWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setWindowBounds)
  8355. * [`Browser.getWindowBounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-getWindowBounds)
  8356. #### `Browser`: new types
  8357. * [`Browser.WindowID`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowID)
  8358. * [`Browser.WindowState`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-WindowState)
  8359. * [`Browser.Bounds`](https://chromedevtools.github.io/devtools-protocol/tot/Browser/#type-Bounds)
  8360. ## Roll protocol to r460846
  8361. ###### _2017-03-30 12:15:27_ | Diff: [bb10d9a...07e8fce](https://github.com/ChromeDevTools/devtools-protocol/compare/bb10d9a...07e8fce)
  8362. #### `Network`: modified command
  8363. * [`Network.setBlockedURLs`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-setBlockedURLs) - `description` updated. The `urls` in the parameters had `description` _updated_.