summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/repeating-conic-gradient.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-images/repeating-conic-gradient.html')
-rw-r--r--testing/web-platform/tests/css/css-images/repeating-conic-gradient.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/repeating-conic-gradient.html b/testing/web-platform/tests/css/css-images/repeating-conic-gradient.html
new file mode 100644
index 0000000000..9a9587f29f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-images/repeating-conic-gradient.html
@@ -0,0 +1,16 @@
+<!doctype html>
+<meta charset="utf-8">
+<title>Repeating conic gradient</title>
+<link rel="help" href="https://drafts.csswg.org/css-images-4/#conic-gradients">
+<meta name="assert" content="Rendering of repeating-conic-gradient">
+<link rel="match" href="repeating-conic-gradient-ref.html">
+<meta name="fuzzy" content="maxDifference=0-47; totalPixels=0-40000">
+<style>
+ #gradient {
+ width: 200px;
+ height: 200px;
+ background-color: red;
+ background-image: repeating-conic-gradient(black 0 25%, white 25% 50%);
+ }
+</style>
+<div id="gradient"></div>