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

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <style>
michael@0 5 #parent {
michael@0 6 position: absolute;
michael@0 7 top: 100.8px;
michael@0 8 -moz-transform: scale(1.1232,1.1232);
michael@0 9 transform: scale(1.1232,1.1232);
michael@0 10 }
michael@0 11 #b1 {
michael@0 12 position: absolute;
michael@0 13 width: 100px;
michael@0 14 height: 109px;
michael@0 15 background: #c00;
michael@0 16 -moz-transform: translate(100px,100px);
michael@0 17 transform: translate(100px,100px);
michael@0 18 }
michael@0 19 #b2 {
michael@0 20 position: absolute;
michael@0 21 top: 0;
michael@0 22 left: 0;
michael@0 23 width: 100px;
michael@0 24 height: 100px;
michael@0 25 background: white;
michael@0 26 -moz-transform: translate(400px,0);
michael@0 27 transform: translate(400px,0);
michael@0 28 }
michael@0 29 </style>
michael@0 30 </head>
michael@0 31 <body>
michael@0 32 <div id="parent">
michael@0 33 <div id="b1"></div>
michael@0 34 <div id="b2"></div>
michael@0 35 </div>
michael@0 36 </body>
michael@0 37 </html>

mercurial