summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/block-in-inline-float-in-layer-001-ref.html
blob: cbaf7ccb23f11e5f201620d9dcab0541464c036d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<style>
.layer {
  filter: blur(1px);
}
.float {
  float: left;
}
</style>
<body>
  <div class="layer">
    <div>
      <div class="float">float</div>
   </div>
  </div>
</body>