devtools-timeline-model
devtools-timeline-model copied to clipboard
Unsupported
Bumps [minimatch](https://github.com/isaacs/minimatch) to 3.0.4 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 0.3.0 to 3.0.4 Commits e46989a v3.0.4 ddfacbd update brace-expansion 55ed736 update...
I am using Tracealayzer node module. got the below error in devtools-timeline module ``` promiserejection TypeError: Cannot read property 'error' of undefined at TimelineModel.TimelineModel._processMetadataEvents (chrome-devtools-frontend/front_end/timeline_model/TimelineModel.js:267:22) at TimelineModel.TimelineModel.setEvents (chrome-devtools-frontend/front_end/timeline_model/TimelineModel.js:174:31) at SandboxedModel.init...
the bottom-up and topdown results aren't sorted correctly. aside from that, this is in good shape.
Hello - I am trying to automate some performance measurements and I want to get the results from the Summary chart in DevTools. Specifically, I am looking at the Scripting...
Bumps [eslint](https://github.com/eslint/eslint) from 2.13.1 to 4.18.2. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v4.18.2 > * 6b71fd0 Fix: [email protected], because 4.0.3 needs "ajv": "^6.0.1" ([#10022](https://github-redirect.dependabot.com/eslint/eslint/issues/10022)) (Mathieu Seiler) > *...
Hi Paul, I've been trying out the devtools timeline (great work, it so nice to not parse the log) and it seems like scripting time is always low. If I...
Traces recorded with the current `1.3.0` version of [puppeteer](https://github.com/GoogleChrome/puppeteer) are missing a valid frame model, instead it's just empty. Chromium(`67.0.3391.0 dev`) as well as the online [DevTools Timeline Viewer](https://chromedevtools.github.io/timeline-viewer/) process...
Thanks for such an awesome library! Is there any documentation describing the resulting model and all of its methods and properties?
I'm trying to dump the firehose out of `dataCollected`: ```javascript await Tracing.dataCollected(data => { try { events.push(new TimelineModel(data.value)); } catch (e) { events.push(data.value); } }); await Page.loadEventFired(); await Tracing.start(); await...