chromium/third_party/blink/web_tests/external/wpt/css/filter-effects/filtered-inline-applies-to-float-ref.html

<!DOCTYPE html>
<style>
#float {
    float: left;
    width: 100px;
    height: 100px;
    background: green;
    filter: blur(2px);
}
</style>
<p>There should be a blurred green square.</p>
<div id="float"></div>