layout/reftests/bugs/637597-1-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/637597-1-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html>
     1.6 +<head>
     1.7 +<style>
     1.8 +#parent {
     1.9 +  position: absolute;
    1.10 +  top: 100.8px;
    1.11 +  -moz-transform: scale(1.1232,1.1232);
    1.12 +  transform: scale(1.1232,1.1232);
    1.13 +}
    1.14 +#b1 {
    1.15 +  position: absolute;
    1.16 +  width: 100px;
    1.17 +  height: 109px;
    1.18 +  background: #c00;
    1.19 +  -moz-transform: translate(100px,100px);
    1.20 +  transform: translate(100px,100px);
    1.21 +}
    1.22 +#b2 {
    1.23 +  position: absolute;
    1.24 +  top: 0;
    1.25 +  left: 0;
    1.26 +  width: 100px;
    1.27 +  height: 100px;
    1.28 +  background: white;
    1.29 +  -moz-transform: translate(400px,0);
    1.30 +  transform: translate(400px,0);
    1.31 +}
    1.32 +</style>
    1.33 +</head>
    1.34 +<body>
    1.35 +<div id="parent">
    1.36 +  <div id="b1"></div>
    1.37 +  <div id="b2"></div>
    1.38 +</div>
    1.39 +</body>
    1.40 +</html>

mercurial