Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / canvas-with-object-fit-contain-in-composited-layer-expected.html
blobfc70a9890d1081eed96107802aecc475deb6e174
1 <!DOCTYPE html>
2 <style>
3 canvas {
4 background-color: gray;
5 width: 200px;
6 height: 200px;
8 </style>
9 <p>Test passes if a green square inside an orange rectanlge is shown up without a distortion.
10 <div>
11 <canvas width='200' height='200'></canvas>
12 </div>
13 <script>
14 function paintCanvas(canvas)
16 var ctx = canvas.getContext('2d');
17 ctx.fillStyle = 'orange';
19 ctx.save();
20 ctx.beginPath();
21 ctx.rect(50, 0, 100, 200);
22 ctx.clip();
23 ctx.fillRect(0, 0, 200, 200);
24 ctx.restore();
26 ctx.fillStyle = 'green';
27 ctx.fillRect(75, 75, 50, 50);
30 paintCanvas(document.querySelector('canvas'));
31 </script>