Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / background-repeat-null-y-crash.html
blob445f7fa77419857cd25c4f64dc4e8e90a596442f
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <body>
4 <script>
5 document.body.style.backgroundRepeat='repeat';
6 document.body.style.backgroundRepeatY='';
7 shouldBe(document.body.style.background, '');
8 </script>
9 </body>