1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-gradients/bug-916535-background-repeat-linear-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 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 + .r {background: red; width: 300px; height: 50px} 1.15 + .g {background: green; width: 300px; height: 50px} 1.16 + </style> 1.17 +</head> 1.18 + 1.19 +<body> 1.20 + <div class=r></div> 1.21 + <div class=g></div> 1.22 + <div class=r></div> 1.23 + <div class=g></div> 1.24 + <div class=r></div> 1.25 + <div class=g></div> 1.26 +</body> 1.27 +</html>