17 lines
593 B
HTML
17 lines
593 B
HTML
<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>
|