blob: 93e12f6e135a8bdd92fdcee055a9e5cf2474dbe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1238412">
<div style="columns:2; column-fill:auto; height:60px;">
<svg viewBox="0 0 480 360">
<g>
<defs>
<path id="Red100" d="M 0 0 L 0 150 L 150 0 z"></path>
<filter id="xor" x="0" y="0" width="1" height="1">
<feImage href="#Red100" result="red"></feImage>
</filter>
</defs>
<g>
<rect x="0" y="0" width="150" height="150" filter="url(#xor)"></rect>
</g>
</g>
</svg>
</div>
|