layout/reftests/bugs/906199-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/906199-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html>
     1.6 +<head>
     1.7 +<style>
     1.8 +div {
     1.9 +  position:relative;
    1.10 +  width:300px;
    1.11 +  height:200px;
    1.12 +  left:50px;
    1.13 +  top:50px;
    1.14 +  transform-style:preserve-3d;
    1.15 +}
    1.16 +.grandparentdiv {
    1.17 +  background:yellow;
    1.18 +  overflow:hidden;
    1.19 +}
    1.20 +.childdiv {
    1.21 +  background:green;
    1.22 +}
    1.23 +.grandchilddiv {
    1.24 +  background:red;
    1.25 +}
    1.26 +</style>
    1.27 +</head>
    1.28 +<body>
    1.29 +<div class="grandparentdiv">
    1.30 +  <div class="childdiv">
    1.31 +    <div class="grandchilddiv"></div>
    1.32 +  </div>
    1.33 +</div>
    1.34 +</body>
    1.35 +</html>
    1.36 +

mercurial