Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / overflow / overflow-hidden-canvas-layer.html
blob48999ab503ff618d0edbcba39f0c674733965d26
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .clippingContainer {
6 width: 200px;
7 height: 200px;
8 overflow: hidden;
11 </style>
13 <script>
14 function drawCanvas()
16 if (window.testRunner)
17 testRunner.dumpAsTextWithPixelResults();
18 var canvas = document.getElementById("clippedCanvas");
19 var context = canvas.getContext("2d");
20 context.fillStyle = "red";
21 context.fillRect(0, 0, 400, 400);
22 context.fillStyle = "green";
23 context.fillRect(0, 0, 200, 200);
25 </script>
26 </head>
28 <body onload="drawCanvas()">
29 <div class="clippingContainer">
30 <canvas id="clippedCanvas" width="400" height="400">
31 </canvas>
32 </div>
33 </body>
35 </html>