1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/css-blending/blend-difference-stacking-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/publicdomain/zero/1.0/ 1.7 +--> 1.8 +<html> 1.9 +<style> 1.10 +#a { 1.11 + background-color: rgb(0,255,0); 1.12 + width: 200px; 1.13 + height: 210px; 1.14 +} 1.15 +#b { 1.16 + position: absolute; 1.17 + top:80px; 1.18 + filter:url(#f); 1.19 +} 1.20 +</style> 1.21 + <svg height="0"> 1.22 + <filter id="f"> 1.23 + <feColorMatrix values="1 1 1 0 0 1.24 + 1 1 1 0 0 1.25 + 1 1 1 0 0 1.26 + 0 0 0 1 0"/> 1.27 + 1.28 + </filter> 1.29 + </svg> 1.30 +<div id="a"> 1.31 +<div id="b">.</div> 1.32 +</div> 1.33 +</html>