summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/repeated-final-stop-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-gradients/repeated-final-stop-1.html')
-rw-r--r--layout/reftests/css-gradients/repeated-final-stop-1.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/css-gradients/repeated-final-stop-1.html b/layout/reftests/css-gradients/repeated-final-stop-1.html
new file mode 100644
index 000000000..35cc594b6
--- /dev/null
+++ b/layout/reftests/css-gradients/repeated-final-stop-1.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style>
+html {
+ background: white;
+}
+div {
+ background: -moz-linear-gradient(left, 0 white, 50% orange, 50% white);
+ background: linear-gradient(left, 0 white, 50% orange, 50% white);
+ height: 100px;
+}
+</style>
+</head>
+<body>
+<div></div>
+</body>
+</html>