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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/border-radius-on-grandparent-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 background-color: #008;
13 width: 200px;
14 height: 200px;
15 position: relative;
16 left: 100px;
17 top: 100px;
18 overflow: hidden;
19 }
20
21 .inner {
22 border: 4px solid #AAA;
23 width: 80px;
24 height: 400px;
25 background-color: #080;
26 position: relative;
27 left: 20px;
28 top: -100px;
29 will-change: transform;
30 }
31 </style>
32
33 <div class="outermost">
34 <div class="middle">
35 <div class="inner">
36 </div>
37 </div>
38 </div>
39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698