Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / bug382588-expected.html
blob5c3e29c0a2f766337667649c2b7977ea9b8e2cb9
1 <html>
2 <body>
3 <p>This is a regression test for crbug.com/382588. The test verifies that calling getImageData does not turn off smooth filtering of 2d canvases. Below this text, there should be a black square with tapered edges.</p>
4 <canvas id="mycanvas" width="100" height="100" style="width:400px; height:400px"></canvas>
5 <script type="application/x-javascript">
6 var canvas = document.getElementById("mycanvas");
7 canvas.getContext("2d").fillRect(25, 25, 50, 50);
8 </script>
9 </body>
10 </html>