1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-blending/background-blending-list-repeat-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/publicdomain/zero/1.0/ 1.7 +--> 1.8 +<html> 1.9 +<style> 1.10 +.reftest { 1.11 + width: 100px; 1.12 + height: 100px; 1.13 + float:left; 1.14 +} 1.15 + 1.16 +.first { 1.17 + background-color: rgb(0, 0, 0); 1.18 +} 1.19 +.second { 1.20 + background-color: rgb(0, 255, 0); 1.21 +} 1.22 + 1.23 +.third { 1.24 + background-color: rgb(0, 0, 0); 1.25 +} 1.26 + 1.27 +.fourth { 1.28 + background-color: rgb(0, 255, 0); 1.29 +} 1.30 + 1.31 +</style> 1.32 +<div class="reftest first"></div> 1.33 +<div class="reftest second"></div> 1.34 +<div class="reftest third"></div> 1.35 +<div class="reftest fourth"></div> 1.36 +</html>