 Chromium Code Reviews
 Chromium Code Reviews Issue 1212893005:
  Add position: sticky as supported position value when CSSStickyPosition is enabled.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1212893005:
  Add position: sticky as supported position value when CSSStickyPosition is enabled.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| OLD | NEW | 
|---|---|
| (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> | |
| OLD | NEW |