Bug 1535077 - Switch to using Ref and PureComponent in the SearchBox component. r...
[gecko.git] / layout / reftests / bugs / 961887-2.html
blob6d499740aa2c012b3145c5c14954a6451f306d64
1 <!DOCTYPE html>
2 <html lang="en">
3 <meta charset="utf-8">
4 <title>Make sure that we don't pull background colors into container layers that have effects applied on them</title>
6 <style>
8 #outer {
9 background-color: white;
10 border: 1px solid black;
13 #outer > div {
14 margin: 20px;
15 border: 1px solid white;
16 height: 20px;
19 #inner1 {
20 mix-blend-mode: difference;
23 #inner2 {
24 filter: invert(100%);
27 </style>
29 <div id="outer">
30 <div id="inner1"></div>
31 <div id="inner2"></div>
32 </div>