blob: b2c9de4114e1e69192c8436beecc7ae3d07ce061 [file] [log] [blame]
<!DOCTYPE html>
<head>
<title>Density corrected size: pseudo-elements</title>
<link rel="author" title="Noam Rosenthal" href="noam@webkit.org">
</head>
<body>
<style>
body {
--lores: url(resources/exif-resolution-valid-lores.jpg);
--default: url(resources/exif-resolution-none.jpg);
}
.lores-after::after {content: var(--lores); width: 200px; height: 100px; }
.default-after::after {content: var(--default); }
</style>
<div class="lores-after box"></div>
<div class="default-after box"></div>
</body>
</html>