Bug 1207494 - Part 14: Remove use of expression closure from dom/xbl/. r=bz

--HG--
extra : commitid : GBNpwrxxzil
extra : rebase_source : 1527a44b38903617ae9559aa4704ca3b2e228c57
This commit is contained in:
Tooru Fujisawa 2015-09-23 18:39:17 +09:00
Родитель b3fb4a4c03
Коммит 7431783521
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -152,12 +152,12 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=821850
is(window.primitiveExpando, 11, "Can see waived expandos");
is(window.stringExpando, "stringExpando", "Can see waived expandos");
is(typeof window.objectExpando, "object", "object expando exists");
checkThrows(function() window.objectExpando.foo);
checkThrows(() => window.objectExpando.foo);
is(SpecialPowers.wrap(window.objectExpando).foo, 12, "SpecialPowers sees the right thing");
is(typeof window.globalExpando, "object", "Can see global object");
checkThrows(function() window.globalExpando.win);
checkThrows(() => window.globalExpando.win);
is(window.functionExpando(), "called", "XBL functions are callable");
checkThrows(function() window.functionExpando.prop);
checkThrows(() => window.functionExpando.prop);
// Inspect the bound element.
var bound = document.getElementById('bound');