1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/image-element/element-paint-multiple-backgrounds-01-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/licenses/publicdomain/ 1.7 + Multiple -moz-element background images 1.8 +--> 1.9 +<!DOCTYPE html> 1.10 +<html> 1.11 +<head> 1.12 +<style> 1.13 + 1.14 +#box { 1.15 + height: 100px; 1.16 + width: 200px; 1.17 + background: -moz-linear-gradient(lime,lime) top left no-repeat, 1.18 + -moz-linear-gradient(green,green) top right no-repeat red; 1.19 + background-size: 100px 100px; 1.20 +} 1.21 + 1.22 +div > div { 1.23 + width: 100px; 1.24 + height: 100px; 1.25 +} 1.26 + 1.27 +</style> 1.28 +</head> 1.29 +<body style="margin:0"> 1.30 +<div id="box"></div> 1.31 + 1.32 +</body> 1.33 +</html>