blob: ead485b1480a5d97c81d321d440ec055e9266961 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
img {
width: 110px;
height: 110px;
image-rendering: pixelated;
}
</style>
<body>
<!-- Draw a normal pixelated image. -->
<img src="resources/grid-small.png">
</body>
<script>
// Ignore the render tree.
if (window.testRunner)
window.testRunner.dumpAsTextWithPixelResults();
</script>
|