Add missing css style for image_rendering_auto_a.html

There was a missing image position in the test which caused potentially 
wrong comparision of images in basic.list:
!= image_rendering_auto_a.html image_rendering_pixelated_a.html
This commit is contained in:
Maciej Skrzypkowski 2015-11-04 10:07:02 +01:00
parent b6850853da
commit 64dbc28927

View file

@ -2,6 +2,13 @@
<html> <html>
<head> <head>
<!-- Tests that `image-rendering: auto` uses bilinear filtering. --> <!-- Tests that `image-rendering: auto` uses bilinear filtering. -->
<style>
img {
position: absolute;
top: 0;
left: 0;
}
</style>
</head> </head>
<body> <body>
<img width=100 height=50 src=4x2.png> <img width=100 height=50 src=4x2.png>