summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/fill-and-stroke-styles/conic-gradient-rotation-expected.html
blob: 68d750f462c23ed84a38bbfc09485f9ccd01dbf0 (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 180deg 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>