mirror of
https://github.com/servo/servo.git
synced 2025-10-16 00:10:23 +01:00
19 lines
525 B
HTML
19 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Images Module Level 4: units in filters are not affected by image-resolution</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>
|
|
img {
|
|
image-resolution: from-image;
|
|
filter: blur(4px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="support/swatch-blue-192dpi.png" />
|
|
</body>
|
|
</html>
|