summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-image/border-image-repeating-linear-gradient.html
blob: 5c4d073f02de3d39b97a04d6201c2297cdc73d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>test of border-image-source: linear-gradient</title>
<style>
div.border {
  border: 30px solid black;
  border-image: repeating-linear-gradient(to bottom right, red, blue 10%, red 20%);
  width: 180px;
  height: 180px;
}
</style>
</head>
<body>
<div class="border"></div>
</body>
</html>