layout/reftests/bugs/635373-3-ref.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>Testing compositing of component alpha layer with complex visible region</title>
michael@0 5 <style>
michael@0 6 body { background:white; }
michael@0 7 #d {
michael@0 8 position:absolute;
michael@0 9 top:200px;
michael@0 10 left:200px;
michael@0 11 font-size:30px;
michael@0 12 transform:rotate(30deg);
michael@0 13 -moz-transform:rotate(30deg);
michael@0 14 background:url(100x80-white-rect-top-right.png);
michael@0 15 }
michael@0 16 canvas { display:block; }
michael@0 17 span { display:block; background:rgba(200,200,200, 0.4); height:40px; }
michael@0 18 </style>
michael@0 19 </head>
michael@0 20 <body>
michael@0 21 <div id="d"><span style="width:20px"><canvas id="c" width="20" height="20"></canvas>XYZ</span>
michael@0 22 <span style="width:100px;"></span>
michael@0 23 </div>
michael@0 24 <script>
michael@0 25 var ctx = document.getElementById("c").getContext("2d");
michael@0 26 ctx.fillStyle = "lime";
michael@0 27 ctx.fillRect(5,5,5,5);
michael@0 28 </script>
michael@0 29 </body>
michael@0 30 </html>

mercurial