Bug 1285560 - test_window_oninstall_event.html is kinda broken. r=baku

This commit is contained in:
Marcos Caceres 2016-07-12 00:01:00 +02:00
Родитель 466b4c4e05
Коммит 2ed95af0e9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -20,7 +20,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1265279
.then(checkAddEventListenerFires)
.then(finish)
.catch(err => {
dump(`${err}: ${err.stack}`);
ok(false, err.stack);
finish();
});
@ -59,7 +59,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1265279
is(ifrWindow.oninstall, null, "window install is initially set to null");
// Check that enumerable, configurable, and has a getter and setter.
const objDescriptor = Object.getOwnPropertyDescriptor(window, "oninstall");
const objDescriptor = Object.getOwnPropertyDescriptor(ifrWindow, "oninstall");
ok(objDescriptor.enumerable, "is enumerable");
ok(objDescriptor.configurable, "is configurable");
ok(objDescriptor.hasOwnProperty("get"), "has getter");