mirror of
https://github.com/servo/servo
synced 2026-05-14 19:06:31 +02:00
15 lines
468 B
HTML
15 lines
468 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Conic gradient stop normalization</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-images-4/#conic-gradients">
|
|
<meta name="assert" content="Rendering of conic-gradient with normalized color stops">
|
|
<link rel="match" href="reference/100x100-blue.html">
|
|
<style>
|
|
#gradient {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: conic-gradient(green -50%, blue -50%);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|