blob: 388ccaf572ed7f44385419e4497a6780e1828f7e [file] [log] [blame]
<!doctype html>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description('Tests that Replaceable attributes are writable');
shouldBeTrue('Object.getOwnPropertyDescriptor(window, "innerHeight").writable');
window.innerHeight = 42;
shouldBe('window.innerHeight', '42');
</script>
<script src="../../../resources/js-test-post.js"></script>