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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/border-radius-on-two-ancestors-composited-grandchild.html

Issue 2923683002: Fix nested border radius with composited child. (Closed)
Patch Set: Split tests, check layer sizes, document Created 3 years, 6 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 width: 200px;
5 height: 200px;
6 border-radius: 40px;
7 overflow: hidden;
8 }
9
10 .middle {
11 border: 4px solid #888;
12 border-radius: 60px;
13 background-color: #008;
14 width: 200px;
15 height: 200px;
16 position: relative;
17 left: 100px;
18 top: 100px;
19 overflow: hidden;
20 }
21
22 .inner {
23 border: 4px solid #AAA;
24 width: 80px;
25 height: 400px;
26 background-color: #080;
27 position: relative;
28 left: 20px;
29 top: -100px;
30 will-change: transform;
31 }
32 </style>
33
34 <div class="outermost">
35 <div class="middle">
36 <div class="inner">
37 </div>
38 </div>
39 </div>
40
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698