blob: 2a5133ee94e792877410cae71be904c585bf0a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<title>Image set conic-gradient rendering</title>
<link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
<link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
<style>
#test {
width: 100px;
height: 100px;
background: conic-gradient(green, lightgreen);
}
</style>
<div id="test"></div>
|