├── .github └── ISSUE_TEMPLATE │ ├── raise-an-issue-on-the-centralized-consent-api-explainer.md │ ├── raise-an-issue-on-the-mediasessioncoordinator-explainer.md │ ├── raise-an-issue-on-the-model-element-explainer.md │ ├── raise-an-issue-on-the-spatial-backdrop-explainer.md │ ├── raise-an-issue-on-the-text-tracks-explainer.md │ └── raise-an-issue-on-the-undomanager-explainer.md ├── .gitignore ├── CaptionDisplaySettings └── README.md ├── CentralizedConsentAPI ├── Makefile └── README.md ├── DeclarativeWebPush ├── Makefile └── README.md ├── IsLoggedIn └── README.md ├── MediaSessionCoordinator └── README.md ├── README.md ├── ThirdPartyPrivateTokens └── README.md ├── TrackConfiguration └── README.md ├── UndoManager ├── README.md ├── demo │ ├── UndoManager-demo.mov │ ├── drawing.js │ ├── editing.js │ ├── index.css │ ├── index.html │ └── index.js ├── edit-menu-bar-macOS.png ├── shake-to-undo-iOS.png └── undo-system-ui-iOS.png ├── animation-frame-rate └── README.md ├── cryptographic-message-syntax-API ├── Makefile └── README.md ├── model ├── HistoryAndEvolution.md ├── Makefile ├── README.md ├── assets │ ├── haha.blend │ ├── haha.glb │ ├── haha.png │ └── haha.usdz └── example.html ├── remote-cryptokeys ├── Makefile ├── README.md └── key-use-overview.png ├── sms-one-time-code-format └── README.md ├── spatial-backdrop ├── README.md └── assets │ ├── backdropanim.webp │ └── studio_small_09.webp └── texttracks ├── Makefile └── README.md /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-centralized-consent-api-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-centralized-consent-api-explainer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-mediasessioncoordinator-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-mediasessioncoordinator-explainer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-model-element-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-model-element-explainer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-spatial-backdrop-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-spatial-backdrop-explainer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-text-tracks-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-text-tracks-explainer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/raise-an-issue-on-the-undomanager-explainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/.github/ISSUE_TEMPLATE/raise-an-issue-on-the-undomanager-explainer.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /CaptionDisplaySettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/CaptionDisplaySettings/README.md -------------------------------------------------------------------------------- /CentralizedConsentAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/CentralizedConsentAPI/Makefile -------------------------------------------------------------------------------- /CentralizedConsentAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/CentralizedConsentAPI/README.md -------------------------------------------------------------------------------- /DeclarativeWebPush/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/DeclarativeWebPush/Makefile -------------------------------------------------------------------------------- /DeclarativeWebPush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/DeclarativeWebPush/README.md -------------------------------------------------------------------------------- /IsLoggedIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/IsLoggedIn/README.md -------------------------------------------------------------------------------- /MediaSessionCoordinator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/MediaSessionCoordinator/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyPrivateTokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/ThirdPartyPrivateTokens/README.md -------------------------------------------------------------------------------- /TrackConfiguration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/TrackConfiguration/README.md -------------------------------------------------------------------------------- /UndoManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/README.md -------------------------------------------------------------------------------- /UndoManager/demo/UndoManager-demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/UndoManager-demo.mov -------------------------------------------------------------------------------- /UndoManager/demo/drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/drawing.js -------------------------------------------------------------------------------- /UndoManager/demo/editing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/editing.js -------------------------------------------------------------------------------- /UndoManager/demo/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/index.css -------------------------------------------------------------------------------- /UndoManager/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/index.html -------------------------------------------------------------------------------- /UndoManager/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/demo/index.js -------------------------------------------------------------------------------- /UndoManager/edit-menu-bar-macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/edit-menu-bar-macOS.png -------------------------------------------------------------------------------- /UndoManager/shake-to-undo-iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/shake-to-undo-iOS.png -------------------------------------------------------------------------------- /UndoManager/undo-system-ui-iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/UndoManager/undo-system-ui-iOS.png -------------------------------------------------------------------------------- /animation-frame-rate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/animation-frame-rate/README.md -------------------------------------------------------------------------------- /cryptographic-message-syntax-API/Makefile: -------------------------------------------------------------------------------- 1 | update-toc: 2 | doctoc README.md 3 | -------------------------------------------------------------------------------- /cryptographic-message-syntax-API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/cryptographic-message-syntax-API/README.md -------------------------------------------------------------------------------- /model/HistoryAndEvolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/HistoryAndEvolution.md -------------------------------------------------------------------------------- /model/Makefile: -------------------------------------------------------------------------------- 1 | update-toc: 2 | doctoc README.md 3 | -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/README.md -------------------------------------------------------------------------------- /model/assets/haha.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/assets/haha.blend -------------------------------------------------------------------------------- /model/assets/haha.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/assets/haha.glb -------------------------------------------------------------------------------- /model/assets/haha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/assets/haha.png -------------------------------------------------------------------------------- /model/assets/haha.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/assets/haha.usdz -------------------------------------------------------------------------------- /model/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/model/example.html -------------------------------------------------------------------------------- /remote-cryptokeys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/remote-cryptokeys/Makefile -------------------------------------------------------------------------------- /remote-cryptokeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/remote-cryptokeys/README.md -------------------------------------------------------------------------------- /remote-cryptokeys/key-use-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/remote-cryptokeys/key-use-overview.png -------------------------------------------------------------------------------- /sms-one-time-code-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/sms-one-time-code-format/README.md -------------------------------------------------------------------------------- /spatial-backdrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/spatial-backdrop/README.md -------------------------------------------------------------------------------- /spatial-backdrop/assets/backdropanim.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/spatial-backdrop/assets/backdropanim.webp -------------------------------------------------------------------------------- /spatial-backdrop/assets/studio_small_09.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/spatial-backdrop/assets/studio_small_09.webp -------------------------------------------------------------------------------- /texttracks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/texttracks/Makefile -------------------------------------------------------------------------------- /texttracks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebKit/explainers/HEAD/texttracks/README.md --------------------------------------------------------------------------------