summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-gradients/linear-diagonal-9a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-gradients/linear-diagonal-9a.html')
-rw-r--r--layout/reftests/css-gradients/linear-diagonal-9a.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/css-gradients/linear-diagonal-9a.html b/layout/reftests/css-gradients/linear-diagonal-9a.html
new file mode 100644
index 000000000..33f0cece9
--- /dev/null
+++ b/layout/reftests/css-gradients/linear-diagonal-9a.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+.x { width: 200px; height: 100px; display: inline-block; }
+.a { background: linear-gradient(to bottom, blue, white, red); }
+.e { background: linear-gradient(to bottom left, blue, white, red); }
+.g { background: linear-gradient(to left, blue, white, red); }
+.i { background: linear-gradient(to top left, blue, white, red); }
+.k { background: linear-gradient(to top, blue, white, red); }
+.m { background: linear-gradient(to top right, blue, white, red); }
+.o { background: linear-gradient(to right, blue, white, red); }
+.q { background: linear-gradient(to bottom right, blue, white, red); }
+</style>
+<div class="x a"></div>
+<div class="x e"></div>
+<div class="x g"></div>
+<div class="x i"></div>
+<div class="x k"></div>
+<div class="x m"></div>
+<div class="x o"></div>
+<div class="x q"></div>