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