DOMContentLoaded and load does not work properly if "devtools.webconsole.persistlog == true" - is getting higher

Issue #52
This commit is contained in:
janekptacijarabaci 2018-03-05 20:30:12 +01:00 committed by Roy Tam
commit b8bbffacbe
3 changed files with 20 additions and 9 deletions

View file

@ -275,8 +275,15 @@ RequestsMenuView.prototype = Heritage.extend(WidgetMethods, {
this._addQueue = [];
this._updateQueue = [];
this._firstRequestStartedMillis = -1;
this._firstRequestStartedMillisInRequests = false;
this._lastRequestEndedMillis = -1;
this.resetNotPersistent();
},
/**
* Reset informations that "devtools.webconsole.persistlog == true".
*/
resetNotPersistent: function () {
this._firstRequestStartedMillisNotPersistent = -1;
},
/**
@ -651,9 +658,7 @@ RequestsMenuView.prototype = Heritage.extend(WidgetMethods, {
// Append a network request item to this container.
let requestItem = this.push([menuView, id], {
attachment: {
firstRequestStartedMillis: this._firstRequestStartedMillisInRequests
? null
: this._firstRequestStartedMillis,
firstRequestStartedMillisNotPersistent: this._firstRequestStartedMillisNotPersistent,
startedDeltaMillis: unixTime - this._firstRequestStartedMillis,
startedMillis: unixTime,
method: method,
@ -665,8 +670,6 @@ RequestsMenuView.prototype = Heritage.extend(WidgetMethods, {
}
});
this._firstRequestStartedMillisInRequests = true;
if (id == this._preferredItemId) {
this.selectedItem = requestItem;
}
@ -1528,6 +1531,9 @@ RequestsMenuView.prototype = Heritage.extend(WidgetMethods, {
if (this._firstRequestStartedMillis == -1) {
this._firstRequestStartedMillis = unixTime;
}
if (this._firstRequestStartedMillisNotPersistent == -1) {
this._firstRequestStartedMillisNotPersistent = unixTime;
}
},
/**
@ -1569,7 +1575,7 @@ RequestsMenuView.prototype = Heritage.extend(WidgetMethods, {
_ctx: null,
_cachedWaterfallWidth: 0,
_firstRequestStartedMillis: -1,
_firstRequestStartedMillisInRequests: false,
_firstRequestStartedMillisNotPersistent: -1,
_lastRequestEndedMillis: -1,
_updateQueue: [],
_addQueue: [],