Bug 1942415: Revert changes for GC_GLEAN_SLOW_PHASE and GC_GLEAN_SLOW_TASK probes...
[gecko.git] / layout / reftests / css-blending / mix-blend-mode-soft-light.html
blobbcfd809a4af0ec8d72b6349fae4d43e45e794b79
1 <!DOCTYPE HTML>
2 <head>
3 <style>
4 .parent {
5 width: 200px;
6 height: 200px;
7 isolation: isolate;
8 background: #5856a2;
10 .child {
11 width: 200px;
12 height: 200px;
13 mix-blend-mode: soft-light;
14 opacity: 0.5;
15 background: white;
16 will-change: opacity;
18 </style>
19 </head>
20 <body>
21 <div class="parent">
22 <div class="child">
23 </div>
24 </div>
25 </body>