├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-publish.yml │ └── tidy.yml ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ECHIDNA ├── LICENSE.md ├── README.md ├── W3CTRMANIFEST ├── demo └── index.html ├── index.html ├── published ├── 20120522.html ├── 20121123.html ├── 20140220.html └── 20141023.html ├── tidyconfig.txt └── w3c.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/.github/workflows/tidy.yml -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ECHIDNA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/ECHIDNA -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/README.md -------------------------------------------------------------------------------- /W3CTRMANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/W3CTRMANIFEST -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/demo/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/index.html -------------------------------------------------------------------------------- /published/20120522.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/published/20120522.html -------------------------------------------------------------------------------- /published/20121123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/published/20121123.html -------------------------------------------------------------------------------- /published/20140220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/published/20140220.html -------------------------------------------------------------------------------- /published/20141023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/published/20141023.html -------------------------------------------------------------------------------- /tidyconfig.txt: -------------------------------------------------------------------------------- 1 | char-encoding: utf8 2 | indent: yes 3 | wrap: 80 4 | tidy-mark: no 5 | -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/screen-orientation/HEAD/w3c.json --------------------------------------------------------------------------------