summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/fill-and-stroke-styles/conic-gradient-expected.html
blob: f347abc9d3939fb52c4fe08d949f8d96c4de3386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <title></title>
  <style type="text/css">
    div {
      width: 300px;
      height: 150px;
      background: conic-gradient(
        from 90deg at 100px 50px,
        red 0.2turn,
        orange 0.2turn 0.4turn,
        yellow 0.4turn 0.6turn,
        green 0.6turn 0.8turn,
        blue 0.8turn 1.0turn
      );
  </style>
</head>
<body>
  <div id="output"></div>
</body>
</html>