blob: 61bd9bcb8718bd7ab4f60a4e8f8f2620ca3d8610 [file] [log] [blame]
<!DOCTYPE html>
<style>
.green {
background-color: green;
}
.box {
width: 200px;
height: 200px;
}
.drop-shadowed {
-webkit-filter: drop-shadow(100px 100px 10px red);
}
.blurry {
-webkit-filter: blur(10px);
transform: translateZ(0);
}
</style>
<!--
This test checks that we correctly invalidate filters along with a paint invalidation container change.
There should be no red below.
-->
<div class="green blurry box" id="box"></div>