1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/plugins/test/reftest/plugin-alpha-zindex.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 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:100px; left:100px; 1.16 + width:200px; height:200px; 1.17 + z-index:0; 1.18 + background-color: rgb(255,0,0); 1.19 +} 1.20 +</style> 1.21 +</head> 1.22 +<body> 1.23 +<div id="two"></div> 1.24 +<embed id="one" type="application/x-test" width="400" height="400" drawmode="solid" color="9900FF00"></embed> 1.25 +</body> 1.26 +</html> 1.27 +