Bug 1218078 - Show onload and DOMContentLoaded markers in the netmonitor's frontend, r=smaug, jsantell, tromey

This commit is contained in:
Victor Porof
2015-11-11 23:11:40 +01:00
parent 6053941a19
commit 6f06282523
25 changed files with 568 additions and 168 deletions

View File

@@ -29,8 +29,12 @@ function mapRecordingOptions (type, options) {
if (type === "timeline") {
return {
withMemory: options.withMemory,
withMarkers: true,
withTicks: options.withTicks,
withMemory: options.withMemory,
withFrames: true,
withGCEvents: true,
withDocLoadingEvents: false
};
}