├── .github └── workflows │ └── auto-publish.yml ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── images ├── interoperability-1ua.png ├── interoperability-2ua.png ├── uc-multiplayer-game-player-alice.png ├── uc-multiplayer-game-player-bob.png └── uc-multiplayer-game-poker-table.png ├── index.html ├── interoperability.md ├── releases ├── FPWD.html └── WD.html ├── uc-req.md └── w3c.json /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/README.md -------------------------------------------------------------------------------- /images/interoperability-1ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/images/interoperability-1ua.png -------------------------------------------------------------------------------- /images/interoperability-2ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/images/interoperability-2ua.png -------------------------------------------------------------------------------- /images/uc-multiplayer-game-player-alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/images/uc-multiplayer-game-player-alice.png -------------------------------------------------------------------------------- /images/uc-multiplayer-game-player-bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/images/uc-multiplayer-game-player-bob.png -------------------------------------------------------------------------------- /images/uc-multiplayer-game-poker-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/images/uc-multiplayer-game-poker-table.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/index.html -------------------------------------------------------------------------------- /interoperability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/interoperability.md -------------------------------------------------------------------------------- /releases/FPWD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/releases/FPWD.html -------------------------------------------------------------------------------- /releases/WD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/releases/WD.html -------------------------------------------------------------------------------- /uc-req.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/uc-req.md -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/presentation-api/HEAD/w3c.json --------------------------------------------------------------------------------