blob: d07ed04cb54bc7766061843f2322ed560b895d1f [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").hasOwnProperty("get")');
window.innerHeight = 42;
shouldBe('window.innerHeight', '42');
</script>
<script src="../../../resources/js-test-post.js"></script>