1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/backgrounds/layers-layer-count-inheritance-1.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 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 + body > div { 1.15 + position: relative; height: 300px; width: 100px; 1.16 + background-repeat: no-repeat; 1.17 + background-position: 10px 10px, 5px 5px, 20px 20px, 15px 15px; 1.18 + background-image: url(aqua-32x32.png); 1.19 + } 1.20 + 1.21 + body > div > div { 1.22 + position: absolute; height: 200px; width: 100px; top: 100px; left: 0; 1.23 + background-repeat: no-repeat; 1.24 + background-position: inherit; 1.25 + background-image: url(yellow-32x32.png), url(aqua-32x32.png), url(blue-32x32.png), url(fuchsia-32x32.png), url(red-32x32.png); 1.26 + } 1.27 + 1.28 + body > div > div > div { 1.29 + position: absolute; height: 100px; width: 100px; top: 100px; left: 0; 1.30 + background: inherit; 1.31 + background-image: url(blue-32x32.png), url(yellow-32x32.png), url(fuchsia-32x32.png); 1.32 + } 1.33 + 1.34 + 1.35 + ]]></style> 1.36 + </head> 1.37 + <body> 1.38 + 1.39 + <div><div><div></div></div></div> 1.40 + 1.41 + </body> 1.42 +</html>