summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-image/border-image-linear-gradient-repeat-repeat-3.html
blob: d40b7464200ca21b30a5a4f619e6cff9e0762ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>test of border-image-source: linear-gradient with border-image-repeat</title>
<style>
div {
  border: 30px solid black;
  border-image: linear-gradient(to bottom right, red, blue);
  width: 180px;
  height: 180px;
}
div.border40repeat {
  border-image-repeat: repeat;
  border-image-slice: 40 fill;
}
div.border45repeat {
  border-image-repeat: repeat;
  border-image-slice: 45 fill;
}
div.border75repeat {
  border-image-repeat: repeat;
  border-image-slice: 75 fill;
}
</style>
</head>
<body>
<div class="border40repeat"></div>
<div class="border45repeat"></div>
<div class="border75repeat"></div>
</body>
</html>