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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-inline-expected.html

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

Powered by Google App Engine
This is Rietveld 408576698