summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/normalization-conic-degenerate.html
blob: 909fd54dcbdb4c865a8bbfc4f7d9b966cd1c663d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<meta charset="utf-8">
<title>Conic gradient stop normalization</title>
<link rel="help" href="https://www.w3.org/TR/css-images-3/#repeating-gradients">
<meta name="assert" content="Rendering of repeating-conic-gradient w/ stops at the same place">
<link rel="match" href="reference/100x100-blue.html">
<style>
  #gradient {
    width: 100px;
    height: 100px;
    background-image: repeating-conic-gradient(orange 50%, blue 50%);
  }
</style>
<div id="gradient"></div>