Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / replaceable.html
blobd3a18ed6ee81e545e2d86b8388905fa3e273b61b
1 <!doctype html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
5 description('Tests that Replaceable attributes are writable');
7 shouldBeTrue('Object.getOwnPropertyDescriptor(window, "innerHeight").writable');
9 window.innerHeight = 42;
10 shouldBe('window.innerHeight', '42');
12 </script>