├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── 0-new-issue.yml │ ├── 1-new-feature.yml │ └── config.yml └── workflows │ └── build.yml ├── .pr-preview.json ├── 404.html ├── CONTRIBUTING.md ├── FAQ.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── demos ├── canvas │ └── blue-robot │ │ ├── blue-robot.png │ │ ├── index-idle.html │ │ └── index.html └── workers │ ├── crypto │ ├── libcrypto-v1.js │ ├── libcrypto-v2-decryptor.js │ ├── libcrypto-v2-encryptor.js │ ├── libcrypto-v2-generator.js │ ├── libcrypto-v2.js │ └── page.html │ ├── modules │ ├── filters.js │ ├── page.html │ └── worker.js │ ├── multicore │ ├── core.js │ ├── page.html │ └── worker.js │ ├── multiviewer │ ├── page.html │ ├── viewer.html │ └── worker.js │ ├── primes │ ├── page.html │ └── worker.js │ └── shared │ ├── 001 │ ├── test.html │ └── test.js │ ├── 002 │ ├── test.html │ └── test.js │ └── 003 │ ├── inner.html │ ├── test.html │ └── test.js ├── dev ├── droidserif-bold.woff2 ├── droidserif-bolditalic.woff2 ├── droidserif-italic.woff2 ├── droidserif.woff2 ├── mplus-2p-heavy.woff ├── search.js └── styles.css ├── fonts ├── Essays1743-Bold.ttf ├── Essays1743-BoldItalic.ttf ├── Essays1743-Italic.ttf └── Essays1743.ttf ├── html-dfn.js ├── images ├── abstract.jpeg ├── abstract.png ├── arc1.png ├── arcTo1.png ├── arcTo2.png ├── arcTo3.png ├── asyncdefer.svg ├── baselines.png ├── bidiselect.png ├── content-venn.svg ├── custom-element-reactions.svg ├── drawImage.png ├── fingerprint.png ├── focus-tree.png ├── im.png ├── inert-example-loading-section.png ├── ircfog-modules.svg ├── kettlebell.jpg ├── media-stream-1.png ├── media-stream-2.png ├── outline.svg ├── parsing-model-overview.svg ├── premultiplied-example-1.png ├── premultiplied-example-2.png ├── premultiplied-example-3.png ├── premultiplied-example-4.png ├── premultiplied-example-5.png ├── robots.jpeg ├── sample-bdi.png ├── sample-calendar.png ├── sample-card.png ├── sample-datalist.svg ├── sample-details-1.png ├── sample-details-2.png ├── sample-email-1.svg ├── sample-email-2.svg ├── sample-makeapp.png ├── sample-meter.png ├── sample-not-bdi.png ├── sample-progress.png ├── sample-range-2a.png ├── sample-range-2b.png ├── sample-range-labels.png ├── sample-range-multiple.png ├── sample-range.png ├── sample-ruby-bopomofo.png ├── sample-ruby-ja.png ├── sample-ruby-pinyin.png ├── sample-url.svg ├── sample-usemap.png ├── select-country-1.png ├── select-country-2.png ├── table-scope-diagram.png ├── websocket-protocol-diagram.txt └── wolf.jpg ├── link-fixup.js ├── review-drafts ├── 2018-07.wattsi ├── 2019-01.wattsi ├── 2019-07.wattsi ├── 2020-01.wattsi ├── 2020-07.wattsi ├── 2021-01.wattsi ├── 2021-07.wattsi ├── 2022-01.wattsi ├── 2022-07.wattsi ├── 2023-01.wattsi ├── 2023-07.wattsi ├── 2024-01.wattsi ├── 2024-07.wattsi ├── 2025-01.wattsi └── 2025-07.wattsi ├── source ├── styles.css └── var-click-highlighting.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-new-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.github/ISSUE_TEMPLATE/0-new-issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.github/ISSUE_TEMPLATE/1-new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/404.html -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: 2 | @echo "Please see CONTRIBUTING.md for instructions on building HTML." 3 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/README.md -------------------------------------------------------------------------------- /demos/canvas/blue-robot/blue-robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/canvas/blue-robot/blue-robot.png -------------------------------------------------------------------------------- /demos/canvas/blue-robot/index-idle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/canvas/blue-robot/index-idle.html -------------------------------------------------------------------------------- /demos/canvas/blue-robot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/canvas/blue-robot/index.html -------------------------------------------------------------------------------- /demos/workers/crypto/libcrypto-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/libcrypto-v1.js -------------------------------------------------------------------------------- /demos/workers/crypto/libcrypto-v2-decryptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/libcrypto-v2-decryptor.js -------------------------------------------------------------------------------- /demos/workers/crypto/libcrypto-v2-encryptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/libcrypto-v2-encryptor.js -------------------------------------------------------------------------------- /demos/workers/crypto/libcrypto-v2-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/libcrypto-v2-generator.js -------------------------------------------------------------------------------- /demos/workers/crypto/libcrypto-v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/libcrypto-v2.js -------------------------------------------------------------------------------- /demos/workers/crypto/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/crypto/page.html -------------------------------------------------------------------------------- /demos/workers/modules/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/modules/filters.js -------------------------------------------------------------------------------- /demos/workers/modules/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/modules/page.html -------------------------------------------------------------------------------- /demos/workers/modules/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/modules/worker.js -------------------------------------------------------------------------------- /demos/workers/multicore/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multicore/core.js -------------------------------------------------------------------------------- /demos/workers/multicore/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multicore/page.html -------------------------------------------------------------------------------- /demos/workers/multicore/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multicore/worker.js -------------------------------------------------------------------------------- /demos/workers/multiviewer/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multiviewer/page.html -------------------------------------------------------------------------------- /demos/workers/multiviewer/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multiviewer/viewer.html -------------------------------------------------------------------------------- /demos/workers/multiviewer/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/multiviewer/worker.js -------------------------------------------------------------------------------- /demos/workers/primes/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/primes/page.html -------------------------------------------------------------------------------- /demos/workers/primes/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/primes/worker.js -------------------------------------------------------------------------------- /demos/workers/shared/001/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/001/test.html -------------------------------------------------------------------------------- /demos/workers/shared/001/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/001/test.js -------------------------------------------------------------------------------- /demos/workers/shared/002/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/002/test.html -------------------------------------------------------------------------------- /demos/workers/shared/002/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/002/test.js -------------------------------------------------------------------------------- /demos/workers/shared/003/inner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/003/inner.html -------------------------------------------------------------------------------- /demos/workers/shared/003/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/003/test.html -------------------------------------------------------------------------------- /demos/workers/shared/003/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/demos/workers/shared/003/test.js -------------------------------------------------------------------------------- /dev/droidserif-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/droidserif-bold.woff2 -------------------------------------------------------------------------------- /dev/droidserif-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/droidserif-bolditalic.woff2 -------------------------------------------------------------------------------- /dev/droidserif-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/droidserif-italic.woff2 -------------------------------------------------------------------------------- /dev/droidserif.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/droidserif.woff2 -------------------------------------------------------------------------------- /dev/mplus-2p-heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/mplus-2p-heavy.woff -------------------------------------------------------------------------------- /dev/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/search.js -------------------------------------------------------------------------------- /dev/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/dev/styles.css -------------------------------------------------------------------------------- /fonts/Essays1743-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/fonts/Essays1743-Bold.ttf -------------------------------------------------------------------------------- /fonts/Essays1743-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/fonts/Essays1743-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Essays1743-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/fonts/Essays1743-Italic.ttf -------------------------------------------------------------------------------- /fonts/Essays1743.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/fonts/Essays1743.ttf -------------------------------------------------------------------------------- /html-dfn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/html-dfn.js -------------------------------------------------------------------------------- /images/abstract.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/abstract.jpeg -------------------------------------------------------------------------------- /images/abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/abstract.png -------------------------------------------------------------------------------- /images/arc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/arc1.png -------------------------------------------------------------------------------- /images/arcTo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/arcTo1.png -------------------------------------------------------------------------------- /images/arcTo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/arcTo2.png -------------------------------------------------------------------------------- /images/arcTo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/arcTo3.png -------------------------------------------------------------------------------- /images/asyncdefer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/asyncdefer.svg -------------------------------------------------------------------------------- /images/baselines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/baselines.png -------------------------------------------------------------------------------- /images/bidiselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/bidiselect.png -------------------------------------------------------------------------------- /images/content-venn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/content-venn.svg -------------------------------------------------------------------------------- /images/custom-element-reactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/custom-element-reactions.svg -------------------------------------------------------------------------------- /images/drawImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/drawImage.png -------------------------------------------------------------------------------- /images/fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/fingerprint.png -------------------------------------------------------------------------------- /images/focus-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/focus-tree.png -------------------------------------------------------------------------------- /images/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/im.png -------------------------------------------------------------------------------- /images/inert-example-loading-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/inert-example-loading-section.png -------------------------------------------------------------------------------- /images/ircfog-modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/ircfog-modules.svg -------------------------------------------------------------------------------- /images/kettlebell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/kettlebell.jpg -------------------------------------------------------------------------------- /images/media-stream-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/media-stream-1.png -------------------------------------------------------------------------------- /images/media-stream-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/media-stream-2.png -------------------------------------------------------------------------------- /images/outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/outline.svg -------------------------------------------------------------------------------- /images/parsing-model-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/parsing-model-overview.svg -------------------------------------------------------------------------------- /images/premultiplied-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/premultiplied-example-1.png -------------------------------------------------------------------------------- /images/premultiplied-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/premultiplied-example-2.png -------------------------------------------------------------------------------- /images/premultiplied-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/premultiplied-example-3.png -------------------------------------------------------------------------------- /images/premultiplied-example-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/premultiplied-example-4.png -------------------------------------------------------------------------------- /images/premultiplied-example-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/premultiplied-example-5.png -------------------------------------------------------------------------------- /images/robots.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/robots.jpeg -------------------------------------------------------------------------------- /images/sample-bdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-bdi.png -------------------------------------------------------------------------------- /images/sample-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-calendar.png -------------------------------------------------------------------------------- /images/sample-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-card.png -------------------------------------------------------------------------------- /images/sample-datalist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-datalist.svg -------------------------------------------------------------------------------- /images/sample-details-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-details-1.png -------------------------------------------------------------------------------- /images/sample-details-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-details-2.png -------------------------------------------------------------------------------- /images/sample-email-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-email-1.svg -------------------------------------------------------------------------------- /images/sample-email-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-email-2.svg -------------------------------------------------------------------------------- /images/sample-makeapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-makeapp.png -------------------------------------------------------------------------------- /images/sample-meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-meter.png -------------------------------------------------------------------------------- /images/sample-not-bdi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-not-bdi.png -------------------------------------------------------------------------------- /images/sample-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-progress.png -------------------------------------------------------------------------------- /images/sample-range-2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-range-2a.png -------------------------------------------------------------------------------- /images/sample-range-2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-range-2b.png -------------------------------------------------------------------------------- /images/sample-range-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-range-labels.png -------------------------------------------------------------------------------- /images/sample-range-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-range-multiple.png -------------------------------------------------------------------------------- /images/sample-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-range.png -------------------------------------------------------------------------------- /images/sample-ruby-bopomofo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-ruby-bopomofo.png -------------------------------------------------------------------------------- /images/sample-ruby-ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-ruby-ja.png -------------------------------------------------------------------------------- /images/sample-ruby-pinyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-ruby-pinyin.png -------------------------------------------------------------------------------- /images/sample-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-url.svg -------------------------------------------------------------------------------- /images/sample-usemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/sample-usemap.png -------------------------------------------------------------------------------- /images/select-country-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/select-country-1.png -------------------------------------------------------------------------------- /images/select-country-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/select-country-2.png -------------------------------------------------------------------------------- /images/table-scope-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/table-scope-diagram.png -------------------------------------------------------------------------------- /images/websocket-protocol-diagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/websocket-protocol-diagram.txt -------------------------------------------------------------------------------- /images/wolf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/images/wolf.jpg -------------------------------------------------------------------------------- /link-fixup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/link-fixup.js -------------------------------------------------------------------------------- /review-drafts/2018-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2018-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2019-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2019-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2019-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2019-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2020-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2020-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2020-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2020-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2021-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2021-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2021-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2021-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2022-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2022-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2022-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2022-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2023-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2023-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2023-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2023-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2024-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2024-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2024-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2024-07.wattsi -------------------------------------------------------------------------------- /review-drafts/2025-01.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2025-01.wattsi -------------------------------------------------------------------------------- /review-drafts/2025-07.wattsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/review-drafts/2025-07.wattsi -------------------------------------------------------------------------------- /source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/source -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/styles.css -------------------------------------------------------------------------------- /var-click-highlighting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatwg/html/HEAD/var-click-highlighting.js --------------------------------------------------------------------------------