| Index: third_party/WebKit/LayoutTests/csspaint/paint2d-zoom-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/csspaint/paint2d-zoom-expected.html b/third_party/WebKit/LayoutTests/csspaint/paint2d-zoom-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..54fb03bd2fc813db728451f1df62e56477d607b4
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/csspaint/paint2d-zoom-expected.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<style>
|
| + #output {
|
| + image-rendering: pixelated;
|
| + zoom: "300%";
|
| + }
|
| +</style>
|
| +<canvas id ="output" width="100" height="100"></canvas>
|
| +<script>
|
| +document.body.style.zoom = "300%";
|
| +
|
| +var canvas = document.getElementById('output');
|
| +var ctx = canvas.getContext('2d');
|
| +ctx.strokeStyle = 'blue';
|
| +ctx.lineWidth = 4;
|
| +ctx.strokeRect(20, 20, 60, 60);
|
| +
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|