1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-gradients/linear-diagonal-9a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<!DOCTYPE html> 1.5 +<style> 1.6 +.x { width: 200px; height: 100px; display: inline-block; } 1.7 +.a { background: linear-gradient(to bottom, blue, white, red); } 1.8 +.e { background: linear-gradient(to bottom left, blue, white, red); } 1.9 +.g { background: linear-gradient(to left, blue, white, red); } 1.10 +.i { background: linear-gradient(to top left, blue, white, red); } 1.11 +.k { background: linear-gradient(to top, blue, white, red); } 1.12 +.m { background: linear-gradient(to top right, blue, white, red); } 1.13 +.o { background: linear-gradient(to right, blue, white, red); } 1.14 +.q { background: linear-gradient(to bottom right, blue, white, red); } 1.15 +</style> 1.16 +<div class="x a"></div> 1.17 +<div class="x e"></div> 1.18 +<div class="x g"></div> 1.19 +<div class="x i"></div> 1.20 +<div class="x k"></div> 1.21 +<div class="x m"></div> 1.22 +<div class="x o"></div> 1.23 +<div class="x q"></div>