blob: bedac4aabe341dd403095ff96673b5fee4e95158 [file] [log] [blame]
<!doctype html>
<script src="../../js/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="../../js/resources/js-test-post.js"></script>