no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / css-blending / clipped-opacity-containing-unclipped-mixblendmode-ref.html
blob307483ac6bea3645da123d7c1fd9daaadcef3918
1 <!DOCTYPE html>
2 <html lang="en">
3 <meta charset="utf-8">
4 <title>Blend mode containers shouldn't clip unclipped children to their own clip</title>
6 <style>
8 body {
9 margin: 0;
12 .content {
13 box-sizing: border-box;
14 border: 10px solid black;
15 width: 100px;
16 height: 100px;
19 .clip {
20 box-sizing: border-box;
21 width: 300px;
22 height: 200px;
23 border: 10px solid black;
24 overflow: hidden;
27 .opacity {
28 opacity: 0.5;
31 .absolutelyPositioned {
32 position: absolute;
33 top: 20px;
34 left: 250px;
37 .mixBlendMode {
38 border-color: blue;
39 margin-left: auto;
42 </style>
44 <div class="clip">
45 <div class="opacity">
46 <div class="absolutelyPositioned content"></div>
47 <div class="mixBlendMode content"></div>
48 </div>
49 </div>