blob: 0d0259fb7f3d35e8025f1c30d51cbde1242e1f6f [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 img = new Image();
img.name = "getElementsByTagName";
document.body.appendChild(img);
function f() {
return document.getElementsByTagName;
}
dfgShouldBe(f, "typeof f()", "\"object\"");
shouldBe("document.body.removeChild(img); typeof f()", "\"function\"")
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>