summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-none-none-and-color.html
blob: 49276cd29cca916e77a8da6a46c5602cd5814084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background">
<link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-color">
<link rel="match" href="background-none-none-and-color-ref.html">
<style>
div {
  width: 100px;
  height: 100px;
  border: 2px solid black;
}
</style>
<div style="background: none, none; background-color: blue"></div>
<div style="background-color: blue; background: none, none"></div>
<div style="background: none, none; background-color: blue; overflow: scroll"></div>
  <div style="height: 200px"></div>
</div>
<div style="background-color: blue; background: none, none; overflow: scroll"></div>
  <div style="height: 200px"></div>
</div>