summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/scaled-color-stop-position.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-gradients/scaled-color-stop-position.html')
-rw-r--r--layout/reftests/css-gradients/scaled-color-stop-position.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/css-gradients/scaled-color-stop-position.html b/layout/reftests/css-gradients/scaled-color-stop-position.html
new file mode 100644
index 0000000000..897d909898
--- /dev/null
+++ b/layout/reftests/css-gradients/scaled-color-stop-position.html
@@ -0,0 +1,24 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Color stop positioning for scaled gradients as backgrounds</title>
+ <style type="text/css">
+#outer
+{
+ border: 1px solid black;
+ width: 600px; height: 300px;
+ /* 250px stop is halfway along 500px diagonal */
+ background-image: linear-gradient(to bottom right, lime 0%, teal 250px, black 100%);
+ background-size: 400px auto;
+ background-repeat: no-repeat;
+}
+ </style>
+</head>
+<body>
+<div id="outer"></div>
+</body>
+</html>