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