gitextract_fx1j65pu/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── build-docs.yml │ ├── ci.yml │ ├── playwright.yml │ ├── pylint-problem-matcher.json │ ├── update-tests/ │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── specs.data │ │ └── update.py │ └── update-tests.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── Bikeshed.tmLanguage ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── bikeshed/ │ ├── InputSource.py │ ├── Spec.py │ ├── __init__.py │ ├── __main__.py │ ├── biblio.py │ ├── boilerplate/ │ │ └── README.md │ ├── boilerplate.py │ ├── caniuse/ │ │ ├── __init__.py │ │ ├── caniuse-panel.css │ │ └── caniuse.py │ ├── cddl.py │ ├── cli.py │ ├── conditional.py │ ├── config/ │ │ ├── BoolSet.py │ │ ├── __init__.py │ │ ├── dfnTypes.py │ │ └── main.py │ ├── constants.py │ ├── datablocks.py │ ├── dfnpanels/ │ │ ├── __init__.py │ │ ├── dfn-panel.css │ │ ├── dfn-panel.js │ │ └── dfnpanels.py │ ├── dfns/ │ │ ├── __init__.py │ │ └── attributeInfo.py │ ├── doctypes/ │ │ ├── __init__.py │ │ ├── manager.py │ │ └── utils.py │ ├── extensions.py │ ├── fingerprinting.py │ ├── fonts/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bigblocks.bsfont │ │ ├── fonts.py │ │ ├── rewrite.py │ │ └── smallblocks.bsfont │ ├── func.py │ ├── h/ │ │ ├── __init__.py │ │ ├── dom.py │ │ ├── merge.py │ │ ├── parser/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── nodes.py │ │ │ ├── parser.py │ │ │ ├── preds.py │ │ │ ├── result.py │ │ │ ├── simpleparser.py │ │ │ └── stream.py │ │ └── serializer.py │ ├── headings.py │ ├── highlight/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── highlight.py │ │ ├── line-highlighting.css │ │ ├── line-numbers.css │ │ └── syntax-highlighting.css │ ├── idl.py │ ├── includes.py │ ├── inlineTags/ │ │ └── __init__.py │ ├── issuelist.py │ ├── language.py │ ├── lexers.py │ ├── line.py │ ├── lint/ │ │ ├── __init__.py │ │ ├── accidental2119.py │ │ ├── brokenLinks.py │ │ ├── exampleIDs.py │ │ ├── missingExposed.py │ │ ├── requiredIDs.py │ │ └── unusedInternalDfns.py │ ├── markdown/ │ │ ├── __init__.py │ │ ├── inlines.py │ │ └── markdown.py │ ├── mdn/ │ │ ├── __init__.py │ │ ├── mdn-anno.css │ │ └── mdnspeclinks.py │ ├── messages.py │ ├── metadata.py │ ├── outline.py │ ├── printjson.py │ ├── publish.py │ ├── py.typed │ ├── pyg.py │ ├── railroaddiagrams.py │ ├── railroadparser.py │ ├── refs/ │ │ ├── __init__.py │ │ ├── external.py │ │ ├── headingdata.py │ │ ├── manager.py │ │ ├── ref-hints.css │ │ ├── ref-hints.js │ │ ├── source.py │ │ ├── utils.py │ │ └── wrapper.py │ ├── repository.py │ ├── result/ │ │ ├── __init__.py │ │ └── main.py │ ├── retrieve.py │ ├── semver-dev.txt │ ├── semver.txt │ ├── shorthands/ │ │ ├── __init__.py │ │ └── oldShorthands.py │ ├── spec-data/ │ │ └── readonly/ │ │ ├── anchors/ │ │ │ ├── anchors-1_.data │ │ │ ├── anchors-1d.data │ │ │ ├── anchors-1s.data │ │ │ ├── anchors-1u.data │ │ │ ├── anchors-24.data │ │ │ ├── anchors-2d.data │ │ │ ├── anchors-2g.data │ │ │ ├── anchors-2n.data │ │ │ ├── anchors-2u.data │ │ │ ├── anchors-2x.data │ │ │ ├── anchors-34.data │ │ │ ├── anchors-3d.data │ │ │ ├── anchors-3f.data │ │ │ ├── anchors-3g.data │ │ │ ├── anchors-3r.data │ │ │ ├── anchors-4c.data │ │ │ ├── anchors-4g.data │ │ │ ├── anchors-4t.data │ │ │ ├── anchors-4x.data │ │ │ ├── anchors-54.data │ │ │ ├── anchors-55.data │ │ │ ├── anchors-64.data │ │ │ ├── anchors-6d.data │ │ │ ├── anchors-__.data │ │ │ ├── anchors-a1.data │ │ │ ├── anchors-a3.data │ │ │ ├── anchors-a4.data │ │ │ ├── anchors-a5.data │ │ │ ├── anchors-a9.data │ │ │ ├── anchors-a_.data │ │ │ ├── anchors-aa.data │ │ │ ├── anchors-ab.data │ │ │ ├── anchors-ac.data │ │ │ ├── anchors-ad.data │ │ │ ├── anchors-ae.data │ │ │ ├── anchors-af.data │ │ │ ├── anchors-ag.data │ │ │ ├── anchors-ak.data │ │ │ ├── anchors-al.data │ │ │ ├── anchors-am.data │ │ │ ├── anchors-an.data │ │ │ ├── anchors-ap.data │ │ │ ├── anchors-aq.data │ │ │ ├── anchors-ar.data │ │ │ ├── anchors-as.data │ │ │ ├── anchors-at.data │ │ │ ├── anchors-au.data │ │ │ ├── anchors-av.data │ │ │ ├── anchors-aw.data │ │ │ ├── anchors-ax.data │ │ │ ├── anchors-ay.data │ │ │ ├── anchors-az.data │ │ │ ├── anchors-b4.data │ │ │ ├── anchors-b5.data │ │ │ ├── anchors-b_.data │ │ │ ├── anchors-ba.data │ │ │ ├── anchors-bc.data │ │ │ ├── anchors-bd.data │ │ │ ├── anchors-be.data │ │ │ ├── anchors-bf.data │ │ │ ├── anchors-bg.data │ │ │ ├── anchors-bi.data │ │ │ ├── anchors-bl.data │ │ │ ├── anchors-bm.data │ │ │ ├── anchors-bo.data │ │ │ ├── anchors-br.data │ │ │ ├── anchors-bs.data │ │ │ ├── anchors-bt.data │ │ │ ├── anchors-bu.data │ │ │ ├── anchors-bv.data │ │ │ ├── anchors-by.data │ │ │ ├── anchors-c0.data │ │ │ ├── anchors-c_.data │ │ │ ├── anchors-ca.data │ │ │ ├── anchors-cb.data │ │ │ ├── anchors-cc.data │ │ │ ├── anchors-cd.data │ │ │ ├── anchors-ce.data │ │ │ ├── anchors-cf.data │ │ │ ├── anchors-ch.data │ │ │ ├── anchors-ci.data │ │ │ ├── anchors-cj.data │ │ │ ├── anchors-cl.data │ │ │ ├── anchors-cm.data │ │ │ ├── anchors-cn.data │ │ │ ├── anchors-co.data │ │ │ ├── anchors-cp.data │ │ │ ├── anchors-cq.data │ │ │ ├── anchors-cr.data │ │ │ ├── anchors-cs.data │ │ │ ├── anchors-ct.data │ │ │ ├── anchors-cu.data │ │ │ ├── anchors-cw.data │ │ │ ├── anchors-cx.data │ │ │ ├── anchors-cy.data │ │ │ ├── anchors-d5.data │ │ │ ├── anchors-d6.data │ │ │ ├── anchors-d_.data │ │ │ ├── anchors-da.data │ │ │ ├── anchors-db.data │ │ │ ├── anchors-dc.data │ │ │ ├── anchors-dd.data │ │ │ ├── anchors-de.data │ │ │ ├── anchors-df.data │ │ │ ├── anchors-di.data │ │ │ ├── anchors-dl.data │ │ │ ├── anchors-dn.data │ │ │ ├── anchors-do.data │ │ │ ├── anchors-dp.data │ │ │ ├── anchors-dq.data │ │ │ ├── anchors-dr.data │ │ │ ├── anchors-ds.data │ │ │ ├── anchors-dt.data │ │ │ ├── anchors-du.data │ │ │ ├── anchors-dv.data │ │ │ ├── anchors-dx.data │ │ │ ├── anchors-dy.data │ │ │ ├── anchors-e_.data │ │ │ ├── anchors-ea.data │ │ │ ├── anchors-ec.data │ │ │ ├── anchors-ed.data │ │ │ ├── anchors-ef.data │ │ │ ├── anchors-ei.data │ │ │ ├── anchors-ej.data │ │ │ ├── anchors-el.data │ │ │ ├── anchors-em.data │ │ │ ├── anchors-en.data │ │ │ ├── anchors-eo.data │ │ │ ├── anchors-ep.data │ │ │ ├── anchors-eq.data │ │ │ ├── anchors-er.data │ │ │ ├── anchors-es.data │ │ │ ├── anchors-et.data │ │ │ ├── anchors-eu.data │ │ │ ├── anchors-ev.data │ │ │ ├── anchors-ew.data │ │ │ ├── anchors-ex.data │ │ │ ├── anchors-ey.data │ │ │ ├── anchors-f1.data │ │ │ ├── anchors-f3.data │ │ │ ├── anchors-f6.data │ │ │ ├── anchors-f_.data │ │ │ ├── anchors-fa.data │ │ │ ├── anchors-fe.data │ │ │ ├── anchors-ff.data │ │ │ ├── anchors-fg.data │ │ │ ├── anchors-fi.data │ │ │ ├── anchors-fl.data │ │ │ ├── anchors-fm.data │ │ │ ├── anchors-fn.data │ │ │ ├── anchors-fo.data │ │ │ ├── anchors-fr.data │ │ │ ├── anchors-fu.data │ │ │ ├── anchors-fw.data │ │ │ ├── anchors-fx.data │ │ │ ├── anchors-fy.data │ │ │ ├── anchors-g_.data │ │ │ ├── anchors-ga.data │ │ │ ├── anchors-gb.data │ │ │ ├── anchors-gc.data │ │ │ ├── anchors-ge.data │ │ │ ├── anchors-gh.data │ │ │ ├── anchors-gi.data │ │ │ ├── anchors-gl.data │ │ │ ├── anchors-go.data │ │ │ ├── anchors-gp.data │ │ │ ├── anchors-gr.data │ │ │ ├── anchors-gt.data │ │ │ ├── anchors-gu.data │ │ │ ├── anchors-gy.data │ │ │ ├── anchors-gz.data │ │ │ ├── anchors-h1.data │ │ │ ├── anchors-h2.data │ │ │ ├── anchors-h3.data │ │ │ ├── anchors-h4.data │ │ │ ├── anchors-h5.data │ │ │ ├── anchors-h6.data │ │ │ ├── anchors-h_.data │ │ │ ├── anchors-ha.data │ │ │ ├── anchors-hd.data │ │ │ ├── anchors-he.data │ │ │ ├── anchors-hg.data │ │ │ ├── anchors-hh.data │ │ │ ├── anchors-hi.data │ │ │ ├── anchors-hk.data │ │ │ ├── anchors-hl.data │ │ │ ├── anchors-hm.data │ │ │ ├── anchors-ho.data │ │ │ ├── anchors-hr.data │ │ │ ├── anchors-hs.data │ │ │ ├── anchors-ht.data │ │ │ ├── anchors-hu.data │ │ │ ├── anchors-hv.data │ │ │ ├── anchors-hw.data │ │ │ ├── anchors-hy.data │ │ │ ├── anchors-hz.data │ │ │ ├── anchors-i1.data │ │ │ ├── anchors-i3.data │ │ │ ├── anchors-i4.data │ │ │ ├── anchors-i6.data │ │ │ ├── anchors-i_.data │ │ │ ├── anchors-ia.data │ │ │ ├── anchors-ib.data │ │ │ ├── anchors-ic.data │ │ │ ├── anchors-id.data │ │ │ ├── anchors-ie.data │ │ │ ├── anchors-if.data │ │ │ ├── anchors-ig.data │ │ │ ├── anchors-ih.data │ │ │ ├── anchors-ii.data │ │ │ ├── anchors-ij.data │ │ │ ├── anchors-il.data │ │ │ ├── anchors-im.data │ │ │ ├── anchors-in.data │ │ │ ├── anchors-io.data │ │ │ ├── anchors-ip.data │ │ │ ├── anchors-ir.data │ │ │ ├── anchors-is.data │ │ │ ├── anchors-it.data │ │ │ ├── anchors-iv.data │ │ │ ├── anchors-ja.data │ │ │ ├── anchors-ji.data │ │ │ ├── anchors-jo.data │ │ │ ├── anchors-js.data │ │ │ ├── anchors-ju.data │ │ │ ├── anchors-jw.data │ │ │ ├── anchors-jz.data │ │ │ ├── anchors-k1.data │ │ │ ├── anchors-k2.data │ │ │ ├── anchors-k3.data │ │ │ ├── anchors-k4.data │ │ │ ├── anchors-k_.data │ │ │ ├── anchors-ka.data │ │ │ ├── anchors-kb.data │ │ │ ├── anchors-ke.data │ │ │ ├── anchors-kh.data │ │ │ ├── anchors-ki.data │ │ │ ├── anchors-kn.data │ │ │ ├── anchors-ko.data │ │ │ ├── anchors-kr.data │ │ │ ├── anchors-kt.data │ │ │ ├── anchors-l1.data │ │ │ ├── anchors-l2.data │ │ │ ├── anchors-l3.data │ │ │ ├── anchors-l_.data │ │ │ ├── anchors-la.data │ │ │ ├── anchors-lb.data │ │ │ ├── anchors-lc.data │ │ │ ├── anchors-le.data │ │ │ ├── anchors-lh.data │ │ │ ├── anchors-li.data │ │ │ ├── anchors-ln.data │ │ │ ├── anchors-lo.data │ │ │ ├── anchors-lr.data │ │ │ ├── anchors-ls.data │ │ │ ├── anchors-lt.data │ │ │ ├── anchors-lu.data │ │ │ ├── anchors-lv.data │ │ │ ├── anchors-lz.data │ │ │ ├── anchors-m1.data │ │ │ ├── anchors-m2.data │ │ │ ├── anchors-m3.data │ │ │ ├── anchors-m4.data │ │ │ ├── anchors-ma.data │ │ │ ├── anchors-mb.data │ │ │ ├── anchors-mc.data │ │ │ ├── anchors-me.data │ │ │ ├── anchors-mf.data │ │ │ ├── anchors-mi.data │ │ │ ├── anchors-ml.data │ │ │ ├── anchors-mm.data │ │ │ ├── anchors-mn.data │ │ │ ├── anchors-mo.data │ │ │ ├── anchors-mp.data │ │ │ ├── anchors-mq.data │ │ │ ├── anchors-mr.data │ │ │ ├── anchors-ms.data │ │ │ ├── anchors-mt.data │ │ │ ├── anchors-mu.data │ │ │ ├── anchors-my.data │ │ │ ├── anchors-n_.data │ │ │ ├── anchors-na.data │ │ │ ├── anchors-nc.data │ │ │ ├── anchors-nd.data │ │ │ ├── anchors-ne.data │ │ │ ├── anchors-nf.data │ │ │ ├── anchors-nh.data │ │ │ ├── anchors-ni.data │ │ │ ├── anchors-nn.data │ │ │ ├── anchors-no.data │ │ │ ├── anchors-np.data │ │ │ ├── anchors-nq.data │ │ │ ├── anchors-nr.data │ │ │ ├── anchors-ns.data │ │ │ ├── anchors-nt.data │ │ │ ├── anchors-nu.data │ │ │ ├── anchors-nv.data │ │ │ ├── anchors-nw.data │ │ │ ├── anchors-ny.data │ │ │ ├── anchors-oa.data │ │ │ ├── anchors-ob.data │ │ │ ├── anchors-oc.data │ │ │ ├── anchors-od.data │ │ │ ├── anchors-oe.data │ │ │ ├── anchors-of.data │ │ │ ├── anchors-og.data │ │ │ ├── anchors-oh.data │ │ │ ├── anchors-oi.data │ │ │ ├── anchors-ok.data │ │ │ ├── anchors-ol.data │ │ │ ├── anchors-om.data │ │ │ ├── anchors-on.data │ │ │ ├── anchors-op.data │ │ │ ├── anchors-or.data │ │ │ ├── anchors-os.data │ │ │ ├── anchors-ot.data │ │ │ ├── anchors-ou.data │ │ │ ├── anchors-ov.data │ │ │ ├── anchors-ow.data │ │ │ ├── anchors-p1.data │ │ │ ├── anchors-p2.data │ │ │ ├── anchors-p3.data │ │ │ ├── anchors-p4.data │ │ │ ├── anchors-p_.data │ │ │ ├── anchors-pa.data │ │ │ ├── anchors-pb.data │ │ │ ├── anchors-pc.data │ │ │ ├── anchors-pd.data │ │ │ ├── anchors-pe.data │ │ │ ├── anchors-ph.data │ │ │ ├── anchors-pi.data │ │ │ ├── anchors-pk.data │ │ │ ├── anchors-pl.data │ │ │ ├── anchors-pm.data │ │ │ ├── anchors-pn.data │ │ │ ├── anchors-po.data │ │ │ ├── anchors-pq.data │ │ │ ├── anchors-pr.data │ │ │ ├── anchors-ps.data │ │ │ ├── anchors-pt.data │ │ │ ├── anchors-pu.data │ │ │ ├── anchors-px.data │ │ │ ├── anchors-q_.data │ │ │ ├── anchors-qi.data │ │ │ ├── anchors-qp.data │ │ │ ├── anchors-qr.data │ │ │ ├── anchors-qu.data │ │ │ ├── anchors-qv.data │ │ │ ├── anchors-qw.data │ │ │ ├── anchors-r1.data │ │ │ ├── anchors-r3.data │ │ │ ├── anchors-r8.data │ │ │ ├── anchors-r_.data │ │ │ ├── anchors-ra.data │ │ │ ├── anchors-rb.data │ │ │ ├── anchors-rc.data │ │ │ ├── anchors-rd.data │ │ │ ├── anchors-re.data │ │ │ ├── anchors-rf.data │ │ │ ├── anchors-rg.data │ │ │ ├── anchors-rh.data │ │ │ ├── anchors-ri.data │ │ │ ├── anchors-rk.data │ │ │ ├── anchors-rl.data │ │ │ ├── anchors-rm.data │ │ │ ├── anchors-ro.data │ │ │ ├── anchors-rp.data │ │ │ ├── anchors-rr.data │ │ │ ├── anchors-rs.data │ │ │ ├── anchors-rt.data │ │ │ ├── anchors-ru.data │ │ │ ├── anchors-rx.data │ │ │ ├── anchors-ry.data │ │ │ ├── anchors-rz.data │ │ │ ├── anchors-s1.data │ │ │ ├── anchors-s2.data │ │ │ ├── anchors-s3.data │ │ │ ├── anchors-s_.data │ │ │ ├── anchors-sa.data │ │ │ ├── anchors-sc.data │ │ │ ├── anchors-sd.data │ │ │ ├── anchors-se.data │ │ │ ├── anchors-sf.data │ │ │ ├── anchors-sh.data │ │ │ ├── anchors-si.data │ │ │ ├── anchors-sk.data │ │ │ ├── anchors-sl.data │ │ │ ├── anchors-sm.data │ │ │ ├── anchors-sn.data │ │ │ ├── anchors-so.data │ │ │ ├── anchors-sp.data │ │ │ ├── anchors-sq.data │ │ │ ├── anchors-sr.data │ │ │ ├── anchors-ss.data │ │ │ ├── anchors-st.data │ │ │ ├── anchors-su.data │ │ │ ├── anchors-sv.data │ │ │ ├── anchors-sw.data │ │ │ ├── anchors-sx.data │ │ │ ├── anchors-sy.data │ │ │ ├── anchors-t0.data │ │ │ ├── anchors-t1.data │ │ │ ├── anchors-t2.data │ │ │ ├── anchors-t_.data │ │ │ ├── anchors-ta.data │ │ │ ├── anchors-tb.data │ │ │ ├── anchors-tc.data │ │ │ ├── anchors-td.data │ │ │ ├── anchors-te.data │ │ │ ├── anchors-tf.data │ │ │ ├── anchors-th.data │ │ │ ├── anchors-ti.data │ │ │ ├── anchors-tk.data │ │ │ ├── anchors-tl.data │ │ │ ├── anchors-tn.data │ │ │ ├── anchors-to.data │ │ │ ├── anchors-tr.data │ │ │ ├── anchors-ts.data │ │ │ ├── anchors-tt.data │ │ │ ├── anchors-tu.data │ │ │ ├── anchors-tv.data │ │ │ ├── anchors-tw.data │ │ │ ├── anchors-tx.data │ │ │ ├── anchors-ty.data │ │ │ ├── anchors-tz.data │ │ │ ├── anchors-u3.data │ │ │ ├── anchors-u8.data │ │ │ ├── anchors-u_.data │ │ │ ├── anchors-ua.data │ │ │ ├── anchors-ub.data │ │ │ ├── anchors-ud.data │ │ │ ├── anchors-ui.data │ │ │ ├── anchors-ul.data │ │ │ ├── anchors-un.data │ │ │ ├── anchors-up.data │ │ │ ├── anchors-ur.data │ │ │ ├── anchors-us.data │ │ │ ├── anchors-ut.data │ │ │ ├── anchors-uu.data │ │ │ ├── anchors-uv.data │ │ │ ├── anchors-v1.data │ │ │ ├── anchors-v_.data │ │ │ ├── anchors-va.data │ │ │ ├── anchors-vb.data │ │ │ ├── anchors-vc.data │ │ │ ├── anchors-ve.data │ │ │ ├── anchors-vh.data │ │ │ ├── anchors-vi.data │ │ │ ├── anchors-vl.data │ │ │ ├── anchors-vm.data │ │ │ ├── anchors-vo.data │ │ │ ├── anchors-vp.data │ │ │ ├── anchors-vs.data │ │ │ ├── anchors-vt.data │ │ │ ├── anchors-vw.data │ │ │ ├── anchors-w3.data │ │ │ ├── anchors-w_.data │ │ │ ├── anchors-wa.data │ │ │ ├── anchors-wb.data │ │ │ ├── anchors-wc.data │ │ │ ├── anchors-wd.data │ │ │ ├── anchors-we.data │ │ │ ├── anchors-wg.data │ │ │ ├── anchors-wh.data │ │ │ ├── anchors-wi.data │ │ │ ├── anchors-wo.data │ │ │ ├── anchors-wp.data │ │ │ ├── anchors-wq.data │ │ │ ├── anchors-wr.data │ │ │ ├── anchors-ws.data │ │ │ ├── anchors-x1.data │ │ │ ├── anchors-x2.data │ │ │ ├── anchors-x_.data │ │ │ ├── anchors-xa.data │ │ │ ├── anchors-xb.data │ │ │ ├── anchors-xc.data │ │ │ ├── anchors-xe.data │ │ │ ├── anchors-xf.data │ │ │ ├── anchors-xh.data │ │ │ ├── anchors-xl.data │ │ │ ├── anchors-xm.data │ │ │ ├── anchors-xo.data │ │ │ ├── anchors-xp.data │ │ │ ├── anchors-xr.data │ │ │ ├── anchors-xs.data │ │ │ ├── anchors-xu.data │ │ │ ├── anchors-xw.data │ │ │ ├── anchors-xx.data │ │ │ ├── anchors-xy.data │ │ │ ├── anchors-y1.data │ │ │ ├── anchors-y2.data │ │ │ ├── anchors-y_.data │ │ │ ├── anchors-ya.data │ │ │ ├── anchors-yb.data │ │ │ ├── anchors-yc.data │ │ │ ├── anchors-ye.data │ │ │ ├── anchors-yi.data │ │ │ ├── anchors-yo.data │ │ │ ├── anchors-ys.data │ │ │ ├── anchors-yu.data │ │ │ ├── anchors-z_.data │ │ │ ├── anchors-za.data │ │ │ ├── anchors-zb.data │ │ │ ├── anchors-zc.data │ │ │ ├── anchors-ze.data │ │ │ ├── anchors-zh.data │ │ │ ├── anchors-zi.data │ │ │ ├── anchors-zl.data │ │ │ ├── anchors-zo.data │ │ │ ├── anchors-zr.data │ │ │ └── anchors-zu.data │ │ ├── biblio/ │ │ │ ├── biblio-2d.data │ │ │ ├── biblio-3g.data │ │ │ ├── biblio-aa.data │ │ │ ├── biblio-ab.data │ │ │ ├── biblio-ac.data │ │ │ ├── biblio-ad.data │ │ │ ├── biblio-ae.data │ │ │ ├── biblio-af.data │ │ │ ├── biblio-ag.data │ │ │ ├── biblio-al.data │ │ │ ├── biblio-am.data │ │ │ ├── biblio-an.data │ │ │ ├── biblio-ao.data │ │ │ ├── biblio-ap.data │ │ │ ├── biblio-ar.data │ │ │ ├── biblio-as.data │ │ │ ├── biblio-at.data │ │ │ ├── biblio-au.data │ │ │ ├── biblio-av.data │ │ │ ├── biblio-ax.data │ │ │ ├── biblio-ba.data │ │ │ ├── biblio-bb.data │ │ │ ├── biblio-bc.data │ │ │ ├── biblio-be.data │ │ │ ├── biblio-bi.data │ │ │ ├── biblio-bl.data │ │ │ ├── biblio-bo.data │ │ │ ├── biblio-br.data │ │ │ ├── biblio-bu.data │ │ │ ├── biblio-c1.data │ │ │ ├── biblio-ca.data │ │ │ ├── biblio-cb.data │ │ │ ├── biblio-cc.data │ │ │ ├── biblio-cd.data │ │ │ ├── biblio-ce.data │ │ │ ├── biblio-cg.data │ │ │ ├── biblio-ch.data │ │ │ ├── biblio-ci.data │ │ │ ├── biblio-cj.data │ │ │ ├── biblio-cl.data │ │ │ ├── biblio-cm.data │ │ │ ├── biblio-co.data │ │ │ ├── biblio-cp.data │ │ │ ├── biblio-cr.data │ │ │ ├── biblio-cs.data │ │ │ ├── biblio-ct.data │ │ │ ├── biblio-cu.data │ │ │ ├── biblio-cv.data │ │ │ ├── biblio-cw.data │ │ │ ├── biblio-cx.data │ │ │ ├── biblio-cy.data │ │ │ ├── biblio-d0.data │ │ │ ├── biblio-d1.data │ │ │ ├── biblio-d2.data │ │ │ ├── biblio-d4.data │ │ │ ├── biblio-da.data │ │ │ ├── biblio-dc.data │ │ │ ├── biblio-dd.data │ │ │ ├── biblio-de.data │ │ │ ├── biblio-df.data │ │ │ ├── biblio-di.data │ │ │ ├── biblio-dm.data │ │ │ ├── biblio-dn.data │ │ │ ├── biblio-do.data │ │ │ ├── biblio-dp.data │ │ │ ├── biblio-dr.data │ │ │ ├── biblio-ds.data │ │ │ ├── biblio-dt.data │ │ │ ├── biblio-dv.data │ │ │ ├── biblio-dw.data │ │ │ ├── biblio-dx.data │ │ │ ├── biblio-e..data │ │ │ ├── biblio-ea.data │ │ │ ├── biblio-eb.data │ │ │ ├── biblio-ec.data │ │ │ ├── biblio-ed.data │ │ │ ├── biblio-eg.data │ │ │ ├── biblio-el.data │ │ │ ├── biblio-em.data │ │ │ ├── biblio-en.data │ │ │ ├── biblio-eo.data │ │ │ ├── biblio-ep.data │ │ │ ├── biblio-er.data │ │ │ ├── biblio-es.data │ │ │ ├── biblio-et.data │ │ │ ├── biblio-eu.data │ │ │ ├── biblio-ev.data │ │ │ ├── biblio-ew.data │ │ │ ├── biblio-ex.data │ │ │ ├── biblio-ey.data │ │ │ ├── biblio-fe.data │ │ │ ├── biblio-fi.data │ │ │ ├── biblio-fl.data │ │ │ ├── biblio-fo.data │ │ │ ├── biblio-fr.data │ │ │ ├── biblio-fs.data │ │ │ ├── biblio-fu.data │ │ │ ├── biblio-ga.data │ │ │ ├── biblio-gd.data │ │ │ ├── biblio-ge.data │ │ │ ├── biblio-gi.data │ │ │ ├── biblio-gl.data │ │ │ ├── biblio-gm.data │ │ │ ├── biblio-go.data │ │ │ ├── biblio-gp.data │ │ │ ├── biblio-gr.data │ │ │ ├── biblio-gs.data │ │ │ ├── biblio-gt.data │ │ │ ├── biblio-gu.data │ │ │ ├── biblio-gy.data │ │ │ ├── biblio-h-.data │ │ │ ├── biblio-ha.data │ │ │ ├── biblio-hb.data │ │ │ ├── biblio-hc.data │ │ │ ├── biblio-he.data │ │ │ ├── biblio-hg.data │ │ │ ├── biblio-hi.data │ │ │ ├── biblio-hl.data │ │ │ ├── biblio-hm.data │ │ │ ├── biblio-hn.data │ │ │ ├── biblio-hr.data │ │ │ ├── biblio-hs.data │ │ │ ├── biblio-ht.data │ │ │ ├── biblio-hu.data │ │ │ ├── biblio-i1.data │ │ │ ├── biblio-ia.data │ │ │ ├── biblio-ic.data │ │ │ ├── biblio-id.data │ │ │ ├── biblio-ie.data │ │ │ ├── biblio-if.data │ │ │ ├── biblio-il.data │ │ │ ├── biblio-im.data │ │ │ ├── biblio-in.data │ │ │ ├── biblio-ip.data │ │ │ ├── biblio-ir.data │ │ │ ├── biblio-is.data │ │ │ ├── biblio-it.data │ │ │ ├── biblio-ja.data │ │ │ ├── biblio-je.data │ │ │ ├── biblio-jf.data │ │ │ ├── biblio-ji.data │ │ │ ├── biblio-jl.data │ │ │ ├── biblio-jp.data │ │ │ ├── biblio-js.data │ │ │ ├── biblio-ju.data │ │ │ ├── biblio-jw.data │ │ │ ├── biblio-ke.data │ │ │ ├── biblio-kh.data │ │ │ ├── biblio-kl.data │ │ │ ├── biblio-kn.data │ │ │ ├── biblio-ko.data │ │ │ ├── biblio-ku.data │ │ │ ├── biblio-kv.data │ │ │ ├── biblio-la.data │ │ │ ├── biblio-lb.data │ │ │ ├── biblio-ld.data │ │ │ ├── biblio-le.data │ │ │ ├── biblio-li.data │ │ │ ├── biblio-ll.data │ │ │ ├── biblio-lo.data │ │ │ ├── biblio-lp.data │ │ │ ├── biblio-lt.data │ │ │ ├── biblio-lw.data │ │ │ ├── biblio-ma.data │ │ │ ├── biblio-mb.data │ │ │ ├── biblio-mc.data │ │ │ ├── biblio-md.data │ │ │ ├── biblio-me.data │ │ │ ├── biblio-mf.data │ │ │ ├── biblio-mi.data │ │ │ ├── biblio-ml.data │ │ │ ├── biblio-mm.data │ │ │ ├── biblio-mn.data │ │ │ ├── biblio-mo.data │ │ │ ├── biblio-mp.data │ │ │ ├── biblio-mq.data │ │ │ ├── biblio-mr.data │ │ │ ├── biblio-ms.data │ │ │ ├── biblio-mu.data │ │ │ ├── biblio-mw.data │ │ │ ├── biblio-n-.data │ │ │ ├── biblio-n1.data │ │ │ ├── biblio-n2.data │ │ │ ├── biblio-n3.data │ │ │ ├── biblio-n4.data │ │ │ ├── biblio-na.data │ │ │ ├── biblio-nd.data │ │ │ ├── biblio-ne.data │ │ │ ├── biblio-nf.data │ │ │ ├── biblio-ng.data │ │ │ ├── biblio-nk.data │ │ │ ├── biblio-nl.data │ │ │ ├── biblio-no.data │ │ │ ├── biblio-np.data │ │ │ ├── biblio-ns.data │ │ │ ├── biblio-nt.data │ │ │ ├── biblio-nv.data │ │ │ ├── biblio-oa.data │ │ │ ├── biblio-ob.data │ │ │ ├── biblio-oc.data │ │ │ ├── biblio-od.data │ │ │ ├── biblio-oe.data │ │ │ ├── biblio-of.data │ │ │ ├── biblio-og.data │ │ │ ├── biblio-oi.data │ │ │ ├── biblio-om.data │ │ │ ├── biblio-op.data │ │ │ ├── biblio-or.data │ │ │ ├── biblio-os.data │ │ │ ├── biblio-ov.data │ │ │ ├── biblio-ow.data │ │ │ ├── biblio-p0.data │ │ │ ├── biblio-p1.data │ │ │ ├── biblio-p2.data │ │ │ ├── biblio-p3.data │ │ │ ├── biblio-p4.data │ │ │ ├── biblio-pa.data │ │ │ ├── biblio-pc.data │ │ │ ├── biblio-pd.data │ │ │ ├── biblio-pe.data │ │ │ ├── biblio-pf.data │ │ │ ├── biblio-pg.data │ │ │ ├── biblio-ph.data │ │ │ ├── biblio-pi.data │ │ │ ├── biblio-pk.data │ │ │ ├── biblio-pl.data │ │ │ ├── biblio-pn.data │ │ │ ├── biblio-po.data │ │ │ ├── biblio-pp.data │ │ │ ├── biblio-pr.data │ │ │ ├── biblio-ps.data │ │ │ ├── biblio-pt.data │ │ │ ├── biblio-pu.data │ │ │ ├── biblio-pw.data │ │ │ ├── biblio-qa.data │ │ │ ├── biblio-qb.data │ │ │ ├── biblio-qn.data │ │ │ ├── biblio-qu.data │ │ │ ├── biblio-r2.data │ │ │ ├── biblio-ra.data │ │ │ ├── biblio-rc.data │ │ │ ├── biblio-rd.data │ │ │ ├── biblio-re.data │ │ │ ├── biblio-rf.data │ │ │ ├── biblio-ri.data │ │ │ ├── biblio-ro.data │ │ │ ├── biblio-rt.data │ │ │ ├── biblio-ru.data │ │ │ ├── biblio-s6.data │ │ │ ├── biblio-sa.data │ │ │ ├── biblio-sc.data │ │ │ ├── biblio-sd.data │ │ │ ├── biblio-se.data │ │ │ ├── biblio-sf.data │ │ │ ├── biblio-sg.data │ │ │ ├── biblio-sh.data │ │ │ ├── biblio-si.data │ │ │ ├── biblio-sk.data │ │ │ ├── biblio-sm.data │ │ │ ├── biblio-sn.data │ │ │ ├── biblio-so.data │ │ │ ├── biblio-sp.data │ │ │ ├── biblio-sr.data │ │ │ ├── biblio-ss.data │ │ │ ├── biblio-st.data │ │ │ ├── biblio-su.data │ │ │ ├── biblio-sv.data │ │ │ ├── biblio-sw.data │ │ │ ├── biblio-sx.data │ │ │ ├── biblio-sy.data │ │ │ ├── biblio-ta.data │ │ │ ├── biblio-tc.data │ │ │ ├── biblio-te.data │ │ │ ├── biblio-th.data │ │ │ ├── biblio-ti.data │ │ │ ├── biblio-tl.data │ │ │ ├── biblio-to.data │ │ │ ├── biblio-tp.data │ │ │ ├── biblio-tr.data │ │ │ ├── biblio-ts.data │ │ │ ├── biblio-tt.data │ │ │ ├── biblio-tu.data │ │ │ ├── biblio-tv.data │ │ │ ├── biblio-ty.data │ │ │ ├── biblio-tz.data │ │ │ ├── biblio-ua.data │ │ │ ├── biblio-uc.data │ │ │ ├── biblio-uf.data │ │ │ ├── biblio-ui.data │ │ │ ├── biblio-um.data │ │ │ ├── biblio-un.data │ │ │ ├── biblio-up.data │ │ │ ├── biblio-ur.data │ │ │ ├── biblio-us.data │ │ │ ├── biblio-ut.data │ │ │ ├── biblio-uw.data │ │ │ ├── biblio-va.data │ │ │ ├── biblio-vb.data │ │ │ ├── biblio-vc.data │ │ │ ├── biblio-ve.data │ │ │ ├── biblio-vi.data │ │ │ ├── biblio-vm.data │ │ │ ├── biblio-vo.data │ │ │ ├── biblio-vs.data │ │ │ ├── biblio-vt.data │ │ │ ├── biblio-vx.data │ │ │ ├── biblio-w3.data │ │ │ ├── biblio-wa.data │ │ │ ├── biblio-wb.data │ │ │ ├── biblio-wc.data │ │ │ ├── biblio-wd.data │ │ │ ├── biblio-we.data │ │ │ ├── biblio-wf.data │ │ │ ├── biblio-wg.data │ │ │ ├── biblio-wh.data │ │ │ ├── biblio-wi.data │ │ │ ├── biblio-wm.data │ │ │ ├── biblio-wo.data │ │ │ ├── biblio-wp.data │ │ │ ├── biblio-ws.data │ │ │ ├── biblio-ww.data │ │ │ ├── biblio-x1.data │ │ │ ├── biblio-x5.data │ │ │ ├── biblio-x6.data │ │ │ ├── biblio-xa.data │ │ │ ├── biblio-xb.data │ │ │ ├── biblio-xd.data │ │ │ ├── biblio-xe.data │ │ │ ├── biblio-xf.data │ │ │ ├── biblio-xh.data │ │ │ ├── biblio-xi.data │ │ │ ├── biblio-xk.data │ │ │ ├── biblio-xl.data │ │ │ ├── biblio-xm.data │ │ │ ├── biblio-xo.data │ │ │ ├── biblio-xp.data │ │ │ ├── biblio-xq.data │ │ │ ├── biblio-xs.data │ │ │ ├── biblio-xt.data │ │ │ ├── biblio-xu.data │ │ │ ├── biblio-ya.data │ │ │ ├── biblio-ze.data │ │ │ ├── biblio-zh.data │ │ │ └── biblio-zi.data │ │ ├── biblio-keys.json │ │ ├── biblio-numeric-suffixes.json │ │ ├── bikeshed-version.txt │ │ ├── boilerplate/ │ │ │ ├── ab/ │ │ │ │ ├── footer.include │ │ │ │ └── status.include │ │ │ ├── abstract.include │ │ │ ├── act-rules-format/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── aom/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults-FD.include │ │ │ │ ├── defaults-PD.include │ │ │ │ ├── defaults-WGA.include │ │ │ │ ├── defaults-WGD.include │ │ │ │ ├── header-FD.include │ │ │ │ └── logo.include │ │ │ ├── audiowg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── browser-testing-tools/ │ │ │ │ ├── status-ED.include │ │ │ │ └── status-WD.include │ │ │ ├── bs-extensions.include │ │ │ ├── byos/ │ │ │ │ ├── abstract.include │ │ │ │ └── defaults.include │ │ │ ├── computed-metadata.include │ │ │ ├── copyright.include │ │ │ ├── cssnext/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-NOTE.include │ │ │ │ ├── footer.include │ │ │ │ ├── header.include │ │ │ │ ├── logo.include │ │ │ │ └── status.include │ │ │ ├── csswg/ │ │ │ │ ├── abstract.include │ │ │ │ ├── computed-metadata.include │ │ │ │ ├── copyright-DREAM.include │ │ │ │ ├── defaults-ED.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer.include │ │ │ │ ├── status.include │ │ │ │ ├── warning-not-ready.include │ │ │ │ └── warning-obsolete.include │ │ │ ├── dap/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-CRD.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ ├── status-NOTE.include │ │ │ │ └── status-WD.include │ │ │ ├── defaults.include │ │ │ ├── doctypes.kdl │ │ │ ├── fedid/ │ │ │ │ ├── status-ED.include │ │ │ │ └── status-FPWD.include │ │ │ ├── fedidcg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ ├── header.include │ │ │ │ └── status.include │ │ │ ├── footer.include │ │ │ ├── fxtf/ │ │ │ │ ├── bs-extensions.include │ │ │ │ ├── defaults-ED.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-CR.include │ │ │ │ ├── footer.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ ├── status-LCWD.include │ │ │ │ └── status-WD.include │ │ │ ├── geolocation/ │ │ │ │ ├── defaults.include │ │ │ │ └── status-ED.include │ │ │ ├── gpuwg/ │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── header.include │ │ │ ├── houdini/ │ │ │ │ ├── bs-extensions.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-NOTE.include │ │ │ │ ├── footer.include │ │ │ │ └── status.include │ │ │ ├── html/ │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-LCWD.include │ │ │ │ ├── status-PR.include │ │ │ │ └── status-WD.include │ │ │ ├── htmlwg/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── httpslocal/ │ │ │ │ ├── copyright.include │ │ │ │ ├── status-CG-DRAFT.include │ │ │ │ └── status-CG-FINAL.include │ │ │ ├── i18n/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ ├── status-WD.include │ │ │ │ ├── warning-not-ready.include │ │ │ │ └── warning-obsolete.include │ │ │ ├── immersivewebwg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-CRD.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── logo.include │ │ │ ├── mediacapture/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── mediawg/ │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── patcg-id/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── ping/ │ │ │ │ ├── defaults.include │ │ │ │ └── status-ED.include │ │ │ ├── privacycg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── header.include │ │ │ │ └── status.include │ │ │ ├── processcg/ │ │ │ │ └── status.include │ │ │ ├── ricg/ │ │ │ │ ├── logo.include │ │ │ │ ├── status-WD.include │ │ │ │ └── status.include │ │ │ ├── sacg/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── secondscreencg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── logo.include │ │ │ │ └── status.include │ │ │ ├── secondscreenwg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── serviceworkers/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ └── status-WD.include │ │ │ ├── solidcg/ │ │ │ │ ├── copyright-CG-DRAFT.include │ │ │ │ ├── copyright-CG-FINAL.include │ │ │ │ ├── status-CG-DRAFT.include │ │ │ │ └── status-CG-FINAL.include │ │ │ ├── status.include │ │ │ ├── stylesheet.include │ │ │ ├── svg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-ED.include │ │ │ │ └── status-WD.include │ │ │ ├── tag/ │ │ │ │ ├── header-WG-NOTE.include │ │ │ │ ├── status-DRAFT-FINDING.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FINDING.include │ │ │ │ ├── status-NOTE.include │ │ │ │ ├── status-UD.include │ │ │ │ ├── status-WG-NOTE.include │ │ │ │ └── status.include │ │ │ ├── tc39/ │ │ │ │ ├── defaults.include │ │ │ │ ├── footer.include │ │ │ │ └── header.include │ │ │ ├── test/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults-DREAM.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-DREAM.include │ │ │ │ ├── footer.include │ │ │ │ ├── header-DREAM.include │ │ │ │ ├── header.include │ │ │ │ └── logo.include │ │ │ ├── texttracks/ │ │ │ │ ├── copyright-CG-DRAFT.include │ │ │ │ ├── defaults-CG-DRAFT.include │ │ │ │ ├── header-CG-DRAFT.include │ │ │ │ ├── header.include │ │ │ │ ├── status-CG-DRAFT.include │ │ │ │ └── status-WD.include │ │ │ ├── uievents/ │ │ │ │ └── status-WD.include │ │ │ ├── w3c/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-NOTE.include │ │ │ │ ├── footer.include │ │ │ │ ├── header.include │ │ │ │ └── logo.include │ │ │ ├── w3t/ │ │ │ │ └── header.include │ │ │ ├── warning-branch.include │ │ │ ├── warning-commit.include │ │ │ ├── warning-custom.include │ │ │ ├── warning-expired.include │ │ │ ├── warning-expires.include │ │ │ ├── warning-new-version.include │ │ │ ├── warning-not-ready.include │ │ │ ├── warning-obsolete.include │ │ │ ├── warning-replaced-by.include │ │ │ ├── wasm/ │ │ │ │ ├── abstract.include │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-CRD.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── web-bluetooth-cg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── web-payments/ │ │ │ │ ├── defaults.include │ │ │ │ └── status-FPWD.include │ │ │ ├── webapps/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-ED.include │ │ │ │ └── status-WD.include │ │ │ ├── webappsec/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-CRD.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ ├── status-LCWD.include │ │ │ │ ├── status-PR.include │ │ │ │ └── status-WD.include │ │ │ ├── webauthn/ │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ └── status-WD.include │ │ │ ├── webediting/ │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── webfontswg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── header-ED.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── webgl/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ ├── header.include │ │ │ │ └── status.include │ │ │ ├── webgpu/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── webml/ │ │ │ │ ├── copyright.include │ │ │ │ ├── logo.include │ │ │ │ └── status.include │ │ │ ├── webmlwg/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-CRD.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── webperf/ │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── webrtc/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── webspecs/ │ │ │ │ ├── defaults.include │ │ │ │ └── header.include │ │ │ ├── webtransport/ │ │ │ │ ├── defaults.include │ │ │ │ ├── status-CR.include │ │ │ │ ├── status-ED.include │ │ │ │ ├── status-FPWD.include │ │ │ │ └── status-WD.include │ │ │ ├── webvr/ │ │ │ │ ├── copyright.include │ │ │ │ └── status.include │ │ │ ├── wecg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ └── status.include │ │ │ ├── wg14/ │ │ │ │ ├── defaults.include │ │ │ │ ├── footer.include │ │ │ │ └── header.include │ │ │ ├── wg21/ │ │ │ │ ├── defaults.include │ │ │ │ ├── footer.include │ │ │ │ └── header.include │ │ │ ├── whatwg/ │ │ │ │ ├── computed-metadata-LS-COMMIT.include │ │ │ │ ├── computed-metadata-LS-PR.include │ │ │ │ ├── computed-metadata-RD.include │ │ │ │ ├── computed-metadata.include │ │ │ │ ├── defaults-RD.include │ │ │ │ ├── defaults.include │ │ │ │ ├── footer-RD.include │ │ │ │ ├── footer.include │ │ │ │ ├── header-RD.include │ │ │ │ ├── header.include │ │ │ │ ├── warning-custom.include │ │ │ │ └── warning-obsolete.include │ │ │ ├── wicg/ │ │ │ │ ├── copyright.include │ │ │ │ ├── defaults.include │ │ │ │ ├── header.include │ │ │ │ └── status.include │ │ │ └── wintercg/ │ │ │ ├── copyright.include │ │ │ └── status.include │ │ ├── caniuse/ │ │ │ ├── data.json │ │ │ ├── feature-aac.json │ │ │ ├── feature-abortcontroller.json │ │ │ ├── feature-accelerometer.json │ │ │ ├── feature-addeventlistener.json │ │ │ ├── feature-ambient-light.json │ │ │ ├── feature-apng.json │ │ │ ├── feature-array-find-index.json │ │ │ ├── feature-array-find.json │ │ │ ├── feature-array-flat.json │ │ │ ├── feature-array-includes.json │ │ │ ├── feature-arrow-functions.json │ │ │ ├── feature-asmjs.json │ │ │ ├── feature-async-clipboard.json │ │ │ ├── feature-async-functions.json │ │ │ ├── feature-atob-btoa.json │ │ │ ├── feature-audio-api.json │ │ │ ├── feature-audio.json │ │ │ ├── feature-audiotracks.json │ │ │ ├── feature-autofocus.json │ │ │ ├── feature-auxclick.json │ │ │ ├── feature-av1.json │ │ │ ├── feature-avif.json │ │ │ ├── feature-background-attachment.json │ │ │ ├── feature-background-clip-text.json │ │ │ ├── feature-background-img-opts.json │ │ │ ├── feature-background-position-x-y.json │ │ │ ├── feature-background-repeat-round-space.json │ │ │ ├── feature-background-sync.json │ │ │ ├── feature-battery-status.json │ │ │ ├── feature-beacon.json │ │ │ ├── feature-beforeafterprint.json │ │ │ ├── feature-bigint.json │ │ │ ├── feature-blobbuilder.json │ │ │ ├── feature-bloburls.json │ │ │ ├── feature-border-image.json │ │ │ ├── feature-border-radius.json │ │ │ ├── feature-broadcastchannel.json │ │ │ ├── feature-brotli.json │ │ │ ├── feature-calc.json │ │ │ ├── feature-canvas-blending.json │ │ │ ├── feature-canvas-text.json │ │ │ ├── feature-canvas.json │ │ │ ├── feature-ch-unit.json │ │ │ ├── feature-chacha20-poly1305.json │ │ │ ├── feature-channel-messaging.json │ │ │ ├── feature-childnode-remove.json │ │ │ ├── feature-classlist.json │ │ │ ├── feature-client-hints-dpr-width-viewport.json │ │ │ ├── feature-clipboard.json │ │ │ ├── feature-colr-v1.json │ │ │ ├── feature-colr.json │ │ │ ├── feature-comparedocumentposition.json │ │ │ ├── feature-console-basic.json │ │ │ ├── feature-console-time.json │ │ │ ├── feature-const.json │ │ │ ├── feature-constraint-validation.json │ │ │ ├── feature-contenteditable.json │ │ │ ├── feature-contentsecuritypolicy.json │ │ │ ├── feature-contentsecuritypolicy2.json │ │ │ ├── feature-cookie-store-api.json │ │ │ ├── feature-cors.json │ │ │ ├── feature-createimagebitmap.json │ │ │ ├── feature-credential-management.json │ │ │ ├── feature-cryptography.json │ │ │ ├── feature-css-all.json │ │ │ ├── feature-css-anchor-positioning.json │ │ │ ├── feature-css-animation.json │ │ │ ├── feature-css-any-link.json │ │ │ ├── feature-css-appearance.json │ │ │ ├── feature-css-at-counter-style.json │ │ │ ├── feature-css-backdrop-filter.json │ │ │ ├── feature-css-background-offsets.json │ │ │ ├── feature-css-backgroundblendmode.json │ │ │ ├── feature-css-boxdecorationbreak.json │ │ │ ├── feature-css-boxshadow.json │ │ │ ├── feature-css-canvas.json │ │ │ ├── feature-css-caret-color.json │ │ │ ├── feature-css-cascade-layers.json │ │ │ ├── feature-css-cascade-scope.json │ │ │ ├── feature-css-case-insensitive.json │ │ │ ├── feature-css-clip-path.json │ │ │ ├── feature-css-color-adjust.json │ │ │ ├── feature-css-color-function.json │ │ │ ├── feature-css-conic-gradients.json │ │ │ ├── feature-css-container-queries-style.json │ │ │ ├── feature-css-container-queries.json │ │ │ ├── feature-css-container-query-units.json │ │ │ ├── feature-css-containment.json │ │ │ ├── feature-css-content-visibility.json │ │ │ ├── feature-css-counters.json │ │ │ ├── feature-css-crisp-edges.json │ │ │ ├── feature-css-cross-fade.json │ │ │ ├── feature-css-default-pseudo.json │ │ │ ├── feature-css-descendant-gtgt.json │ │ │ ├── feature-css-deviceadaptation.json │ │ │ ├── feature-css-dir-pseudo.json │ │ │ ├── feature-css-display-contents.json │ │ │ ├── feature-css-element-function.json │ │ │ ├── feature-css-env-function.json │ │ │ ├── feature-css-exclusions.json │ │ │ ├── feature-css-featurequeries.json │ │ │ ├── feature-css-filter-function.json │ │ │ ├── feature-css-filters.json │ │ │ ├── feature-css-first-letter.json │ │ │ ├── feature-css-first-line.json │ │ │ ├── feature-css-fixed.json │ │ │ ├── feature-css-focus-visible.json │ │ │ ├── feature-css-focus-within.json │ │ │ ├── feature-css-font-palette.json │ │ │ ├── feature-css-font-rendering-controls.json │ │ │ ├── feature-css-font-stretch.json │ │ │ ├── feature-css-gencontent.json │ │ │ ├── feature-css-gradients.json │ │ │ ├── feature-css-grid.json │ │ │ ├── feature-css-hanging-punctuation.json │ │ │ ├── feature-css-has.json │ │ │ ├── feature-css-hyphens.json │ │ │ ├── feature-css-image-orientation.json │ │ │ ├── feature-css-image-set.json │ │ │ ├── feature-css-in-out-of-range.json │ │ │ ├── feature-css-indeterminate-pseudo.json │ │ │ ├── feature-css-initial-letter.json │ │ │ ├── feature-css-initial-value.json │ │ │ ├── feature-css-lch-lab.json │ │ │ ├── feature-css-letter-spacing.json │ │ │ ├── feature-css-line-clamp.json │ │ │ ├── feature-css-logical-props.json │ │ │ ├── feature-css-marker-pseudo.json │ │ │ ├── feature-css-masks.json │ │ │ ├── feature-css-matches-pseudo.json │ │ │ ├── feature-css-math-functions.json │ │ │ ├── feature-css-media-interaction.json │ │ │ ├── feature-css-media-range-syntax.json │ │ │ ├── feature-css-media-resolution.json │ │ │ ├── feature-css-mediaqueries.json │ │ │ ├── feature-css-mixblendmode.json │ │ │ ├── feature-css-motion-paths.json │ │ │ ├── feature-css-namespaces.json │ │ │ ├── feature-css-nesting.json │ │ │ ├── feature-css-not-sel-list.json │ │ │ ├── feature-css-nth-child-of.json │ │ │ ├── feature-css-opacity.json │ │ │ ├── feature-css-optional-pseudo.json │ │ │ ├── feature-css-overflow-anchor.json │ │ │ ├── feature-css-overflow-overlay.json │ │ │ ├── feature-css-overflow.json │ │ │ ├── feature-css-overscroll-behavior.json │ │ │ ├── feature-css-page-break.json │ │ │ ├── feature-css-paged-media.json │ │ │ ├── feature-css-paint-api.json │ │ │ ├── feature-css-placeholder-shown.json │ │ │ ├── feature-css-placeholder.json │ │ │ ├── feature-css-read-only-write.json │ │ │ ├── feature-css-rebeccapurple.json │ │ │ ├── feature-css-reflections.json │ │ │ ├── feature-css-regions.json │ │ │ ├── feature-css-relative-colors.json │ │ │ ├── feature-css-repeating-gradients.json │ │ │ ├── feature-css-resize.json │ │ │ ├── feature-css-revert-value.json │ │ │ ├── feature-css-rrggbbaa.json │ │ │ ├── feature-css-scroll-behavior.json │ │ │ ├── feature-css-scrollbar.json │ │ │ ├── feature-css-sel2.json │ │ │ ├── feature-css-sel3.json │ │ │ ├── feature-css-selection.json │ │ │ ├── feature-css-shapes.json │ │ │ ├── feature-css-snappoints.json │ │ │ ├── feature-css-sticky.json │ │ │ ├── feature-css-subgrid.json │ │ │ ├── feature-css-supports-api.json │ │ │ ├── feature-css-table.json │ │ │ ├── feature-css-text-align-last.json │ │ │ ├── feature-css-text-box-trim.json │ │ │ ├── feature-css-text-indent.json │ │ │ ├── feature-css-text-justify.json │ │ │ ├── feature-css-text-orientation.json │ │ │ ├── feature-css-text-wrap-balance.json │ │ │ ├── feature-css-textshadow.json │ │ │ ├── feature-css-touch-action.json │ │ │ ├── feature-css-transitions.json │ │ │ ├── feature-css-unset-value.json │ │ │ ├── feature-css-variables.json │ │ │ ├── feature-css-when-else.json │ │ │ ├── feature-css-widows-orphans.json │ │ │ ├── feature-css-writing-mode.json │ │ │ ├── feature-css-zoom.json │ │ │ ├── feature-css3-attr.json │ │ │ ├── feature-css3-boxsizing.json │ │ │ ├── feature-css3-colors.json │ │ │ ├── feature-css3-cursors-grab.json │ │ │ ├── feature-css3-cursors-newer.json │ │ │ ├── feature-css3-cursors.json │ │ │ ├── feature-css3-tabsize.json │ │ │ ├── feature-currentcolor.json │ │ │ ├── feature-custom-elements.json │ │ │ ├── feature-custom-elementsv1.json │ │ │ ├── feature-customevent.json │ │ │ ├── feature-datalist.json │ │ │ ├── feature-dataset.json │ │ │ ├── feature-datauri.json │ │ │ ├── feature-date-tolocaledatestring.json │ │ │ ├── feature-declarative-shadow-dom.json │ │ │ ├── feature-decorators.json │ │ │ ├── feature-details.json │ │ │ ├── feature-deviceorientation.json │ │ │ ├── feature-devicepixelratio.json │ │ │ ├── feature-dialog.json │ │ │ ├── feature-dispatchevent.json │ │ │ ├── feature-dnssec.json │ │ │ ├── feature-do-not-track.json │ │ │ ├── feature-document-currentscript.json │ │ │ ├── feature-document-evaluate-xpath.json │ │ │ ├── feature-document-execcommand.json │ │ │ ├── feature-document-policy.json │ │ │ ├── feature-document-scrollingelement.json │ │ │ ├── feature-documenthead.json │ │ │ ├── feature-dom-manip-convenience.json │ │ │ ├── feature-dom-range.json │ │ │ ├── feature-domcontentloaded.json │ │ │ ├── feature-dommatrix.json │ │ │ ├── feature-download.json │ │ │ ├── feature-dragndrop.json │ │ │ ├── feature-element-closest.json │ │ │ ├── feature-element-from-point.json │ │ │ ├── feature-element-scroll-methods.json │ │ │ ├── feature-eme.json │ │ │ ├── feature-eot.json │ │ │ ├── feature-es5.json │ │ │ ├── feature-es6-class.json │ │ │ ├── feature-es6-generators.json │ │ │ ├── feature-es6-module-dynamic-import.json │ │ │ ├── feature-es6-module.json │ │ │ ├── feature-es6-number.json │ │ │ ├── feature-es6-string-includes.json │ │ │ ├── feature-es6.json │ │ │ ├── feature-eventsource.json │ │ │ ├── feature-extended-system-fonts.json │ │ │ ├── feature-feature-policy.json │ │ │ ├── feature-fetch.json │ │ │ ├── feature-fieldset-disabled.json │ │ │ ├── feature-fileapi.json │ │ │ ├── feature-filereader.json │ │ │ ├── feature-filereadersync.json │ │ │ ├── feature-filesystem.json │ │ │ ├── feature-flac.json │ │ │ ├── feature-flexbox-gap.json │ │ │ ├── feature-flexbox.json │ │ │ ├── feature-flow-root.json │ │ │ ├── feature-focusin-focusout-events.json │ │ │ ├── feature-font-family-system-ui.json │ │ │ ├── feature-font-feature.json │ │ │ ├── feature-font-kerning.json │ │ │ ├── feature-font-loading.json │ │ │ ├── feature-font-size-adjust.json │ │ │ ├── feature-font-smooth.json │ │ │ ├── feature-font-unicode-range.json │ │ │ ├── feature-font-variant-alternates.json │ │ │ ├── feature-font-variant-numeric.json │ │ │ ├── feature-fontface.json │ │ │ ├── feature-form-attribute.json │ │ │ ├── feature-form-submit-attributes.json │ │ │ ├── feature-form-validation.json │ │ │ ├── feature-fullscreen.json │ │ │ ├── feature-gamepad.json │ │ │ ├── feature-geolocation.json │ │ │ ├── feature-getboundingclientrect.json │ │ │ ├── feature-getcomputedstyle.json │ │ │ ├── feature-getelementsbyclassname.json │ │ │ ├── feature-getrandomvalues.json │ │ │ ├── feature-gyroscope.json │ │ │ ├── feature-hardwareconcurrency.json │ │ │ ├── feature-hashchange.json │ │ │ ├── feature-heif.json │ │ │ ├── feature-hevc.json │ │ │ ├── feature-hidden.json │ │ │ ├── feature-high-resolution-time.json │ │ │ ├── feature-history.json │ │ │ ├── feature-html-media-capture.json │ │ │ ├── feature-html5semantic.json │ │ │ ├── feature-http-live-streaming.json │ │ │ ├── feature-http2.json │ │ │ ├── feature-http3.json │ │ │ ├── feature-iframe-sandbox.json │ │ │ ├── feature-iframe-seamless.json │ │ │ ├── feature-iframe-srcdoc.json │ │ │ ├── feature-imagecapture.json │ │ │ ├── feature-ime.json │ │ │ ├── feature-img-naturalwidth-naturalheight.json │ │ │ ├── feature-import-maps.json │ │ │ ├── feature-imports.json │ │ │ ├── feature-indeterminate-checkbox.json │ │ │ ├── feature-indexeddb.json │ │ │ ├── feature-indexeddb2.json │ │ │ ├── feature-inline-block.json │ │ │ ├── feature-innertext.json │ │ │ ├── feature-input-autocomplete-onoff.json │ │ │ ├── feature-input-color.json │ │ │ ├── feature-input-datetime.json │ │ │ ├── feature-input-email-tel-url.json │ │ │ ├── feature-input-event.json │ │ │ ├── feature-input-file-accept.json │ │ │ ├── feature-input-file-directory.json │ │ │ ├── feature-input-file-multiple.json │ │ │ ├── feature-input-inputmode.json │ │ │ ├── feature-input-minlength.json │ │ │ ├── feature-input-number.json │ │ │ ├── feature-input-pattern.json │ │ │ ├── feature-input-placeholder.json │ │ │ ├── feature-input-range.json │ │ │ ├── feature-input-search.json │ │ │ ├── feature-input-selection.json │ │ │ ├── feature-insert-adjacent.json │ │ │ ├── feature-insertadjacenthtml.json │ │ │ ├── feature-internationalization.json │ │ │ ├── feature-intersectionobserver-v2.json │ │ │ ├── feature-intersectionobserver.json │ │ │ ├── feature-intl-pluralrules.json │ │ │ ├── feature-intrinsic-width.json │ │ │ ├── feature-jpeg2000.json │ │ │ ├── feature-jpegxl.json │ │ │ ├── feature-jpegxr.json │ │ │ ├── feature-js-regexp-lookbehind.json │ │ │ ├── feature-json.json │ │ │ ├── feature-justify-content-space-evenly.json │ │ │ ├── feature-kerning-pairs-ligatures.json │ │ │ ├── feature-keyboardevent-charcode.json │ │ │ ├── feature-keyboardevent-code.json │ │ │ ├── feature-keyboardevent-getmodifierstate.json │ │ │ ├── feature-keyboardevent-key.json │ │ │ ├── feature-keyboardevent-location.json │ │ │ ├── feature-keyboardevent-which.json │ │ │ ├── feature-lazyload.json │ │ │ ├── feature-let.json │ │ │ ├── feature-link-icon-png.json │ │ │ ├── feature-link-icon-svg.json │ │ │ ├── feature-link-rel-dns-prefetch.json │ │ │ ├── feature-link-rel-modulepreload.json │ │ │ ├── feature-link-rel-preconnect.json │ │ │ ├── feature-link-rel-prefetch.json │ │ │ ├── feature-link-rel-preload.json │ │ │ ├── feature-link-rel-prerender.json │ │ │ ├── feature-loading-lazy-attr.json │ │ │ ├── feature-localecompare.json │ │ │ ├── feature-magnetometer.json │ │ │ ├── feature-matchesselector.json │ │ │ ├── feature-matchmedia.json │ │ │ ├── feature-mathml.json │ │ │ ├── feature-maxlength.json │ │ │ ├── feature-media-fragments.json │ │ │ ├── feature-mediacapture-fromelement.json │ │ │ ├── feature-mediarecorder.json │ │ │ ├── feature-mediasource.json │ │ │ ├── feature-menu.json │ │ │ ├── feature-meta-theme-color.json │ │ │ ├── feature-meter.json │ │ │ ├── feature-midi.json │ │ │ ├── feature-minmaxwh.json │ │ │ ├── feature-mp3.json │ │ │ ├── feature-mpeg-dash.json │ │ │ ├── feature-mpeg4.json │ │ │ ├── feature-multibackgrounds.json │ │ │ ├── feature-multicolumn.json │ │ │ ├── feature-mutation-events.json │ │ │ ├── feature-mutationobserver.json │ │ │ ├── feature-namevalue-storage.json │ │ │ ├── feature-native-filesystem-api.json │ │ │ ├── feature-nav-timing.json │ │ │ ├── feature-netinfo.json │ │ │ ├── feature-notifications.json │ │ │ ├── feature-object-entries.json │ │ │ ├── feature-object-fit.json │ │ │ ├── feature-object-observe.json │ │ │ ├── feature-object-values.json │ │ │ ├── feature-objectrtc.json │ │ │ ├── feature-offline-apps.json │ │ │ ├── feature-offscreencanvas.json │ │ │ ├── feature-ogg-vorbis.json │ │ │ ├── feature-ogv.json │ │ │ ├── feature-ol-reversed.json │ │ │ ├── feature-once-event-listener.json │ │ │ ├── feature-online-status.json │ │ │ ├── feature-opus.json │ │ │ ├── feature-orientation-sensor.json │ │ │ ├── feature-outline.json │ │ │ ├── feature-pad-start-end.json │ │ │ ├── feature-page-transition-events.json │ │ │ ├── feature-pagevisibility.json │ │ │ ├── feature-passive-event-listener.json │ │ │ ├── feature-passkeys.json │ │ │ ├── feature-path2d.json │ │ │ ├── feature-payment-request.json │ │ │ ├── feature-pdf-viewer.json │ │ │ ├── feature-permissions-api.json │ │ │ ├── feature-permissions-policy.json │ │ │ ├── feature-picture-in-picture.json │ │ │ ├── feature-picture.json │ │ │ ├── feature-ping.json │ │ │ ├── feature-png-alpha.json │ │ │ ├── feature-pointer-events.json │ │ │ ├── feature-pointer.json │ │ │ ├── feature-pointerlock.json │ │ │ ├── feature-portals.json │ │ │ ├── feature-prefers-color-scheme.json │ │ │ ├── feature-prefers-reduced-motion.json │ │ │ ├── feature-progress.json │ │ │ ├── feature-promise-finally.json │ │ │ ├── feature-promises.json │ │ │ ├── feature-proximity.json │ │ │ ├── feature-proxy.json │ │ │ ├── feature-publickeypinning.json │ │ │ ├── feature-push-api.json │ │ │ ├── feature-queryselector.json │ │ │ ├── feature-readonly-attr.json │ │ │ ├── feature-referrer-policy.json │ │ │ ├── feature-registerprotocolhandler.json │ │ │ ├── feature-rel-noopener.json │ │ │ ├── feature-rel-noreferrer.json │ │ │ ├── feature-rellist.json │ │ │ ├── feature-rem.json │ │ │ ├── feature-requestanimationframe.json │ │ │ ├── feature-requestidlecallback.json │ │ │ ├── feature-resizeobserver.json │ │ │ ├── feature-resource-timing.json │ │ │ ├── feature-rest-parameters.json │ │ │ ├── feature-rtcpeerconnection.json │ │ │ ├── feature-ruby.json │ │ │ ├── feature-run-in.json │ │ │ ├── feature-same-site-cookie-attribute.json │ │ │ ├── feature-screen-orientation.json │ │ │ ├── feature-script-async.json │ │ │ ├── feature-script-defer.json │ │ │ ├── feature-scrollintoview.json │ │ │ ├── feature-scrollintoviewifneeded.json │ │ │ ├── feature-sdch.json │ │ │ ├── feature-selection-api.json │ │ │ ├── feature-selectlist.json │ │ │ ├── feature-server-timing.json │ │ │ ├── feature-serviceworkers.json │ │ │ ├── feature-setimmediate.json │ │ │ ├── feature-shadowdom.json │ │ │ ├── feature-shadowdomv1.json │ │ │ ├── feature-sharedarraybuffer.json │ │ │ ├── feature-sharedworkers.json │ │ │ ├── feature-sni.json │ │ │ ├── feature-spdy.json │ │ │ ├── feature-speech-recognition.json │ │ │ ├── feature-speech-synthesis.json │ │ │ ├── feature-spellcheck-attribute.json │ │ │ ├── feature-sql-storage.json │ │ │ ├── feature-srcset.json │ │ │ ├── feature-stream.json │ │ │ ├── feature-streams.json │ │ │ ├── feature-stricttransportsecurity.json │ │ │ ├── feature-style-scoped.json │ │ │ ├── feature-subresource-integrity.json │ │ │ ├── feature-svg-css.json │ │ │ ├── feature-svg-filters.json │ │ │ ├── feature-svg-fonts.json │ │ │ ├── feature-svg-fragment.json │ │ │ ├── feature-svg-html.json │ │ │ ├── feature-svg-html5.json │ │ │ ├── feature-svg-img.json │ │ │ ├── feature-svg-smil.json │ │ │ ├── feature-svg.json │ │ │ ├── feature-sxg.json │ │ │ ├── feature-tabindex-attr.json │ │ │ ├── feature-template-literals.json │ │ │ ├── feature-template.json │ │ │ ├── feature-temporal.json │ │ │ ├── feature-text-decoration.json │ │ │ ├── feature-text-emphasis.json │ │ │ ├── feature-text-overflow.json │ │ │ ├── feature-text-size-adjust.json │ │ │ ├── feature-text-stroke.json │ │ │ ├── feature-textcontent.json │ │ │ ├── feature-textencoder.json │ │ │ ├── feature-tls1-1.json │ │ │ ├── feature-tls1-2.json │ │ │ ├── feature-tls1-3.json │ │ │ ├── feature-touch.json │ │ │ ├── feature-transforms2d.json │ │ │ ├── feature-transforms3d.json │ │ │ ├── feature-trusted-types.json │ │ │ ├── feature-ttf.json │ │ │ ├── feature-typedarrays.json │ │ │ ├── feature-u2f.json │ │ │ ├── feature-unhandledrejection.json │ │ │ ├── feature-upgradeinsecurerequests.json │ │ │ ├── feature-url-scroll-to-text-fragment.json │ │ │ ├── feature-url.json │ │ │ ├── feature-urlsearchparams.json │ │ │ ├── feature-use-strict.json │ │ │ ├── feature-user-select-none.json │ │ │ ├── feature-user-timing.json │ │ │ ├── feature-variable-fonts.json │ │ │ ├── feature-vector-effect.json │ │ │ ├── feature-vibration.json │ │ │ ├── feature-video.json │ │ │ ├── feature-videotracks.json │ │ │ ├── feature-view-transitions.json │ │ │ ├── feature-viewport-unit-variants.json │ │ │ ├── feature-viewport-units.json │ │ │ ├── feature-wai-aria.json │ │ │ ├── feature-wake-lock.json │ │ │ ├── feature-wasm-bigint.json │ │ │ ├── feature-wasm-bulk-memory.json │ │ │ ├── feature-wasm-multi-value.json │ │ │ ├── feature-wasm-mutable-globals.json │ │ │ ├── feature-wasm-nontrapping-fptoint.json │ │ │ ├── feature-wasm-reference-types.json │ │ │ ├── feature-wasm-signext.json │ │ │ ├── feature-wasm-simd.json │ │ │ ├── feature-wasm-threads.json │ │ │ ├── feature-wasm.json │ │ │ ├── feature-wav.json │ │ │ ├── feature-wbr-element.json │ │ │ ├── feature-web-animation.json │ │ │ ├── feature-web-bluetooth.json │ │ │ ├── feature-web-serial.json │ │ │ ├── feature-web-share.json │ │ │ ├── feature-webauthn.json │ │ │ ├── feature-webcodecs.json │ │ │ ├── feature-webgl.json │ │ │ ├── feature-webgl2.json │ │ │ ├── feature-webgpu.json │ │ │ ├── feature-webhid.json │ │ │ ├── feature-webkit-user-drag.json │ │ │ ├── feature-webm.json │ │ │ ├── feature-webnfc.json │ │ │ ├── feature-webp.json │ │ │ ├── feature-websockets.json │ │ │ ├── feature-webtransport.json │ │ │ ├── feature-webusb.json │ │ │ ├── feature-webvr.json │ │ │ ├── feature-webvtt.json │ │ │ ├── feature-webworkers.json │ │ │ ├── feature-webxr.json │ │ │ ├── feature-will-change.json │ │ │ ├── feature-woff.json │ │ │ ├── feature-woff2.json │ │ │ ├── feature-word-break.json │ │ │ ├── feature-wordwrap.json │ │ │ ├── feature-x-doc-messaging.json │ │ │ ├── feature-x-frame-options.json │ │ │ ├── feature-xhr2.json │ │ │ ├── feature-xhtml.json │ │ │ ├── feature-xhtmlsmil.json │ │ │ ├── feature-xml-serializer.json │ │ │ └── feature-zstd.json │ │ ├── caniuse.json │ │ ├── fors.json │ │ ├── github-issues.json │ │ ├── headings/ │ │ │ ├── headings-accelerometer.json │ │ │ ├── headings-accname-1.2.json │ │ │ ├── headings-afgs1-spec.json │ │ │ ├── headings-ambient-light.json │ │ │ ├── headings-anchors.json │ │ │ ├── headings-anonymous-iframe.json │ │ │ ├── headings-appmanifest.json │ │ │ ├── headings-at-driver.json │ │ │ ├── headings-attribution-reporting-api.json │ │ │ ├── headings-audio-output.json │ │ │ ├── headings-audio-session.json │ │ │ ├── headings-audiobooks.json │ │ │ ├── headings-autoplay-detection.json │ │ │ ├── headings-av1-avif.json │ │ │ ├── headings-av1-hdr10plus.json │ │ │ ├── headings-av1-isobmff.json │ │ │ ├── headings-av1-mpeg2-ts.json │ │ │ ├── headings-av1-rtp-spec.json │ │ │ ├── headings-av1-spec.json │ │ │ ├── headings-background-fetch.json │ │ │ ├── headings-background-sync.json │ │ │ ├── headings-badging.json │ │ │ ├── headings-battery-status.json │ │ │ ├── headings-beacon.json │ │ │ ├── headings-capability-delegation.json │ │ │ ├── headings-capture-handle-identity.json │ │ │ ├── headings-captured-mouse-events.json │ │ │ ├── headings-change-password-url.json │ │ │ ├── headings-clear-site-data.json │ │ │ ├── headings-client-hint-reliability.json │ │ │ ├── headings-client-hints-infrastructure.json │ │ │ ├── headings-clipboard-apis.json │ │ │ ├── headings-compat.json │ │ │ ├── headings-compositing-1.json │ │ │ ├── headings-compositing-2.json │ │ │ ├── headings-compression.json │ │ │ ├── headings-compute-pressure.json │ │ │ ├── headings-console.json │ │ │ ├── headings-contact-picker.json │ │ │ ├── headings-content-index.json │ │ │ ├── headings-contenteditable.json │ │ │ ├── headings-cookie-store.json │ │ │ ├── headings-core-aam-1.2.json │ │ │ ├── headings-crash-reporting.json │ │ │ ├── headings-credential-management-1.json │ │ │ ├── headings-csp-embedded-enforcement.json │ │ │ ├── headings-csp-next.json │ │ │ ├── headings-csp3.json │ │ │ ├── headings-css-2022.json │ │ │ ├── headings-css-2023.json │ │ │ ├── headings-css-align-3.json │ │ │ ├── headings-css-anchor-position-1.json │ │ │ ├── headings-css-animation-worklet-1.json │ │ │ ├── headings-css-animations-1.json │ │ │ ├── headings-css-animations-2.json │ │ │ ├── headings-css-backgrounds-3.json │ │ │ ├── headings-css-backgrounds-4.json │ │ │ ├── headings-css-borders-4.json │ │ │ ├── headings-css-box-3.json │ │ │ ├── headings-css-box-4.json │ │ │ ├── headings-css-break-3.json │ │ │ ├── headings-css-break-4.json │ │ │ ├── headings-css-cascade-3.json │ │ │ ├── headings-css-cascade-4.json │ │ │ ├── headings-css-cascade-5.json │ │ │ ├── headings-css-cascade-6.json │ │ │ ├── headings-css-color-3.json │ │ │ ├── headings-css-color-4.json │ │ │ ├── headings-css-color-5.json │ │ │ ├── headings-css-color-6.json │ │ │ ├── headings-css-color-adjust-1.json │ │ │ ├── headings-css-color-hdr.json │ │ │ ├── headings-css-conditional-3.json │ │ │ ├── headings-css-conditional-4.json │ │ │ ├── headings-css-conditional-5.json │ │ │ ├── headings-css-conditional-values-1.json │ │ │ ├── headings-css-contain-1.json │ │ │ ├── headings-css-contain-2.json │ │ │ ├── headings-css-contain-3.json │ │ │ ├── headings-css-content-3.json │ │ │ ├── headings-css-counter-styles-3.json │ │ │ ├── headings-css-display-3.json │ │ │ ├── headings-css-display-4.json │ │ │ ├── headings-css-easing-1.json │ │ │ ├── headings-css-easing-2.json │ │ │ ├── headings-css-env-1.json │ │ │ ├── headings-css-extensions-1.json │ │ │ ├── headings-css-flexbox-1.json │ │ │ ├── headings-css-font-loading-3.json │ │ │ ├── headings-css-fonts-4.json │ │ │ ├── headings-css-fonts-5.json │ │ │ ├── headings-css-forms-1.json │ │ │ ├── headings-css-gcpm-3.json │ │ │ ├── headings-css-gcpm-4.json │ │ │ ├── headings-css-grid-1.json │ │ │ ├── headings-css-grid-2.json │ │ │ ├── headings-css-grid-3.json │ │ │ ├── headings-css-highlight-api-1.json │ │ │ ├── headings-css-images-3.json │ │ │ ├── headings-css-images-4.json │ │ │ ├── headings-css-images-5.json │ │ │ ├── headings-css-inline-3.json │ │ │ ├── headings-css-layout-api-1.json │ │ │ ├── headings-css-line-grid-1.json │ │ │ ├── headings-css-link-params-1.json │ │ │ ├── headings-css-lists-3.json │ │ │ ├── headings-css-logical-1.json │ │ │ ├── headings-css-masking-1.json │ │ │ ├── headings-css-mixins-1.json │ │ │ ├── headings-css-multicol-1.json │ │ │ ├── headings-css-multicol-2.json │ │ │ ├── headings-css-namespaces-3.json │ │ │ ├── headings-css-nav-1.json │ │ │ ├── headings-css-nesting-1.json │ │ │ ├── headings-css-overflow-3.json │ │ │ ├── headings-css-overflow-4.json │ │ │ ├── headings-css-overflow-5.json │ │ │ ├── headings-css-overscroll-1.json │ │ │ ├── headings-css-page-3.json │ │ │ ├── headings-css-page-4.json │ │ │ ├── headings-css-page-floats-3.json │ │ │ ├── headings-css-paint-api-1.json │ │ │ ├── headings-css-parser-api.json │ │ │ ├── headings-css-position-3.json │ │ │ ├── headings-css-position-4.json │ │ │ ├── headings-css-properties-values-api-1.json │ │ │ ├── headings-css-pseudo-4.json │ │ │ ├── headings-css-regions-1.json │ │ │ ├── headings-css-rhythm-1.json │ │ │ ├── headings-css-round-display-1.json │ │ │ ├── headings-css-ruby-1.json │ │ │ ├── headings-css-scoping-1.json │ │ │ ├── headings-css-scroll-anchoring-1.json │ │ │ ├── headings-css-scroll-snap-1.json │ │ │ ├── headings-css-scroll-snap-2.json │ │ │ ├── headings-css-scrollbars-1.json │ │ │ ├── headings-css-shadow-parts-1.json │ │ │ ├── headings-css-shapes-1.json │ │ │ ├── headings-css-shapes-2.json │ │ │ ├── headings-css-size-adjust-1.json │ │ │ ├── headings-css-sizing-3.json │ │ │ ├── headings-css-sizing-4.json │ │ │ ├── headings-css-speech-1.json │ │ │ ├── headings-css-style-attr.json │ │ │ ├── headings-css-syntax-3.json │ │ │ ├── headings-css-tables-3.json │ │ │ ├── headings-css-text-3.json │ │ │ ├── headings-css-text-4.json │ │ │ ├── headings-css-text-decor-3.json │ │ │ ├── headings-css-text-decor-4.json │ │ │ ├── headings-css-transforms-1.json │ │ │ ├── headings-css-transforms-2.json │ │ │ ├── headings-css-transitions-1.json │ │ │ ├── headings-css-transitions-2.json │ │ │ ├── headings-css-typed-om-1.json │ │ │ ├── headings-css-typed-om-2.json │ │ │ ├── headings-css-ui-3.json │ │ │ ├── headings-css-ui-4.json │ │ │ ├── headings-css-values-3.json │ │ │ ├── headings-css-values-4.json │ │ │ ├── headings-css-values-5.json │ │ │ ├── headings-css-variables-1.json │ │ │ ├── headings-css-variables-2.json │ │ │ ├── headings-css-view-transitions-1.json │ │ │ ├── headings-css-view-transitions-2.json │ │ │ ├── headings-css-viewport-1.json │ │ │ ├── headings-css-will-change-1.json │ │ │ ├── headings-css-writing-modes-3.json │ │ │ ├── headings-css-writing-modes-4.json │ │ │ ├── headings-css2.json │ │ │ ├── headings-css22.json │ │ │ ├── headings-css3-exclusions.json │ │ │ ├── headings-cssom-1.json │ │ │ ├── headings-cssom-view-1.json │ │ │ ├── headings-datacue.json │ │ │ ├── headings-deprecation-reporting.json │ │ │ ├── headings-device-attributes.json │ │ │ ├── headings-device-memory-1.json │ │ │ ├── headings-device-posture.json │ │ │ ├── headings-digital-credentials.json │ │ │ ├── headings-digital-goods.json │ │ │ ├── headings-direct-sockets.json │ │ │ ├── headings-document-picture-in-picture.json │ │ │ ├── headings-document-policy.json │ │ │ ├── headings-dom-level-2-style.json │ │ │ ├── headings-dom-parsing.json │ │ │ ├── headings-dom.json │ │ │ ├── headings-dpub-aam-1.1.json │ │ │ ├── headings-dpub-aria-1.1.json │ │ │ ├── headings-ecma-402.json │ │ │ ├── headings-ecmascript.json │ │ │ ├── headings-edit-context.json │ │ │ ├── headings-element-capture.json │ │ │ ├── headings-element-timing.json │ │ │ ├── headings-eme-hdcp-version-registry.json │ │ │ ├── headings-eme-initdata-cenc.json │ │ │ ├── headings-eme-initdata-keyids.json │ │ │ ├── headings-eme-initdata-registry.json │ │ │ ├── headings-eme-initdata-webm.json │ │ │ ├── headings-eme-stream-mp4.json │ │ │ ├── headings-eme-stream-registry.json │ │ │ ├── headings-eme-stream-webm.json │ │ │ ├── headings-encoding.json │ │ │ ├── headings-encrypted-media-2.json │ │ │ ├── headings-entries-api.json │ │ │ ├── headings-epub-33.json │ │ │ ├── headings-epub-rs-33.json │ │ │ ├── headings-essl.json │ │ │ ├── headings-event-timing.json │ │ │ ├── headings-execcommand.json │ │ │ ├── headings-eyedropper-api.json │ │ │ ├── headings-fedcm-1.json │ │ │ ├── headings-fenced-frame.json │ │ │ ├── headings-fetch-metadata.json │ │ │ ├── headings-fetch.json │ │ │ ├── headings-fido-v2.1.json │ │ │ ├── headings-file-system-access.json │ │ │ ├── headings-fileapi.json │ │ │ ├── headings-fill-stroke-3.json │ │ │ ├── headings-filter-effects-1.json │ │ │ ├── headings-filter-effects-2.json │ │ │ ├── headings-fingerprinting-guidance.json │ │ │ ├── headings-first-party-sets.json │ │ │ ├── headings-font-metrics-api-1.json │ │ │ ├── headings-fs.json │ │ │ ├── headings-fullscreen.json │ │ │ ├── headings-gamepad-extensions.json │ │ │ ├── headings-gamepad.json │ │ │ ├── headings-generic-sensor.json │ │ │ ├── headings-geolocation-sensor.json │ │ │ ├── headings-geolocation.json │ │ │ ├── headings-geometry-1.json │ │ │ ├── headings-get-installed-related-apps.json │ │ │ ├── headings-gltf.json │ │ │ ├── headings-gpc-spec.json │ │ │ ├── headings-graphics-aam-1.0.json │ │ │ ├── headings-graphics-aria-1.0.json │ │ │ ├── headings-gyroscope.json │ │ │ ├── headings-handwriting-recognition.json │ │ │ ├── headings-hr-time-3.json │ │ │ ├── headings-html-aam-1.0.json │ │ │ ├── headings-html-aria.json │ │ │ ├── headings-html-media-capture.json │ │ │ ├── headings-html-ruby-extensions.json │ │ │ ├── headings-html.json │ │ │ ├── headings-i18n-glossary.json │ │ │ ├── headings-idle-detection.json │ │ │ ├── headings-ift.json │ │ │ ├── headings-image-capture.json │ │ │ ├── headings-image-resource.json │ │ │ ├── headings-indexeddb-3.json │ │ │ ├── headings-infra.json │ │ │ ├── headings-ink-enhancement.json │ │ │ ├── headings-input-device-capabilities.json │ │ │ ├── headings-input-events-2.json │ │ │ ├── headings-intersection-observer.json │ │ │ ├── headings-intervention-reporting.json │ │ │ ├── headings-is-input-pending.json │ │ │ ├── headings-isolated-contexts.json │ │ │ ├── headings-js-self-profiling.json │ │ │ ├── headings-json-ld11-api.json │ │ │ ├── headings-json-ld11-framing.json │ │ │ ├── headings-json-ld11.json │ │ │ ├── headings-keyboard-lock.json │ │ │ ├── headings-keyboard-map.json │ │ │ ├── headings-largest-contentful-paint.json │ │ │ ├── headings-layout-instability.json │ │ │ ├── headings-local-font-access.json │ │ │ ├── headings-long-animation-frames.json │ │ │ ├── headings-longtasks-1.json │ │ │ ├── headings-magnetometer.json │ │ │ ├── headings-managed-configuration.json │ │ │ ├── headings-manifest-app-info.json │ │ │ ├── headings-manifest-incubations.json │ │ │ ├── headings-mathml-aam.json │ │ │ ├── headings-mathml-core.json │ │ │ ├── headings-mathml4.json │ │ │ ├── headings-media-capabilities.json │ │ │ ├── headings-media-feeds.json │ │ │ ├── headings-media-playback-quality.json │ │ │ ├── headings-media-source-2.json │ │ │ ├── headings-mediacapture-automation.json │ │ │ ├── headings-mediacapture-fromelement.json │ │ │ ├── headings-mediacapture-handle-actions.json │ │ │ ├── headings-mediacapture-region.json │ │ │ ├── headings-mediacapture-streams.json │ │ │ ├── headings-mediacapture-transform.json │ │ │ ├── headings-mediacapture-viewport.json │ │ │ ├── headings-mediaqueries-3.json │ │ │ ├── headings-mediaqueries-4.json │ │ │ ├── headings-mediaqueries-5.json │ │ │ ├── headings-mediasession.json │ │ │ ├── headings-mediastream-recording.json │ │ │ ├── headings-mimesniff.json │ │ │ ├── headings-miniapp-lifecycle.json │ │ │ ├── headings-miniapp-manifest.json │ │ │ ├── headings-miniapp-packaging.json │ │ │ ├── headings-mixed-content.json │ │ │ ├── headings-model-element.json │ │ │ ├── headings-motion-1.json │ │ │ ├── headings-mse-byte-stream-format-isobmff.json │ │ │ ├── headings-mse-byte-stream-format-mp2t.json │ │ │ ├── headings-mse-byte-stream-format-mpeg-audio.json │ │ │ ├── headings-mse-byte-stream-format-registry.json │ │ │ ├── headings-mse-byte-stream-format-webm.json │ │ │ ├── headings-mst-content-hint.json │ │ │ ├── headings-n-quads.json │ │ │ ├── headings-nav-tracking-mitigations.json │ │ │ ├── headings-navigation-timing-2.json │ │ │ ├── headings-netinfo.json │ │ │ ├── headings-network-error-logging.json │ │ │ ├── headings-network-reporting.json │ │ │ ├── headings-notifications.json │ │ │ ├── headings-observable.json │ │ │ ├── headings-openscreenprotocol.json │ │ │ ├── headings-orientation-event.json │ │ │ ├── headings-orientation-sensor.json │ │ │ ├── headings-overscroll-scrollend-events.json │ │ │ ├── headings-page-lifecycle.json │ │ │ ├── headings-paint-timing.json │ │ │ ├── headings-partitioned-cookies.json │ │ │ ├── headings-passkey-endpoints.json │ │ │ ├── headings-payment-handler.json │ │ │ ├── headings-payment-method-id.json │ │ │ ├── headings-payment-method-manifest.json │ │ │ ├── headings-payment-request.json │ │ │ ├── headings-performance-measure-memory.json │ │ │ ├── headings-performance-timeline.json │ │ │ ├── headings-periodic-background-sync.json │ │ │ ├── headings-permissions-policy-1.json │ │ │ ├── headings-permissions-registry.json │ │ │ ├── headings-permissions-request.json │ │ │ ├── headings-permissions-revoke.json │ │ │ ├── headings-permissions.json │ │ │ ├── headings-picture-in-picture.json │ │ │ ├── headings-png-3.json │ │ │ ├── headings-pointerevents3.json │ │ │ ├── headings-pointerlock-2.json │ │ │ ├── headings-portals.json │ │ │ ├── headings-prefer-current-tab.json │ │ │ ├── headings-prefetch.json │ │ │ ├── headings-prerendering-revamped.json │ │ │ ├── headings-presentation-api.json │ │ │ ├── headings-private-aggregation-api.json │ │ │ ├── headings-private-click-measurement.json │ │ │ ├── headings-private-network-access.json │ │ │ ├── headings-promises-guide.json │ │ │ ├── headings-proximity.json │ │ │ ├── headings-pub-manifest.json │ │ │ ├── headings-push-api.json │ │ │ ├── headings-quirks.json │ │ │ ├── headings-raw-camera-access.json │ │ │ ├── headings-rdf-canon.json │ │ │ ├── headings-rdf12-concepts.json │ │ │ ├── headings-rdf12-n-quads.json │ │ │ ├── headings-rdf12-n-triples.json │ │ │ ├── headings-rdf12-schema.json │ │ │ ├── headings-rdf12-semantics.json │ │ │ ├── headings-rdf12-trig.json │ │ │ ├── headings-rdf12-turtle.json │ │ │ ├── headings-rdf12-xml.json │ │ │ ├── headings-real-world-meshing.json │ │ │ ├── headings-referrer-policy.json │ │ │ ├── headings-remote-playback.json │ │ │ ├── headings-reporting-1.json │ │ │ ├── headings-requestidlecallback.json │ │ │ ├── headings-requeststorageaccessfor.json │ │ │ ├── headings-resize-observer-1.json │ │ │ ├── headings-resource-timing.json │ │ │ ├── headings-responsive-image-client-hints.json │ │ │ ├── headings-rfc6265.json │ │ │ ├── headings-rfc6265bis.json │ │ │ ├── headings-rfc6266.json │ │ │ ├── headings-rfc7230.json │ │ │ ├── headings-rfc7231.json │ │ │ ├── headings-rfc7232.json │ │ │ ├── headings-rfc7233.json │ │ │ ├── headings-rfc7234.json │ │ │ ├── headings-rfc7235.json │ │ │ ├── headings-rfc7616.json │ │ │ ├── headings-rfc7617.json │ │ │ ├── headings-rfc7725.json │ │ │ ├── headings-rfc7838.json │ │ │ ├── headings-rfc8246.json │ │ │ ├── headings-rfc8288.json │ │ │ ├── headings-rfc8297.json │ │ │ ├── headings-rfc8470.json │ │ │ ├── headings-rfc8878.json │ │ │ ├── headings-rfc8942.json │ │ │ ├── headings-rfc9110.json │ │ │ ├── headings-rfc9111.json │ │ │ ├── headings-rfc9112.json │ │ │ ├── headings-rfc9113.json │ │ │ ├── headings-rfc9114.json │ │ │ ├── headings-rfc9163.json │ │ │ ├── headings-rfc9218.json │ │ │ ├── headings-rfc9530.json │ │ │ ├── headings-saa-non-cookie-storage.json │ │ │ ├── headings-sanitizer-api.json │ │ │ ├── headings-savedata.json │ │ │ ├── headings-scheduling-apis.json │ │ │ ├── headings-screen-capture.json │ │ │ ├── headings-screen-orientation.json │ │ │ ├── headings-screen-wake-lock.json │ │ │ ├── headings-scroll-animations-1.json │ │ │ ├── headings-scroll-to-text-fragment.json │ │ │ ├── headings-secure-contexts.json │ │ │ ├── headings-secure-payment-confirmation.json │ │ │ ├── headings-selection-api.json │ │ │ ├── headings-selectors-3.json │ │ │ ├── headings-selectors-4.json │ │ │ ├── headings-selectors-5.json │ │ │ ├── headings-selectors-nonelement-1.json │ │ │ ├── headings-serial.json │ │ │ ├── headings-server-timing.json │ │ │ ├── headings-service-workers.json │ │ │ ├── headings-shape-detection-api.json │ │ │ ├── headings-shared-storage.json │ │ │ ├── headings-sms-one-time-codes.json │ │ │ ├── headings-soft-navigations.json │ │ │ ├── headings-sourcemap.json │ │ │ ├── headings-sparql12-concepts.json │ │ │ ├── headings-sparql12-entailment.json │ │ │ ├── headings-sparql12-federated-query.json │ │ │ ├── headings-sparql12-graph-store-protocol.json │ │ │ ├── headings-sparql12-protocol.json │ │ │ ├── headings-sparql12-query.json │ │ │ ├── headings-sparql12-results-csv-tsv.json │ │ │ ├── headings-sparql12-results-json.json │ │ │ ├── headings-sparql12-results-xml.json │ │ │ ├── headings-sparql12-service-description.json │ │ │ ├── headings-sparql12-update.json │ │ │ ├── headings-speculation-rules.json │ │ │ ├── headings-speech-api.json │ │ │ ├── headings-sri.json │ │ │ ├── headings-storage-access.json │ │ │ ├── headings-storage-buckets.json │ │ │ ├── headings-storage.json │ │ │ ├── headings-streams.json │ │ │ ├── headings-svg-aam-1.0.json │ │ │ ├── headings-svg-animations.json │ │ │ ├── headings-svg-integration.json │ │ │ ├── headings-svg-strokes.json │ │ │ ├── headings-svg11.json │ │ │ ├── headings-svg2.json │ │ │ ├── headings-tc39-array-from-async.json │ │ │ ├── headings-tc39-arraybuffer-base64.json │ │ │ ├── headings-tc39-async-explicit-resource-management.json │ │ │ ├── headings-tc39-canonical-tz.json │ │ │ ├── headings-tc39-decorators.json │ │ │ ├── headings-tc39-dynamic-code-brand-checks.json │ │ │ ├── headings-tc39-explicit-resource-management.json │ │ │ ├── headings-tc39-float16array.json │ │ │ ├── headings-tc39-import-attributes.json │ │ │ ├── headings-tc39-intl-duration-format.json │ │ │ ├── headings-tc39-intl-locale-info.json │ │ │ ├── headings-tc39-iterator-helpers.json │ │ │ ├── headings-tc39-json-modules.json │ │ │ ├── headings-tc39-json-parse-with-source.json │ │ │ ├── headings-tc39-promise-try.json │ │ │ ├── headings-tc39-regex-escaping.json │ │ │ ├── headings-tc39-regexp-modifiers.json │ │ │ ├── headings-tc39-set-methods.json │ │ │ ├── headings-tc39-shadowrealm.json │ │ │ ├── headings-tc39-source-phase-imports.json │ │ │ ├── headings-tc39-temporal.json │ │ │ ├── headings-test-methodology.json │ │ │ ├── headings-testutils.json │ │ │ ├── headings-text-detection-api.json │ │ │ ├── headings-timing-entrytypes-registry.json │ │ │ ├── headings-topics.json │ │ │ ├── headings-touch-events.json │ │ │ ├── headings-tracking-dnt.json │ │ │ ├── headings-trust-token-api.json │ │ │ ├── headings-trusted-types.json │ │ │ ├── headings-turtledove.json │ │ │ ├── headings-ua-client-hints.json │ │ │ ├── headings-uievents-code.json │ │ │ ├── headings-uievents-key.json │ │ │ ├── headings-uievents.json │ │ │ ├── headings-upgrade-insecure-requests.json │ │ │ ├── headings-url.json │ │ │ ├── headings-urlpattern.json │ │ │ ├── headings-user-preference-media-features-headers.json │ │ │ ├── headings-user-timing.json │ │ │ ├── headings-vc-data-integrity.json │ │ │ ├── headings-vc-data-model-2.0.json │ │ │ ├── headings-vibration.json │ │ │ ├── headings-video-rvfc.json │ │ │ ├── headings-virtual-keyboard.json │ │ │ ├── headings-w3c-patent-policy.json │ │ │ ├── headings-w3c-process.json │ │ │ ├── headings-wai-aria-1.2.json │ │ │ ├── headings-wai-aria-1.3.json │ │ │ ├── headings-wasm-core-2.json │ │ │ ├── headings-wasm-js-api-2.json │ │ │ ├── headings-wasm-web-api-2.json │ │ │ ├── headings-web-animations-1.json │ │ │ ├── headings-web-animations-2.json │ │ │ ├── headings-web-app-launch.json │ │ │ ├── headings-web-bluetooth-scanning.json │ │ │ ├── headings-web-bluetooth.json │ │ │ ├── headings-web-locks.json │ │ │ ├── headings-web-nfc.json │ │ │ ├── headings-web-otp.json │ │ │ ├── headings-web-preferences-api.json │ │ │ ├── headings-web-share-target.json │ │ │ ├── headings-web-share.json │ │ │ ├── headings-web-smart-card.json │ │ │ ├── headings-webaudio.json │ │ │ ├── headings-webauthn-3.json │ │ │ ├── headings-webcodecs-aac-codec-registration.json │ │ │ ├── headings-webcodecs-alaw-codec-registration.json │ │ │ ├── headings-webcodecs-av1-codec-registration.json │ │ │ ├── headings-webcodecs-avc-codec-registration.json │ │ │ ├── headings-webcodecs-codec-registry.json │ │ │ ├── headings-webcodecs-flac-codec-registration.json │ │ │ ├── headings-webcodecs-hevc-codec-registration.json │ │ │ ├── headings-webcodecs-mp3-codec-registration.json │ │ │ ├── headings-webcodecs-opus-codec-registration.json │ │ │ ├── headings-webcodecs-pcm-codec-registration.json │ │ │ ├── headings-webcodecs-ulaw-codec-registration.json │ │ │ ├── headings-webcodecs-video-frame-metadata-registry.json │ │ │ ├── headings-webcodecs-vorbis-codec-registration.json │ │ │ ├── headings-webcodecs-vp8-codec-registration.json │ │ │ ├── headings-webcodecs-vp9-codec-registration.json │ │ │ ├── headings-webcodecs.json │ │ │ ├── headings-webcrypto-secure-curves.json │ │ │ ├── headings-webcryptoapi.json │ │ │ ├── headings-webdriver-bidi.json │ │ │ ├── headings-webdriver2.json │ │ │ ├── headings-webgl1.json │ │ │ ├── headings-webgl2.json │ │ │ ├── headings-webgpu.json │ │ │ ├── headings-webhid.json │ │ │ ├── headings-webidl.json │ │ │ ├── headings-webmidi.json │ │ │ ├── headings-webnn.json │ │ │ ├── headings-webp.json │ │ │ ├── headings-webpackage.json │ │ │ ├── headings-webrtc-encoded-transform.json │ │ │ ├── headings-webrtc-ice.json │ │ │ ├── headings-webrtc-identity.json │ │ │ ├── headings-webrtc-priority.json │ │ │ ├── headings-webrtc-stats.json │ │ │ ├── headings-webrtc-svc.json │ │ │ ├── headings-webrtc.json │ │ │ ├── headings-websockets.json │ │ │ ├── headings-webtransport.json │ │ │ ├── headings-webusb.json │ │ │ ├── headings-webvtt1.json │ │ │ ├── headings-webxr-ar-module-1.json │ │ │ ├── headings-webxr-depth-sensing-1.json │ │ │ ├── headings-webxr-dom-overlays-1.json │ │ │ ├── headings-webxr-gamepads-module-1.json │ │ │ ├── headings-webxr-hand-input-1.json │ │ │ ├── headings-webxr-hit-test-1.json │ │ │ ├── headings-webxr-lighting-estimation-1.json │ │ │ ├── headings-webxr-meshing.json │ │ │ ├── headings-webxr-plane-detection.json │ │ │ ├── headings-webxr.json │ │ │ ├── headings-webxrlayers-1.json │ │ │ ├── headings-wgsl.json │ │ │ ├── headings-window-controls-overlay.json │ │ │ ├── headings-window-management.json │ │ │ ├── headings-woff.json │ │ │ ├── headings-woff2.json │ │ │ └── headings-xhr.json │ │ ├── languages.json │ │ ├── link-defaults.infotree │ │ ├── manifest.txt │ │ ├── mdn/ │ │ │ ├── accelerometer.json │ │ │ ├── ambient-light.json │ │ │ ├── appmanifest.json │ │ │ ├── aria.json │ │ │ ├── audio-output.json │ │ │ ├── autoplay.json │ │ │ ├── background-fetch.json │ │ │ ├── background-sync.json │ │ │ ├── badging.json │ │ │ ├── battery.json │ │ │ ├── beacon.json │ │ │ ├── clear-site-data.json │ │ │ ├── clipboard-apis.json │ │ │ ├── compat.json │ │ │ ├── compositing.json │ │ │ ├── compression.json │ │ │ ├── console.json │ │ │ ├── contact-api.json │ │ │ ├── contact-picker.json │ │ │ ├── content-index.json │ │ │ ├── controls-list.json │ │ │ ├── cookie-store.json │ │ │ ├── crash-reporting.json │ │ │ ├── credential-management.json │ │ │ ├── csp-embedded-enforcement.json │ │ │ ├── csp.json │ │ │ ├── css-align.json │ │ │ ├── css-animations-2.json │ │ │ ├── css-animations.json │ │ │ ├── css-backgrounds-4.json │ │ │ ├── css-backgrounds.json │ │ │ ├── css-box-4.json │ │ │ ├── css-box.json │ │ │ ├── css-break.json │ │ │ ├── css-cascade-5.json │ │ │ ├── css-cascade.json │ │ │ ├── css-color-5.json │ │ │ ├── css-color-6.json │ │ │ ├── css-color-adjust.json │ │ │ ├── css-color.json │ │ │ ├── css-conditional-3.json │ │ │ ├── css-conditional-4.json │ │ │ ├── css-contain-3.json │ │ │ ├── css-contain.json │ │ │ ├── css-content.json │ │ │ ├── css-counter-styles.json │ │ │ ├── css-display.json │ │ │ ├── css-easing.json │ │ │ ├── css-env.json │ │ │ ├── css-flexbox.json │ │ │ ├── css-font-loading.json │ │ │ ├── css-fonts-5.json │ │ │ ├── css-fonts.json │ │ │ ├── css-grid-3.json │ │ │ ├── css-grid.json │ │ │ ├── css-highlight-api.json │ │ │ ├── css-images-4.json │ │ │ ├── css-images.json │ │ │ ├── css-inline.json │ │ │ ├── css-lists.json │ │ │ ├── css-logical.json │ │ │ ├── css-masking.json │ │ │ ├── css-mediaqueries.json │ │ │ ├── css-multicol.json │ │ │ ├── css-namespaces.json │ │ │ ├── css-nesting.json │ │ │ ├── css-overflow-4.json │ │ │ ├── css-overflow.json │ │ │ ├── css-overscroll.json │ │ │ ├── css-page.json │ │ │ ├── css-paint-api.json │ │ │ ├── css-position-4.json │ │ │ ├── css-position.json │ │ │ ├── css-properties-values-api.json │ │ │ ├── css-pseudo.json │ │ │ ├── css-regions.json │ │ │ ├── css-rhythm.json │ │ │ ├── css-ruby.json │ │ │ ├── css-scoping.json │ │ │ ├── css-scroll-anchoring.json │ │ │ ├── css-scroll-snap.json │ │ │ ├── css-scrollbars.json │ │ │ ├── css-shadow-parts.json │ │ │ ├── css-shapes.json │ │ │ ├── css-size-adjust.json │ │ │ ├── css-sizing-3.json │ │ │ ├── css-sizing-4.json │ │ │ ├── css-text-4.json │ │ │ ├── css-text-decor-4.json │ │ │ ├── css-text-decor.json │ │ │ ├── css-text.json │ │ │ ├── css-transforms-2.json │ │ │ ├── css-transforms.json │ │ │ ├── css-transitions-2.json │ │ │ ├── css-transitions.json │ │ │ ├── css-typed-om.json │ │ │ ├── css-ui.json │ │ │ ├── css-values-5.json │ │ │ ├── css-values.json │ │ │ ├── css-variables.json │ │ │ ├── css-view-transitions.json │ │ │ ├── css-will-change.json │ │ │ ├── css-writing-modes.json │ │ │ ├── css2.json │ │ │ ├── cssom-view.json │ │ │ ├── cssom.json │ │ │ ├── custom-state-pseudo-class.json │ │ │ ├── deprecation-reporting.json │ │ │ ├── dom-parsing.json │ │ │ ├── dom.json │ │ │ ├── draft-ietf-httpbis-rfc6265bis.json │ │ │ ├── ecma-402.json │ │ │ ├── ecmascript.json │ │ │ ├── element-timing.json │ │ │ ├── encoding.json │ │ │ ├── encrypted-media.json │ │ │ ├── entries-api.json │ │ │ ├── event-timing.json │ │ │ ├── eyedropper-api.json │ │ │ ├── fedcm.json │ │ │ ├── fetch-metadata.json │ │ │ ├── fetch.json │ │ │ ├── file-system-access.json │ │ │ ├── file-system.json │ │ │ ├── fileapi.json │ │ │ ├── filter-effects-2.json │ │ │ ├── filter-effects.json │ │ │ ├── fullscreen.json │ │ │ ├── gamepad-extensions.json │ │ │ ├── gamepad.json │ │ │ ├── generic-sensor.json │ │ │ ├── geolocation-api.json │ │ │ ├── geometry.json │ │ │ ├── gpc.json │ │ │ ├── gyroscope.json │ │ │ ├── hr-time.json │ │ │ ├── html-media-capture.json │ │ │ ├── html.json │ │ │ ├── idle-detection.json │ │ │ ├── image-capture.json │ │ │ ├── indexeddb.json │ │ │ ├── input-device-capabilities.json │ │ │ ├── input-events.json │ │ │ ├── intersection-observer.json │ │ │ ├── intervention-reporting.json │ │ │ ├── keyboard-lock.json │ │ │ ├── keyboard-map.json │ │ │ ├── largest-contentful-paint.json │ │ │ ├── layout-instability.json │ │ │ ├── local-font-access.json │ │ │ ├── longtasks.json │ │ │ ├── magnetometer.json │ │ │ ├── manifest-app-info.json │ │ │ ├── manifest-incubations.json │ │ │ ├── mathml.json │ │ │ ├── media-capabilities.json │ │ │ ├── media-playback-quality.json │ │ │ ├── media-source.json │ │ │ ├── mediacapture-fromelement.json │ │ │ ├── mediacapture-screen-share.json │ │ │ ├── mediacapture-streams.json │ │ │ ├── mediacapture-transform.json │ │ │ ├── mediaqueries-5.json │ │ │ ├── mediasession.json │ │ │ ├── mediastream-recording.json │ │ │ ├── motion.json │ │ │ ├── navigation-timing.json │ │ │ ├── netinfo.json │ │ │ ├── network-error-logging.json │ │ │ ├── notifications.json │ │ │ ├── numberformat.json │ │ │ ├── orientation-event.json │ │ │ ├── orientation-sensor.json │ │ │ ├── page-lifecycle.json │ │ │ ├── paint-timing.json │ │ │ ├── payment-handler.json │ │ │ ├── payment-request.json │ │ │ ├── performance-measure-memory.json │ │ │ ├── performance-timeline.json │ │ │ ├── periodic-background-sync.json │ │ │ ├── permissions-policy.json │ │ │ ├── permissions.json │ │ │ ├── picture-in-picture.json │ │ │ ├── pluralrules.json │ │ │ ├── pointerevents.json │ │ │ ├── pointerlock.json │ │ │ ├── portals.json │ │ │ ├── presentation-api.json │ │ │ ├── priority-hints.json │ │ │ ├── proposal-array-from-async.json │ │ │ ├── proposal-array-grouping.json │ │ │ ├── proposal-atomics-wait-async.json │ │ │ ├── proposal-intl-duration-format │ │ │ ├── proposal-intl-enumeration.json │ │ │ ├── proposal-intl-locale-info.json │ │ │ ├── proposal-is-usv-string.json │ │ │ ├── proposal-regexp-legacy-features.json │ │ │ ├── proposal-resizablearraybuffer.json │ │ │ ├── push-api.json │ │ │ ├── referrer-policy.json │ │ │ ├── remote-playback.json │ │ │ ├── reporting.json │ │ │ ├── requestidlecallback.json │ │ │ ├── resize-observer.json │ │ │ ├── resource-timing.json │ │ │ ├── rfc2397.json │ │ │ ├── rfc6265.json │ │ │ ├── rfc6266.json │ │ │ ├── rfc6454.json │ │ │ ├── rfc6797.json │ │ │ ├── rfc7239.json │ │ │ ├── rfc7578.json │ │ │ ├── rfc7838.json │ │ │ ├── rfc8246.json │ │ │ ├── rfc8288.json │ │ │ ├── rfc8942.json │ │ │ ├── rfc9110.json │ │ │ ├── rfc9111.json │ │ │ ├── rfc9112.json │ │ │ ├── rfc9113.json │ │ │ ├── sanitizer.json │ │ │ ├── savedata.json │ │ │ ├── scheduling-apis.json │ │ │ ├── screen-orientation.json │ │ │ ├── screen-wake-lock.json │ │ │ ├── scroll-animations.json │ │ │ ├── scroll-to-text-fragment.json │ │ │ ├── selection-api.json │ │ │ ├── selectors.json │ │ │ ├── serial.json │ │ │ ├── server-timing.json │ │ │ ├── service-workers.json │ │ │ ├── shape-detection-api.json │ │ │ ├── sourcemaps.json │ │ │ ├── speech-api.json │ │ │ ├── storage-access.json │ │ │ ├── storage.json │ │ │ ├── streams.json │ │ │ ├── subresource-integrity.json │ │ │ ├── svg-animations.json │ │ │ ├── svg.json │ │ │ ├── touch-events.json │ │ │ ├── trusted-types.json │ │ │ ├── ua-client-hints.json │ │ │ ├── uievents.json │ │ │ ├── upgrade-insecure-requests.json │ │ │ ├── url.json │ │ │ ├── urlpattern.json │ │ │ ├── user-preference-media-features-headers.json │ │ │ ├── user-timing.json │ │ │ ├── vibration.json │ │ │ ├── wasm-exception-handling.json │ │ │ ├── wasm-js-api.json │ │ │ ├── wasm-web-embedding.json │ │ │ ├── web-animations-2.json │ │ │ ├── web-animations.json │ │ │ ├── web-app-launch.json │ │ │ ├── web-bluetooth.json │ │ │ ├── web-locks.json │ │ │ ├── web-nfc.json │ │ │ ├── web-otp.json │ │ │ ├── web-share-target.json │ │ │ ├── web-share.json │ │ │ ├── webaudio.json │ │ │ ├── webauthn.json │ │ │ ├── webcodecs.json │ │ │ ├── webcrypto.json │ │ │ ├── webdriver.json │ │ │ ├── webgl-1.json │ │ │ ├── webgl-2.json │ │ │ ├── webgpu.json │ │ │ ├── webhid.json │ │ │ ├── webidl.json │ │ │ ├── webmidi.json │ │ │ ├── webrtc-extensions.json │ │ │ ├── webrtc-identity.json │ │ │ ├── webrtc-priority.json │ │ │ ├── webrtc-stats.json │ │ │ ├── webrtc.json │ │ │ ├── websockets.json │ │ │ ├── webtransport.json │ │ │ ├── webusb.json │ │ │ ├── webvtt.json │ │ │ ├── webxr-anchors.json │ │ │ ├── webxr-ar.json │ │ │ ├── webxr-depth-sensing.json │ │ │ ├── webxr-dom-overlays.json │ │ │ ├── webxr-gamepads.json │ │ │ ├── webxr-hand-input.json │ │ │ ├── webxr-hit-test.json │ │ │ ├── webxr-layers.json │ │ │ ├── webxr-lighting-estimation.json │ │ │ ├── webxr.json │ │ │ ├── window-controls-overlay.json │ │ │ ├── woff.json │ │ │ ├── woff2.json │ │ │ └── xhr.json │ │ ├── mdn.json │ │ ├── methods.json │ │ ├── specs.json │ │ ├── test-suites.json │ │ ├── version.txt │ │ └── wpt-tests.txt │ ├── stringEnum/ │ │ ├── __init__.py │ │ └── stringenum.py │ ├── stylescript/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── autolinks.css │ │ ├── cddl-highlighting.css │ │ ├── colors.css │ │ ├── counters.css │ │ ├── dom-helper.js │ │ ├── domintro.css │ │ ├── expires.js │ │ ├── hidedel.css │ │ ├── idl-highlighting.css │ │ ├── issues.css │ │ ├── link-titles.js │ │ ├── manager.py │ │ ├── md-lists.css │ │ ├── position-annos.js │ │ ├── railroad.css │ │ ├── selflinks.css │ │ ├── var-click-highlighting.css │ │ └── var-click-highlighting.js │ ├── t.py │ ├── template/ │ │ ├── __init__.py │ │ ├── main.py │ │ ├── minimal.bs │ │ ├── spec.bs │ │ ├── test.bs │ │ └── wpt.html │ ├── test.py │ ├── translate/ │ │ ├── __init__.py │ │ ├── messages.po │ │ └── translate.py │ ├── unsortedJunk.py │ ├── update/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── main.py │ │ ├── manifest.py │ │ ├── mode.py │ │ ├── updateBackRefs.py │ │ ├── updateBiblio.py │ │ ├── updateBoilerplates.py │ │ ├── updateCanIUse.py │ │ ├── updateCrossRefs.py │ │ ├── updateLanguages.py │ │ ├── updateLinkDefaults.py │ │ ├── updateMdn.py │ │ └── updateWpt.py │ └── wpt/ │ ├── __init__.py │ ├── wpt.css │ ├── wpt.js │ └── wptElement.py ├── bikeshed.py ├── docs/ │ ├── CONTRIBUTING.md │ ├── index.bs │ └── quick-start.md ├── emacs/ │ └── bikeshed.el ├── lint ├── mypy.ini ├── package.json ├── playwright.config.js ├── pyproject.toml ├── release.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests/ ├── README.md ├── abstract001.bs ├── abstract001.console.txt ├── abstract001.html ├── adjacent-boilerplate/ │ ├── adjacent-boilerplate.bs │ ├── adjacent-boilerplate.console.txt │ ├── adjacent-boilerplate.html │ ├── anchors.bsdata │ ├── defaults.include │ ├── link-defaults.infotree │ └── status-LS.include ├── advisement001.bs ├── advisement001.console.txt ├── advisement001.html ├── algorithm001.bs ├── algorithm001.console.txt ├── algorithm001.html ├── basic001.bs ├── basic001.console.txt ├── basic001.html ├── biblio001.bs ├── biblio001.console.txt ├── biblio001.html ├── biblio002.bs ├── biblio002.console.txt ├── biblio002.html ├── biblio003.bs ├── biblio003.console.txt ├── biblio003.html ├── biblio004.bs ├── biblio004.console.txt ├── biblio004.html ├── biblio005.bs ├── biblio005.console.txt ├── biblio005.html ├── biblio006.bs ├── biblio006.console.txt ├── biblio006.html ├── biblio007.bs ├── biblio007.console.txt ├── biblio007.html ├── boilerplate-substitution001.bs ├── boilerplate-substitution001.console.txt ├── boilerplate-substitution001.html ├── caniuse001.bs ├── caniuse001.console.txt ├── caniuse001.html ├── caniuse001_pwtest.js ├── cddl001.bs ├── cddl001.console.txt ├── cddl001.html ├── cddl002.bs ├── cddl002.console.txt ├── cddl002.html ├── cddl003.bs ├── cddl003.console.txt ├── cddl003.html ├── cddl004.bs ├── cddl004.console.txt ├── cddl004.html ├── cddl005.bs ├── cddl005.console.txt ├── cddl005.html ├── comments001.bs ├── comments001.console.txt ├── comments001.html ├── conditional001.bs ├── conditional001.console.txt ├── conditional001.html ├── conditional002.bs ├── conditional002.console.txt ├── conditional002.html ├── conditional003.bs ├── conditional003.console.txt ├── conditional003.html ├── css-production-range001.bs ├── css-production-range001.console.txt ├── css-production-range001.html ├── datablocks001.bs ├── datablocks001.console.txt ├── datablocks001.html ├── dfn-inference001.bs ├── dfn-inference001.console.txt ├── dfn-inference001.html ├── dfn-inference002.bs ├── dfn-inference002.console.txt ├── dfn-inference002.html ├── dict-type.bs ├── dict-type.console.txt ├── dict-type.html ├── elementdef001.bs ├── elementdef001.console.txt ├── elementdef001.html ├── elementdef001_pwtest.js ├── escapes001.bs ├── escapes001.console.txt ├── escapes001.html ├── figure001.bs ├── figure001.console.txt ├── figure001.html ├── fingerprint001.bs ├── fingerprint001.console.txt ├── fingerprint001.html ├── fingerprint002.bs ├── fingerprint002.console.txt ├── fingerprint002.html ├── fingerprint003.bs ├── fingerprint003.console.txt ├── fingerprint003.html ├── fingerprint004.bs ├── fingerprint004.console.txt ├── fingerprint004.html ├── fingerprint005.bs ├── fingerprint005.console.txt ├── fingerprint005.html ├── fingerprint006.bs ├── fingerprint006.console.txt ├── fingerprint006.html ├── force-crossorigin001.bs ├── force-crossorigin001.console.txt ├── force-crossorigin001.html ├── github/ │ ├── WICG/ │ │ ├── WebApiDevice/ │ │ │ └── managed_config/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── aom/ │ │ │ └── spec/ │ │ │ ├── custom-element-semantics.bs │ │ │ ├── custom-element-semantics.console.txt │ │ │ ├── custom-element-semantics.html │ │ │ ├── input-events.bs │ │ │ ├── input-events.console.txt │ │ │ └── input-events.html │ │ ├── app-history/ │ │ │ ├── spec.bs │ │ │ ├── spec.console.txt │ │ │ └── spec.html │ │ ├── background-fetch/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── background-sync/ │ │ │ └── spec/ │ │ │ ├── PeriodicBackgroundSync-index.bs │ │ │ ├── PeriodicBackgroundSync-index.console.txt │ │ │ ├── PeriodicBackgroundSync-index.html │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── client-hints-infrastructure/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── compression/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── construct-stylesheets/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── contact-api/ │ │ │ └── spec/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── container-queries/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── content-index/ │ │ │ └── spec/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── conversion-measurement-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── cookie-store/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── cq-usecases/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── crash-reporting/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── css-parser-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── custom-state-pseudo-class/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── datacue/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── deprecation-reporting/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── document-policy/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── element-timing/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── encrypted-media-encryption-scheme/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── entries-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── event-timing/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── file-system-access/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── floc/ │ │ │ ├── floc.bs │ │ │ ├── floc.console.txt │ │ │ └── floc.html │ │ ├── get-installed-related-apps/ │ │ │ └── spec/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── hdcp-detection/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── idle-detection/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── import-maps/ │ │ │ ├── spec.bs │ │ │ ├── spec.console.txt │ │ │ └── spec.html │ │ ├── intervention-reporting/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── keyboard-lock/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── keyboard-map/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── kv-storage/ │ │ │ ├── spec.bs │ │ │ ├── spec.console.txt │ │ │ └── spec.html │ │ ├── largest-contentful-paint/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── layout-instability/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── local-font-access/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── page-lifecycle/ │ │ │ ├── spec.bs │ │ │ ├── spec.console.txt │ │ │ └── spec.html │ │ ├── periodic-background-sync/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── permissions-request/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── permissions-revoke/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── portals/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── priority-hints/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── responsive-image-client-hints/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── sanitizer-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── scheduling-apis/ │ │ │ └── spec/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── scroll-to-text-fragment/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── shape-detection-api/ │ │ │ ├── index-zh-cn.bs │ │ │ ├── index-zh-cn.console.txt │ │ │ ├── index-zh-cn.html │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ ├── index.html │ │ │ ├── text.bs │ │ │ ├── text.console.txt │ │ │ └── text.html │ │ ├── sms-one-time-codes/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── speech-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── storage-buckets/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── ua-client-hints/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── video-rvfc/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── web-locks/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── web-otp/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webpackage/ │ │ │ ├── loading.bs │ │ │ ├── loading.console.txt │ │ │ └── loading.html │ │ └── webusb/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ ├── index.html │ │ └── test/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── WebAudio/ │ │ ├── web-audio-api/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ └── web-audio-api-v2/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── WebBluetoothCG/ │ │ └── web-bluetooth/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ ├── index.html │ │ ├── scanning.bs │ │ ├── scanning.console.txt │ │ ├── scanning.html │ │ ├── tests.bs │ │ ├── tests.console.txt │ │ ├── tests.html │ │ ├── use-cases.bs │ │ ├── use-cases.console.txt │ │ └── use-cases.html │ ├── heycam/ │ │ └── webidl/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── immersive-web/ │ │ ├── WebXR-WebGPU-Binding/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── anchors/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── depth-sensing/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── detached-elements/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── dom-overlays/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── hit-test/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── layers/ │ │ │ ├── webxrlayers-1.bs │ │ │ ├── webxrlayers-1.console.txt │ │ │ └── webxrlayers-1.html │ │ ├── lighting-estimation/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── real-world-geometry/ │ │ │ ├── plane-detection.bs │ │ │ ├── plane-detection.console.txt │ │ │ ├── plane-detection.html │ │ │ ├── webxrmeshing-1.bs │ │ │ ├── webxrmeshing-1.console.txt │ │ │ └── webxrmeshing-1.html │ │ ├── webvr/ │ │ │ └── spec/ │ │ │ └── 1.1/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webxr/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webxr-ar-module/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webxr-gamepads-module/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webxr-hand-input/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ └── webxr-test-api/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── jfbastien/ │ │ └── papers/ │ │ └── source/ │ │ ├── D1501R0.bs │ │ ├── D1501R0.console.txt │ │ ├── D1501R0.html │ │ ├── D2151r0.bs │ │ ├── D2151r0.console.txt │ │ ├── D2151r0.html │ │ ├── Math.signbit.bs │ │ ├── Math.signbit.console.txt │ │ ├── Math.signbit.html │ │ ├── N2218.bs │ │ ├── N2218.console.txt │ │ ├── N2218.html │ │ ├── N4455.bs │ │ ├── N4455.console.txt │ │ ├── N4455.html │ │ ├── P0323R10.bs │ │ ├── P0323R10.console.txt │ │ ├── P0323R10.html │ │ ├── P0323R8.bs │ │ ├── P0323R8.console.txt │ │ ├── P0323R8.html │ │ ├── P0323R9.bs │ │ ├── P0323R9.console.txt │ │ ├── P0323R9.html │ │ ├── P0323r4.bs │ │ ├── P0323r4.console.txt │ │ ├── P0323r4.html │ │ ├── P0323r5.bs │ │ ├── P0323r5.console.txt │ │ ├── P0323r5.html │ │ ├── P0323r6.bs │ │ ├── P0323r6.console.txt │ │ ├── P0323r6.html │ │ ├── P0418r1.bs │ │ ├── P0418r1.console.txt │ │ ├── P0418r1.html │ │ ├── P0418r2.bs │ │ ├── P0418r2.console.txt │ │ ├── P0418r2.html │ │ ├── P0476r0.bs │ │ ├── P0476r0.console.txt │ │ ├── P0476r0.html │ │ ├── P0476r1.bs │ │ ├── P0476r1.console.txt │ │ ├── P0476r1.html │ │ ├── P0476r2.bs │ │ ├── P0476r2.console.txt │ │ ├── P0476r2.html │ │ ├── P0502r0.bs │ │ ├── P0502r0.console.txt │ │ ├── P0502r0.html │ │ ├── P0528r0.bs │ │ ├── P0528r0.console.txt │ │ ├── P0528r0.html │ │ ├── P0528r1.bs │ │ ├── P0528r1.console.txt │ │ ├── P0528r1.html │ │ ├── P0528r2.bs │ │ ├── P0528r2.console.txt │ │ ├── P0528r2.html │ │ ├── P0690r0.bs │ │ ├── P0690r0.console.txt │ │ ├── P0690r0.html │ │ ├── P0690r1.bs │ │ ├── P0690r1.console.txt │ │ ├── P0690r1.html │ │ ├── P0750r0.bs │ │ ├── P0750r0.console.txt │ │ ├── P0750r0.html │ │ ├── P0750r1.bs │ │ ├── P0750r1.console.txt │ │ ├── P0750r1.html │ │ ├── P0907R4.bs │ │ ├── P0907R4.console.txt │ │ ├── P0907R4.html │ │ ├── P0907r0.bs │ │ ├── P0907r0.console.txt │ │ ├── P0907r0.html │ │ ├── P0907r1.bs │ │ ├── P0907r1.console.txt │ │ ├── P0907r1.html │ │ ├── P0907r2.bs │ │ ├── P0907r2.console.txt │ │ ├── P0907r2.html │ │ ├── P0908r0.bs │ │ ├── P0908r0.console.txt │ │ ├── P0908r0.html │ │ ├── P0995r0.bs │ │ ├── P0995r0.console.txt │ │ ├── P0995r0.html │ │ ├── P1018r5.bs │ │ ├── P1018r5.console.txt │ │ ├── P1018r5.html │ │ ├── P1018r6.bs │ │ ├── P1018r6.console.txt │ │ ├── P1018r6.html │ │ ├── P1018r7.bs │ │ ├── P1018r7.console.txt │ │ ├── P1018r7.html │ │ ├── P1018r8.bs │ │ ├── P1018r8.console.txt │ │ ├── P1018r8.html │ │ ├── P1018r9.bs │ │ ├── P1018r9.console.txt │ │ ├── P1018r9.html │ │ ├── P1152R0.bs │ │ ├── P1152R0.console.txt │ │ ├── P1152R0.html │ │ ├── P1152R1.bs │ │ ├── P1152R1.console.txt │ │ ├── P1152R1.html │ │ ├── P1152R2.bs │ │ ├── P1152R2.console.txt │ │ ├── P1152R2.html │ │ ├── P1152R3.bs │ │ ├── P1152R3.console.txt │ │ ├── P1152R3.html │ │ ├── P1152R4.bs │ │ ├── P1152R4.console.txt │ │ ├── P1152R4.html │ │ ├── P1205R0.bs │ │ ├── P1205R0.console.txt │ │ ├── P1205R0.html │ │ ├── P1225R0.bs │ │ ├── P1225R0.console.txt │ │ ├── P1225R0.html │ │ ├── P1482r0.bs │ │ ├── P1482r0.console.txt │ │ ├── P1482r0.html │ │ ├── P1831R0.bs │ │ ├── P1831R0.console.txt │ │ ├── P1831R0.html │ │ ├── P1831R1.bs │ │ ├── P1831R1.console.txt │ │ ├── P1831R1.html │ │ ├── P1860R0.bs │ │ ├── P1860R0.console.txt │ │ ├── P1860R0.html │ │ ├── P2186R0.bs │ │ ├── P2186R0.console.txt │ │ ├── P2186R0.html │ │ ├── P2186R1.bs │ │ ├── P2186R1.console.txt │ │ ├── P2186R1.html │ │ ├── P2186R2.bs │ │ ├── P2186R2.console.txt │ │ ├── P2186R2.html │ │ ├── bikeshed.bs │ │ ├── bikeshed.console.txt │ │ ├── bikeshed.html │ │ ├── p0323r7.bs │ │ ├── p0323r7.console.txt │ │ ├── p0323r7.html │ │ ├── p0528r3.bs │ │ ├── p0528r3.console.txt │ │ ├── p0528r3.html │ │ ├── p0907r3.bs │ │ ├── p0907r3.console.txt │ │ ├── p0907r3.html │ │ ├── p0995r1.bs │ │ ├── p0995r1.console.txt │ │ ├── p0995r1.html │ │ ├── p1102r0.bs │ │ ├── p1102r0.console.txt │ │ ├── p1102r0.html │ │ ├── p1119r0.bs │ │ ├── p1119r0.console.txt │ │ └── p1119r0.html │ ├── privacycg/ │ │ ├── is-logged-in/ │ │ │ ├── is-logged-in.bs │ │ │ ├── is-logged-in.console.txt │ │ │ └── is-logged-in.html │ │ ├── private-click-measurement/ │ │ │ ├── private-click-measurement.bs │ │ │ ├── private-click-measurement.console.txt │ │ │ └── private-click-measurement.html │ │ └── storage-access/ │ │ ├── storage-access.bs │ │ ├── storage-access.console.txt │ │ └── storage-access.html │ ├── w3c/ │ │ ├── FileAPI/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── IndexedDB/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── IntersectionObserver/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── PFE/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── ServiceWorker/ │ │ │ ├── docs/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ ├── index.html │ │ │ │ └── v1/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ └── publish/ │ │ │ ├── service_worker/ │ │ │ │ └── WD-service-workers-20160830/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ └── service_worker_1/ │ │ │ └── WD-service-workers-1-20161011/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── accelerometer/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── ambient-light/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── clipboard-apis/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── css-houdini-drafts/ │ │ │ ├── box-tree-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-animation-worklet-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-layout-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-paint-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-parser-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-properties-values-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-typed-om/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-typed-om-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── font-metrics-api/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ └── worklets/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── csswg-drafts/ │ │ │ ├── css-2015/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-2017/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-2018/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-2020/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-align-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-animations-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-animations-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-backgrounds-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-backgrounds-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-box-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ ├── Overview.html │ │ │ │ ├── block-layout.bs │ │ │ │ ├── block-layout.console.txt │ │ │ │ └── block-layout.html │ │ │ ├── css-box-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-break-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-break-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-cascade-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-cascade-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-cascade-5/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-color-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-color-5/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-color-adjust-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-color-hdr/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-conditional-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-conditional-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-conditional-values-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-contain-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-contain-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-contain-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-content-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-counter-styles-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-device-adapt-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-display-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-easing-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-egg-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-env-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-exclusions-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-extensions-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-flexbox-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-font-loading-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-fonts-3/ │ │ │ │ ├── Overview-wip.bs │ │ │ │ ├── Overview-wip.console.txt │ │ │ │ └── Overview-wip.html │ │ │ ├── css-fonts-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-fonts-5/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-forms-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-gcpm-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-gcpm-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-grid-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-grid-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-grid-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-highlight-api-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-images-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-images-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-inline-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-line-grid-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-lists-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-logical-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-mobile/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-module-bikeshed/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-multicol-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-multicol-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-namespaces-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-nav-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-nesting-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-overflow-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-overflow-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-overscroll-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-page-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-page-floats-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-position-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-print/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-pseudo-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-regions-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-rhythm-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-round-display-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-ruby-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-scoping-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-scroll-anchoring-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-scroll-snap-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-scrollbars-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-shadow-parts-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-shapes-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-shapes-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-size-adjust-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-sizing-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-sizing-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-speech-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-syntax-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-tables-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-text-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-text-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-text-decor-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-text-decor-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-transforms-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-transforms-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-transitions-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-transitions-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-ui-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-ui-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-values-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-values-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-variables-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-will-change-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-writing-modes-3/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-writing-modes-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── cssom-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── cssom-view-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── indexes/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── mediaqueries-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── mediaqueries-5/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── resize-observer-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── scroll-animations-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── selectors-4/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── selectors-nonelement-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ ├── Overview.html │ │ │ │ └── Overview_pwtest.js │ │ │ ├── web-animations-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ └── web-animations-2/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── device-memory/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── deviceorientation/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── dpub-pagination/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── fxtf-drafts/ │ │ │ ├── compositing-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── compositing-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── css-masking-1/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── fill-stroke/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── filter-effects-2/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── geometry/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── matrix/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ └── motion-1/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── geolocation-sensor/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── gyroscope/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── longtasks/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── magnetometer/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── media-capabilities/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── mediacapture-image/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── mediacapture-record/ │ │ │ ├── MediaRecorder.bs │ │ │ ├── MediaRecorder.console.txt │ │ │ └── MediaRecorder.html │ │ ├── mediacapture-transform/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── mediasession/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── motion-sensors/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ ├── index.html │ │ │ └── releases/ │ │ │ ├── NOTE/ │ │ │ │ ├── NOTE.bs │ │ │ │ ├── NOTE.console.txt │ │ │ │ └── NOTE.html │ │ │ └── NOTE2/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── openscreenprotocol/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── orientation-sensor/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ ├── index.html │ │ │ └── releases/ │ │ │ ├── FPWD.bs │ │ │ ├── FPWD.console.txt │ │ │ └── FPWD.html │ │ ├── paint-timing/ │ │ │ ├── painttiming.bs │ │ │ ├── painttiming.console.txt │ │ │ └── painttiming.html │ │ ├── payment-method-manifest/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── permissions/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── picture-in-picture/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── proximity/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── reporting/ │ │ │ ├── network-reporting.bs │ │ │ ├── network-reporting.console.txt │ │ │ └── network-reporting.html │ │ ├── sensors/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ ├── index.html │ │ │ ├── usecases.bs │ │ │ ├── usecases.console.txt │ │ │ └── usecases.html │ │ ├── svgwg/ │ │ │ └── specs/ │ │ │ ├── color/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── marker/ │ │ │ │ ├── Overview.bs │ │ │ │ ├── Overview.console.txt │ │ │ │ └── Overview.html │ │ │ ├── svg-native/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ └── transform/ │ │ │ ├── Overview.bs │ │ │ ├── Overview.console.txt │ │ │ └── Overview.html │ │ ├── w3process/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── wcag-act/ │ │ │ ├── NOTE-act-rules-common-aspects.bs │ │ │ ├── NOTE-act-rules-common-aspects.console.txt │ │ │ ├── NOTE-act-rules-common-aspects.html │ │ │ ├── act-fr-reqs.bs │ │ │ ├── act-fr-reqs.console.txt │ │ │ ├── act-fr-reqs.html │ │ │ ├── act-rules-format.bs │ │ │ ├── act-rules-format.console.txt │ │ │ └── act-rules-format.html │ │ ├── webappsec-change-password-url/ │ │ │ ├── change-password-url.bs │ │ │ ├── change-password-url.console.txt │ │ │ ├── change-password-url.html │ │ │ ├── response-code-reliability.bs │ │ │ ├── response-code-reliability.console.txt │ │ │ └── response-code-reliability.html │ │ ├── webappsec-credential-management/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-csp/ │ │ │ ├── 2/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ ├── api/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ ├── cookies/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ ├── document/ │ │ │ │ ├── index.bs │ │ │ │ ├── index.console.txt │ │ │ │ └── index.html │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ ├── index.html │ │ │ └── pinning/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-fetch-metadata/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-mixed-content/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-permissions-policy/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-post-spectre-webdev/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-suborigins/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-subresource-integrity/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-trusted-types/ │ │ │ └── spec/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-uisecurity/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webappsec-upgrade-insecure-requests/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webauthn/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webdriver-bidi/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webrtc-encoded-transform/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webrtc-priority/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── webtransport/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ └── webvtt/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── w3ctag/ │ │ ├── client-certificates/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── design-principles/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── evergreen-web/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── promises-guide/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ ├── security-questionnaire/ │ │ │ ├── index.bs │ │ │ ├── index.console.txt │ │ │ └── index.html │ │ └── url/ │ │ ├── url.bs │ │ ├── url.console.txt │ │ └── url.html │ └── whatwg/ │ ├── compat/ │ │ ├── compatibility.bs │ │ ├── compatibility.console.txt │ │ └── compatibility.html │ ├── console/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── dom/ │ │ ├── dom.bs │ │ ├── dom.console.txt │ │ └── dom.html │ ├── encoding/ │ │ ├── encoding.bs │ │ ├── encoding.console.txt │ │ └── encoding.html │ ├── fetch/ │ │ ├── fetch.bs │ │ ├── fetch.console.txt │ │ └── fetch.html │ ├── fullscreen/ │ │ ├── fullscreen.bs │ │ ├── fullscreen.console.txt │ │ └── fullscreen.html │ ├── infra/ │ │ ├── infra.bs │ │ ├── infra.console.txt │ │ └── infra.html │ ├── loader/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── mimesniff/ │ │ ├── mimesniff.bs │ │ ├── mimesniff.console.txt │ │ └── mimesniff.html │ ├── notifications/ │ │ ├── notifications.bs │ │ ├── notifications.console.txt │ │ └── notifications.html │ ├── quirks/ │ │ ├── quirks.bs │ │ ├── quirks.console.txt │ │ ├── quirks.html │ │ └── quirks_pwtest.js │ ├── storage/ │ │ ├── storage.bs │ │ ├── storage.console.txt │ │ └── storage.html │ ├── streams/ │ │ ├── index.bs │ │ ├── index.console.txt │ │ └── index.html │ ├── url/ │ │ ├── url.bs │ │ ├── url.console.txt │ │ └── url.html │ └── xhr/ │ ├── xhr.bs │ ├── xhr.console.txt │ └── xhr.html ├── highlight001.bs ├── highlight001.console.txt ├── highlight001.html ├── idl001.bs ├── idl001.console.txt ├── idl001.html ├── idl002.bs ├── idl002.console.txt ├── idl002.html ├── idl003.bs ├── idl003.console.txt ├── idl003.html ├── idl004.bs ├── idl004.console.txt ├── idl004.html ├── idl005.bs ├── idl005.console.txt ├── idl005.html ├── idl006.bs ├── idl006.console.txt ├── idl006.html ├── idl007.bs ├── idl007.console.txt ├── idl007.html ├── idl008.bs ├── idl008.console.txt ├── idl008.html ├── idl009.bs ├── idl009.console.txt ├── idl009.html ├── idl010.bs ├── idl010.console.txt ├── idl010.html ├── img-sizing/ │ ├── image-size001.bs │ ├── image-size001.console.txt │ └── image-size001.html ├── include001.bs ├── include001.console.txt ├── include001.html ├── include001.txt ├── include002-1.txt ├── include002-2.txt ├── include002-3.txt ├── include002.bs ├── include002.console.txt ├── include002.html ├── include003.bs ├── include003.console.txt ├── include003.html ├── include003.txt ├── include004-files/ │ ├── include004-2.bs │ ├── include004-2.html │ ├── include004-files/ │ │ ├── include004-2.bs │ │ ├── include004-2.html │ │ ├── include004.bs │ │ └── include004.html │ ├── include004.bs │ └── include004.html ├── include004.bs ├── include004.console.txt ├── include004.html ├── include005.bs ├── include005.console.txt ├── include005.html ├── include006.bs ├── include006.console.txt ├── include006.html ├── include006.txt ├── index001.bs ├── index001.console.txt ├── index001.html ├── index002.bs ├── index002.console.txt ├── index002.html ├── index003.bs ├── index003.console.txt ├── index003.html ├── lexer001.bs ├── lexer001.console.txt ├── lexer001.html ├── line-count-001.bs ├── line-count-001.console.txt ├── line-count-001.html ├── link-shorthands001.bs ├── link-shorthands001.console.txt ├── link-shorthands001.html ├── link-shorthands002.bs ├── link-shorthands002.console.txt ├── link-shorthands002.html ├── link-shorthands003.bs ├── link-shorthands003.console.txt ├── link-shorthands003.html ├── link-shorthands004.bs ├── link-shorthands004.console.txt ├── link-shorthands004.html ├── links001.bs ├── links001.console.txt ├── links001.html ├── links001_pwtest.js ├── links002.bs ├── links002.console.txt ├── links002.html ├── links003.bs ├── links003.console.txt ├── links003.html ├── links004.bs ├── links004.console.txt ├── links004.html ├── links005.bs ├── links005.console.txt ├── links005.html ├── links006.bs ├── links006.console.txt ├── links006.html ├── links007.bs ├── links007.console.txt ├── links007.html ├── links008.bs ├── links008.console.txt ├── links008.html ├── links009.bs ├── links009.console.txt ├── links009.html ├── links010.bs ├── links010.console.txt ├── links010.html ├── links011.bs ├── links011.console.txt ├── links011.html ├── lint001.bs ├── lint001.console.txt ├── lint001.html ├── lint002.bs ├── lint002.console.txt ├── lint002.html ├── macros001.bs ├── macros001.console.txt ├── macros001.html ├── macros002.bs ├── macros002.console.txt ├── macros002.html ├── markdown001.bs ├── markdown001.console.txt ├── markdown001.html ├── markdown002.bs ├── markdown002.console.txt ├── markdown002.html ├── markdown003.bs ├── markdown003.console.txt ├── markdown003.html ├── markdown004.bs ├── markdown004.console.txt ├── markdown004.html ├── markdown005.bs ├── markdown005.console.txt ├── markdown005.html ├── markdown006.bs ├── markdown006.console.txt ├── markdown006.html ├── markdown007.bs ├── markdown007.console.txt ├── markdown007.html ├── markdown008.bs ├── markdown008.console.txt ├── markdown008.html ├── markdown009.bs ├── markdown009.console.txt ├── markdown009.html ├── markdown010.bs ├── markdown010.console.txt ├── markdown010.html ├── markdown011.bs ├── markdown011.console.txt ├── markdown011.html ├── markdown012.bs ├── markdown012.console.txt ├── markdown012.html ├── markdown013.bs ├── markdown013.console.txt ├── markdown013.html ├── markdown014.bs ├── markdown014.console.txt ├── markdown014.html ├── merge-metadata001.bs ├── merge-metadata001.console.txt ├── merge-metadata001.html ├── metadata-expires001.bs ├── metadata-expires001.console.txt ├── metadata-expires001.html ├── metadata-expires002.bs ├── metadata-expires002.console.txt ├── metadata-expires002.html ├── metadata-expires003.bs ├── metadata-expires003.console.txt ├── metadata-expires003.html ├── metadata-expires004.bs ├── metadata-expires004.console.txt ├── metadata-expires004.html ├── metadata-expires005.bs ├── metadata-expires005.console.txt ├── metadata-expires005.html ├── metadata-expires006.bs ├── metadata-expires006.console.txt ├── metadata-expires006.html ├── metadata-order001.bs ├── metadata-order001.console.txt ├── metadata-order001.html ├── metadata001.bs ├── metadata001.console.txt ├── metadata001.html ├── metadata002.bs ├── metadata002.console.txt ├── metadata002.html ├── metadata003.bs ├── metadata003.console.txt ├── metadata003.html ├── metadata004.bs ├── metadata004.console.txt ├── metadata004.html ├── metadata005.bs ├── metadata005.console.txt ├── metadata005.html ├── metadata006.bs ├── metadata006.console.txt ├── metadata006.html ├── metadata007.bs ├── metadata007.console.txt ├── metadata007.html ├── metadata008.bs ├── metadata008.console.txt ├── metadata008.html ├── metadata009.bs ├── metadata009.console.txt ├── metadata009.html ├── metadata010.bs ├── metadata010.console.txt ├── metadata010.html ├── metadata011.bs ├── metadata011.console.txt ├── metadata011.html ├── metadata012.bs ├── metadata012.console.txt ├── metadata012.html ├── metadata013.bs ├── metadata013.console.txt ├── metadata013.html ├── metadata014.bs ├── metadata014.console.txt ├── metadata014.html ├── metadata015.bs ├── metadata015.console.txt ├── metadata015.html ├── metadata016.bs ├── metadata016.console.txt ├── metadata016.html ├── metadata017.bs ├── metadata017.console.txt ├── metadata017.html ├── metadata018.bs ├── metadata018.console.txt ├── metadata018.html ├── notes-examples001.bs ├── notes-examples001.console.txt ├── notes-examples001.html ├── notes-issues001.bs ├── notes-issues001.console.txt ├── notes-issues001.html ├── parsing-links001.bs ├── parsing-links001.console.txt ├── parsing-links001.html ├── parsing001.bs ├── parsing001.console.txt ├── parsing001.html ├── pre001.bs ├── pre001.console.txt ├── pre001.html ├── pre002.bs ├── pre002.console.txt ├── pre002.html ├── pre003.bs ├── pre003.console.txt ├── pre003.html ├── pre004.bs ├── pre004.console.txt ├── pre004.html ├── previous-versions-001.bs ├── previous-versions-001.console.txt ├── previous-versions-001.html ├── previous-versions-002.bs ├── previous-versions-002.console.txt ├── previous-versions-002.html ├── previous-versions-003.bs ├── previous-versions-003.console.txt ├── previous-versions-003.html ├── previous-versions-004.bs ├── previous-versions-004.console.txt ├── previous-versions-004.html ├── previous-versions-005.bs ├── previous-versions-005.console.txt ├── previous-versions-005.html ├── previous-versions-006.bs ├── previous-versions-006.console.txt ├── previous-versions-006.html ├── previous-versions-007.bs ├── previous-versions-007.console.txt ├── previous-versions-007.html ├── section-links001.bs ├── section-links001.console.txt ├── section-links001.html ├── section-links002.bs ├── section-links002.console.txt ├── section-links002.html ├── section-links003.bs ├── section-links003.console.txt ├── section-links003.html ├── tar-file001.console.txt ├── tar-file001.html ├── template.bs ├── template.console.txt ├── template.html ├── var001.bs ├── var001.console.txt ├── var001.html ├── var002.bs ├── var002.console.txt └── var002.html