playwright/test/assets/highdpi.html
2020-12-02 11:13:14 -08:00

8 lines
165 B
HTML

<style>
html { background-image: url(image1x.jpg); }
@media(-webkit-min-device-pixel-ratio: 1.5) {
html { background-image: url(image2x.jpg); }
}
</style>