1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-gradients/bug-916535-background-repeat-linear.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!doctype html> 1.5 +<html lang="en"> 1.6 + 1.7 +<head> 1.8 + <meta charset="utf-8"> 1.9 + <title>Grid</title> 1.10 + <style> 1.11 + body { 1.12 + background: #fff; 1.13 + } 1.14 + div { 1.15 + width: 300px; 1.16 + height: 300px; 1.17 + background-color: #269; 1.18 + background-size: 100px 100px; 1.19 + background-image: 1.20 + linear-gradient( red 50px, green 50px); 1.21 + } 1.22 + </style> 1.23 +</head> 1.24 + 1.25 +<body> 1.26 + <div ></div> 1.27 +</body> 1.28 +</html>