summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/css-filters-animation-blur-ref.html
blob: 86929b82e682eb284d4990577b3cd6f9e9dc3c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
    <title>CSS Filters Animation: Blur Reference</title>
    <link rel="author" title="Gunther Brunner" href="mailto:takeshimiya@gmail.com">
    <link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
    <link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
    <style type="text/css">
        .square {
            width: 100px;
            height: 100px;
            background: blue;
            filter: blur(10px);
            will-change: filter;
        }
    </style>
</head>
<body>
<p>You should see a blurred rectangle.</p>
<div class="square"></div>
</body>
</html>