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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/composited-nested-sticky-inline-expected.html

Issue 2733633002: Handle nested position:sticky elements correctly (compositor) (Closed)
Patch Set: Fix unittest Created 3 years, 9 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 body {
3 margin: 0;
4 }
5
6 .container {
7 width: 200px;
8 height: 350px;
9 outline: 2px solid black;
10 }
11
12 .outerInline {
13 display: inline;
14 position: absolute;
15 top: 0;
16 }
17
18 .innerInline {
19 display: inline;
20 position: absolute;
21 top: 25px;
22 }
23 </style>
24
25 <div class="container">
26 <div class="outerInline">1<div class="innerInline">2</div></div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698