OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <script src="../../js/resources/js-test-pre.js"></script> | 2 <script src="../../js/resources/js-test-pre.js"></script> |
3 <script> | 3 <script> |
4 | 4 |
5 description('Tests that Replaceable attributes are writable'); | 5 description('Tests that Replaceable attributes are writable'); |
6 | 6 |
7 shouldBeTrue('Object.getOwnPropertyDescriptor(window, "innerHeight").writable'); | 7 shouldBeTrue('Object.getOwnPropertyDescriptor(window, "innerHeight").writable'); |
8 | 8 |
9 window.innerHeight = 42; | 9 window.innerHeight = 42; |
10 shouldBe('window.innerHeight', '42'); | 10 shouldBe('window.innerHeight', '42'); |
11 | 11 |
12 </script> | 12 </script> |
13 <script src="../../js/resources/js-test-post.js"></script> | |
OLD | NEW |