Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>filter function unis are not scaled when applied to a scaled border-image</title>
<link rel="author" title="Mike Bremford" href="http://bfo.com/" />
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht"/>
<meta name="assert" content="The dimensions in the filter functions are absolute dimensions, and if the image they are applied to is scaled (as it is here due to being part of a border-image), the units in the filters should not be scaled. The filter must be applied after scaling."/>
<style>
.test {
position: relative;
width: 50px;
height: 100px;
box-sizing: border-box;
border: 25px solid black;
image-rendering: crisp-edges;
border-image: filter(url(resources/green-transparent-80x80.png), drop-shadow(50px 0 0 green)) 30 / 75px / 50px;
}
.red {
position: absolute;
left: -25px;
top: -25px;
width: 100px;
height: 100px;
background: red;
z-index: -1;
}
</style>
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="test">
<div class="red"></div>
</div>
</body>
</html>