summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/filtered-inline-applies-to-float-ref.html
blob: 439d7c443cbc04dab98155d3de1e7c47ca555c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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>