Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html

Issue 2826673003: Fix clipping of squashed sibling layers with border radius masks (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .outer {
6 overflow:hidden;
7 border-radius: 1px;
8 display:flex;
9 backface-visibility: hidden;
10 }
11 #child-overflow {
12 border-radius: 5px;
13 overflow:hidden;
14 background-color: lightblue;
15 width: 100px;
16 height: 40px;
17 z-index:1
18 }
19 #sibling {
20 background-color: green;
21 width: 100px;
22 height: 40px;
23 z-index:1
24 }
25 </style>
26 </head>
27 <div class="outer">
28 <div id="child-overflow"></div>
29 <div id="sibling"></div>
30 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698