chromium/third_party/blink/web_tests/paint/invalidation/filters/filter-repaint-accelerated-child-with-filter-child.html

<!DOCTYPE html>
<meta name="fuzzy" content="maxDifference=0-9;totalPixels=0-15000">
<style>
div {
    width: 200px;
    height: 200px;
}

.blur {
    filter: blur(10px);
}

.drop-shadow {
    filter: drop-shadow(16px 16px 10px black);
}

.accelerated {
    will-change: transform;
}

#resize {
    background-color: green;
}
</style>

<div class="blur">
    <div class="accelerated">
        <div class="drop-shadow" id="resize"></div>
    </div>
</div>

<script src="../resources/text-based-repaint.js"></script>
<script>

function repaintTest() {
    var resizeElement = document.getElementById("resize");
    resizeElement.style.width = "100px";
}
window.onload = runRepaintAndPixelTest;
</script>