Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Testing compositing of translucent 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></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> |