summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/fixed-bg-border-radius.html
blob: 9ab57276bf86ae5ddc2dd0445c64c2f227c298b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<style>
body { 
  height: 100%;
  width: 100%;
  background: red url('../bugs/repeatable-diagonal-gradient.png') no-repeat fixed;
  margin: 0px;
  overflow: hidden;
}
div { 
  height:200px;
  width: 1020px;
  background: url('../bugs/repeatable-diagonal-gradient.png') no-repeat fixed;
  border-radius: 25px;
}
</style>
<body>
<div >
</div>
</body></html>