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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-style-change-expected.html

Issue 2706673002: Mark elements as viewport constrained when they become sticky positioned (Closed)
Patch Set: Add LayoutTest 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 <html>
3 <head>
4 <style>
5 body {
6 margin: 0;
7 }
8
9 .box {
10 height: 50px;
11 width: 100%;
12 }
13
14 .relative {
15 position: fixed;
16 top: 50px;
17 background-color: green;
flackr 2017/02/22 14:45:42 Can we merge .relative and .box since there is onl
smcgruer 2017/02/22 15:26:31 Done.
18 }
19 </style>
20 </head>
21 <body>
22 <div class="relative box"></div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698