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