blob: 4018f9e9da19815ce05204ee28b48deec812308f [file] [log] [blame]
<!DOCTYPE html>
<script src="../js/resources/js-test-pre.js"></script>
<script>
description('This tests that setting the proto of a built in constructor is not reset');
shouldBe('Object.getPrototypeOf(HTMLElement)', 'Function.prototype');
var proto = new Number(42);
HTMLElement.__proto__ = proto;
shouldBe('Object.getPrototypeOf(HTMLElement)', 'proto');
</script>
<script src="../js/resources/js-test-post.js"></script>