1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/plugins/test/reftest/plugin-transform-alpha-zindex.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!doctype html> 1.5 +<html> 1.6 +<head> 1.7 +<style type="text/css"> 1.8 +#one { 1.9 + position:absolute; 1.10 + left:0px; top:0px; 1.11 + z-index:1; 1.12 +} 1.13 +#two { 1.14 + position:absolute; 1.15 + top:0px; left:0px; 1.16 + width:200px; height:200px; 1.17 + z-index:0; 1.18 + background-color: rgb(255,0,0); 1.19 + -moz-transform-origin: 0 0; 1.20 + -moz-transform: translate(100px,100px); 1.21 +} 1.22 +</style> 1.23 +</head> 1.24 +<body> 1.25 + <div id="two"></div> 1.26 + <embed id="one" type="application/x-test" width="400" height="400" drawmode="solid" color="9900FF00"></embed> 1.27 +</body> 1.28 +</html> 1.29 +