├── .gitignore ├── demo ├── layout-thrash.html ├── mdn-fling.json └── perf-test.html ├── get-cpu-profile.js ├── get-timeline-trace.js ├── log-trace-metrics.js ├── package.json ├── readme.md ├── test-for-layout-thrashing.js └── util └── browser-perf-summary.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /demo/layout-thrash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/demo/layout-thrash.html -------------------------------------------------------------------------------- /demo/mdn-fling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/demo/mdn-fling.json -------------------------------------------------------------------------------- /demo/perf-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/demo/perf-test.html -------------------------------------------------------------------------------- /get-cpu-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/get-cpu-profile.js -------------------------------------------------------------------------------- /get-timeline-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/get-timeline-trace.js -------------------------------------------------------------------------------- /log-trace-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/log-trace-metrics.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/readme.md -------------------------------------------------------------------------------- /test-for-layout-thrashing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/test-for-layout-thrashing.js -------------------------------------------------------------------------------- /util/browser-perf-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulirish/automated-chrome-profiling/HEAD/util/browser-perf-summary.js --------------------------------------------------------------------------------