aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-images/linear-gradient-ref.html
blob: 6643bb918b5f79ce72d3f16ec999d675e04f59d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <style>
        #gradient {
            width: 400px;
            height: 300px;
            background-image: linear-gradient(to right, black 0%, red 50%, gold 100%);
        }
    </style>
</head>

<body>
    <div id="gradient"></div>
</body>

</html>