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

Side by Side Diff: LayoutTests/fast/css/sticky/sticky-stacking-context.html

Issue 1212893005: Add position: sticky as supported position value when CSSStickyPosition is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
Ian Vollick 2015/06/30 17:56:32 no need for html, body or head. Please also add a
flackr 2015/06/30 18:44:48 Done. Seems I need a body in the parsing test to c
3 <head>
4 <style type="text/css">
5 div {
6 height: 100px;
7 width: 100px;
8 }
9 .sticky {
10 background-color: green;
11 position: sticky;
12 }
13 .red {
14 background-color: red;
15 margin-top: -100px;
16 }
17 </style>
18 </head>
19 <body>
20 <div class="sticky"></div>
21 <div class="red"></div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698