mirror of
https://github.com/servo/servo.git
synced 2025-10-16 00:10:23 +01:00
22 lines
628 B
HTML
22 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Images Module Level 4: image-resolution set manually applies to background images and filters are unaffected</title>
|
|
<link rel="author" title="Mike Bremford" href="http://bfo.com/">
|
|
<link rel="help" href="https://drafts.csswg.org/css-images-4/#propdef-image-resolution">
|
|
<link rel="match" href="reference/100x100-blue-blur4px.html">
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
image-resolution: 14.4dpi;
|
|
background: url("../support/swatch-blue.png") top left no-repeat;
|
|
filter: blur(4px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|