Bug 1715086 - Remove unnecessary generator from devtools/server/tests/browser/storage-unsecured-iframe.html r=jdescottes

There is no async cleanup here - generator not necessary

Differential Revision: https://phabricator.services.mozilla.com/D117048
This commit is contained in:
Andrey Bienkowski 2021-06-07 20:21:30 +00:00
Родитель 5502682b68
Коммит fb78794b4c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -16,7 +16,7 @@ sessionStorage.setItem("iframe-u-ss1", "foobar1");
sessionStorage.setItem("iframe-u-ss2", "foobar2");
console.log("added cookies and stuff from unsecured iframe");
window.clear = function* () {
window.clear = function () {
document.cookie = "uc1=; expires=Thu, 01 Jan 1970 00:00:00 GMT";
localStorage.clear();
sessionStorage.clear();