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 1944627 - update sidebar button checked state for non-revamped sidebar cases...
[gecko.git]
/
layout
/
reftests
/
css-blending
/
mix-blend-mode-transformed.html
blob
01d9e0bfa566e80219eaeaba86bcc42673c87a03
1
<!DOCTYPE
HTML
>
2
<head>
3
<style>
4
.outer {
5
transform: scale(
0.5
) translate(
200
px,
200
px);
6
}
7
.parent {
8
width:
200
px;
9
height:
200
px;
10
isolation: isolate;
11
background: #
5856
a2;
12
}
13
.child {
14
width:
200
px;
15
height:
200
px;
16
mix-blend-mode: soft-light;
17
opacity:
0.5
;
18
background: white;
19
will-change: opacity;
20
}
21
</style>
22
</head>
23
<body>
24
<div
class
=
"outer"
>
25
<div
class
=
"parent"
>
26
<div
class
=
"child"
>
27
</div>
28
</div>
29
</div>
30
</body>