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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/empty-composited-child-of-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 .inner {
11 width: 200px;
12 height: 200px;
13 position: relative;
14 left: 50px;
15 top: 50px;
16 will-change: transform;
17 }
18 </style>
19
20 <div class="outermost">
21 <div class="inner">
22 </div>
23 </div>
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698