1
0
Fork 0
firefox/testing/web-platform/tests/css/css-images/tiled-conic-gradients.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
613 B
HTML

<!doctype html>
<meta charset="utf-8">
<title>Checkerboard using conic gradients</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#propdef-background-size">
<meta name="assert" content="Gradients are correctly repeated.">
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000">
<link rel="match" href="tiled-conic-gradients-ref.html">
<style>
#gradient {
width: 200px;
height: 200px;
background-color: red;
background-size: 20% 20%;
background-image: conic-gradient(black 0 25%, white 0 50%, black 0 75%, white 0);
}
</style>
<div id="gradient"></div>