blob: 22178218694557a3729134630b1de3018a8865e3 [file] [log] [blame]
function f() {}
var g = new Function();
delete Function;
function h() {}
assertEq(f.__proto__, g.__proto__);
assertEq(g.__proto__, h.__proto__);
assertEq(false, "Function" in this);
reportCompare("ok", "ok", "bug 569306");