summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/background-repeat-null-y-crash.html
blob: 445f7fa77419857cd25c4f64dc4e8e90a596442f (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<body>
<script>
  document.body.style.backgroundRepeat='repeat';
  document.body.style.backgroundRepeatY='';
  shouldBe(document.body.style.background, '');
</script>
</body>