├── .nojekyll ├── .pr-preview.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PRIVACY_AND_SECURITY.md ├── README.md ├── doc ├── state-extensions-slides.pdf ├── tpac-2018-slides.pdf └── tpac-2021-slides.pdf ├── index.html ├── markers.md ├── perf.html.png └── w3c.json /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PRIVACY_AND_SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/PRIVACY_AND_SECURITY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/README.md -------------------------------------------------------------------------------- /doc/state-extensions-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/doc/state-extensions-slides.pdf -------------------------------------------------------------------------------- /doc/tpac-2018-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/doc/tpac-2018-slides.pdf -------------------------------------------------------------------------------- /doc/tpac-2021-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/doc/tpac-2021-slides.pdf -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/index.html -------------------------------------------------------------------------------- /markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/markers.md -------------------------------------------------------------------------------- /perf.html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/perf.html.png -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/js-self-profiling/HEAD/w3c.json --------------------------------------------------------------------------------