Chromium Code Reviews| Index: LayoutTests/fast/canvas/pixelated-image.html |
| diff --git a/LayoutTests/fast/canvas/pixelated-image.html b/LayoutTests/fast/canvas/pixelated-image.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9cf852e8ad54e2be98f86b04f558dc56572a8024 |
| --- /dev/null |
| +++ b/LayoutTests/fast/canvas/pixelated-image.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + img { |
| + width: 1000px; |
| + height: 1000px; |
| + image-rendering: pixelated; |
| + transform: translateZ(0); |
| + } |
| +</style> |
| +<body> |
| + <img src="resources/dice_alpha.png"> |
| +</body> |
| +<script> |
| + // Ignore the render tree. |
| + if (window.testRunner) |
| + window.testRunner.dumpAsTextWithPixelResults(); |
| +</script> |