blob: 88c8921a979df98ab4a059cb28243653725e2277 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test-pre.js"></script>
<script>
description("Tests what happens when you make prototype chain accesses with impure GetOwnPropertySlot traps in the way.");
var obj = {};
obj.__proto__ = document;
Document.prototype.foo = function () {};
function f() {
return obj.foo;
}
dfgShouldBe(f, "typeof f()", "\"function\"");
var img = new Image();
img.name = "foo";
document.body.appendChild(img);
shouldBe("typeof f()", "\"object\"");
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>