summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-dpr/image-pseudo-element-content-dpr.html
blob: 7770df39997206261036029734b2304e6be331b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
  <head>
    <title>Content-DPR: pseudo elements</title>
    <link rel="author" title="Noam Rosenthal" href="noam@webkit.org">
    <link rel="match" href="image-pseudo-element-content-dpr-ref.html" />
    <meta name="assert" content="Assert that content-dpr is taken into account for images in pseudo-elements">
    <style>
      body::after {
        content: url(resources/dpr.py?name=square.png&mimeType=image/png&dpr=2);
      }
    </style>
  </head>
  <body>
    The following squares should be identical <br />
    <img src="resources/square.png" width="50" />
  </body>
</html>