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

Side by Side Diff: LayoutTests/fast/css/sticky/sticky-as-positioning-container-expected.html

Issue 346603007: Remove position: sticky (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <style>
6 body {
7 margin: 0;
8 }
9
10 .group {
11 display: inline-block;
12 position: relative;
13 width: 250px;
14 height: 500px;
15 }
16
17 .container {
18 width: 200px;
19 height: 400px;
20 outline: 2px solid black;
21 }
22
23 .box {
24 width: 200px;
25 height: 200px;
26 }
27
28 .sticky {
29 position: relative;
30 top: 200px;
31 background-color: silver;
32 }
33
34 .child {
35 position: absolute;
36 background-color: green;
37 top: 50px;
38 left: 50px;
39 }
40
41 .indicator {
42 position: absolute;
43 top: 250px;
44 left: 50px;
45 background-color: red;
46 }
47 </style>
48 </head>
49 <body>
50 <div class="group" style="top: -100px;">
51 <div class="indicator box"></div>
52 <div class="container">
53 <div class="sticky box">
54 <div class="child box"></div>
55 </div>
56 </div>
57 </div>
58
59 </body>
60 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/sticky/sticky-as-positioning-container.html ('k') | LayoutTests/fast/css/sticky/sticky-both-sides.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698