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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/siblings-composited-with-border-radius-ancestor.html

Issue 2588853002: Fix border radius on composited children. (Closed)
Patch Set: SPV2 expectations Created 3 years, 11 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 <style>
2 .outermost {
3 border: 4px solid #000;
4 border-radius: 40px;
5 width: 200px;
6 height: 200px;
7 overflow: hidden;
8 }
9
10 .inner1 {
11 background-color: green;
12 width: 10px;
13 height: 260px;
14 position: relative;
15 left: 0px;
16 top: -30px;
17 will-change: transform;
18 }
19
20 .inner2 {
21 background-color: green;
22 width: 10px;
23 height: 260px;
24 position: relative;
25 left: 190px;
26 top: 0px;
27 will-change: transform;
28 }
29 </style>
30
31 <div class="outermost">
32 <div class="inner1">
33 <div class="inner2">
34 </div>
35 </div>
36 </div>
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698