Bug 1591982 - Removed 'timestamp' property from Page.navigatedWithinDocument and Page.frameStoppedLoading r=whimboo,ato

Differential Revision: https://phabricator.services.mozilla.com/D51529

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Thomas 2019-11-06 14:42:20 +00:00
Родитель fd241bcb5a
Коммит e1ff6f24a2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -143,8 +143,8 @@ class Page extends ContentProcessDomain {
case "pageshow":
this.emit("Page.loadEventFired", { timestamp, frameId });
// XXX this should most likely be sent differently
this.emit("Page.navigatedWithinDocument", { timestamp, frameId, url });
this.emit("Page.frameStoppedLoading", { timestamp, frameId });
this.emit("Page.navigatedWithinDocument", { frameId, url });
this.emit("Page.frameStoppedLoading", { frameId });
break;
}
}