blob: 656f8d38dddf8a6cd9eab048d22d06b107270824 [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');
var element = document.createElement("a");
element.onclick = function() {
window.event = "foo";
};
element.click();
shouldBeEqualToString('window.event', "foo");
</script>