1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/backgrounds/layers-layer-count-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 + <head> 1.7 + <title>css3-background: number of background layers determined by background-image</title> 1.8 + <link rel="author" title="L. David Baron" href="http://dbaron.org/" /> 1.9 + <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> 1.10 + <link rel="help" href="http://dev.w3.org/csswg/css3-background/#layering" /> 1.11 + <meta name="flags" content="" /> 1.12 + <style type="text/css"><![CDATA[ 1.13 + 1.14 + div { 1.15 + position: relative; height: 100px; width: 100px; 1.16 + } 1.17 + 1.18 + ]]></style> 1.19 + </head> 1.20 + <body> 1.21 + 1.22 + <div> 1.23 + <img style="position: absolute; left: 10px; top: 10px" src="yellow-32x32.png" /> 1.24 + </div> 1.25 + <div> 1.26 + <img style="position: absolute; left: 15px; top: 15px" src="fuchsia-32x32.png" /> 1.27 + <img style="position: absolute; left: 20px; top: 20px" src="blue-32x32.png" /> 1.28 + <img style="position: absolute; left: 0px; top: 0px" src="aqua-32x32.png" /> 1.29 + <img style="position: absolute; left: 5px; top: 5px" src="yellow-32x32.png" /> 1.30 + </div> 1.31 + <div> 1.32 + <img style="position: absolute; left: 20px; top: 20px" src="blue-32x32.png" /> 1.33 + <img style="position: absolute; left: 5px; top: 5px" src="aqua-32x32.png" /> 1.34 + <img style="position: absolute; left: 10px; top: 10px" src="yellow-32x32.png" /> 1.35 + </div> 1.36 + 1.37 + </body> 1.38 +</html>