15 lines
569 B
HTML
15 lines
569 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Radial gradient stop normalization</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-images-3/#repeating-gradients">
|
|
<meta name="assert" content="Rendering of repeating-radial-gradient with normalized color stops">
|
|
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000">
|
|
<link rel="match" href="reference/100x100-blue.html">
|
|
<style>
|
|
#gradient {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-image: repeating-radial-gradient(50px, red 1000%, blue 1000%);
|
|
}
|
|
</style>
|
|
<div id="gradient"></div>
|