Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /content-dpr/image-pseudo-element-content-dpr.html - WPT Dashboard Interop Dashboard
<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>