blob: 978a6f3e141123ac43093863dcafe609f8b97f96 [file] [log] [blame]
<!DOCTYPE html>
<style type="text/css">
.mi {
margin-top: 1px; /* Precondition for bug. */
width: 5px; /* Not important. */
height: 6px; /* Not important. */
}
</style>
<!--
With an anti-aliased background, this image will show a row of red pixels at the top at
device pixel ration 3.5. To fix this, we turn off anti-aliasing for image backgrounds.
-->
<img class="mi" id="target" src="../../http/tests/resources/square20.jpg">
<script>
window.onload = function () {
if (window.internals && window.testRunner)
testRunner.setBackingScaleFactor(3.5, finishTest);
}
function finishTest() {
if (window.testRunner)
testRunner.notifyDone();
}
</script>