summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/filter-effects/filter-function/filter-function-radial-gradient.html
blob: a1d88677448587966f25a8db2ad68a59508058bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<title>filter() function with radial-gradient</title>
<link rel="help" href="https://drafts.fxtf.org/filter-effects-1/#FilterCSSImageValue">
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<link rel="match" href="filter-function-radial-gradient-ref.html">
<style>
    div {
        background-image: filter(radial-gradient(red, orange), invert(1));
        width: 400px;
        height: 400px;
        color: purple;
    }
</style>
<div>This text should be purple on a background with a light blue gradient.</div>
</html>