repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 1874684 - Part 37: Fix unified compilation. r=allstarschh
[gecko.git]
/
layout
/
reftests
/
css-blending
/
blend-difference-stacking-ref.html
blob
34dd86e82d2156fb45b6061ad6fdff57adbb373a
1
<!--
2
Any copyright is dedicated to the Public Domain.
3
http://creativecommons.org/publicdomain/zero/1.0/
4
-->
5
<html>
6
<style>
7
#a {
8
background-color: rgb(
0
,
255
,
0
);
9
width:
200
px;
10
height:
210
px;
11
}
12
#b {
13
position: absolute;
14
top:
80
px;
15
filter:url(#f);
16
}
17
</style>
18
<svg
height
=
"0"
>
19
<filter
id
=
"f"
>
20
<feColorMatrix
values
=
"1 1 1 0 0
21
1 1 1 0 0
22
1 1 1 0 0
23
0 0 0 1 0"
/>
24
25
</filter>
26
</svg>
27
<div
id
=
"a"
>
28
<div
id
=
"b"
>
.
</div>
29
</div>
30
</html>