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