Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <!-- Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | - http://creativecommons.org/publicdomain/zero/1.0/ --> |
michael@0 | 4 | <html> |
michael@0 | 5 | <head> |
michael@0 | 6 | <title>CSS Test: Sticky Positioning - percentage offsets</title> |
michael@0 | 7 | <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com"> |
michael@0 | 8 | <link rel="match" href="padding-1-ref.html"> |
michael@0 | 9 | <meta name="assert" content="Percentage offsets should be resolved against the content box of the scrolling container"> |
michael@0 | 10 | <style> |
michael@0 | 11 | body { |
michael@0 | 12 | /* Make sure it works on the first pass of reflow */ |
michael@0 | 13 | overflow: scroll; |
michael@0 | 14 | } |
michael@0 | 15 | #scroll { |
michael@0 | 16 | width: 130px; |
michael@0 | 17 | height: 80px; |
michael@0 | 18 | overflow: scroll; |
michael@0 | 19 | border: 10px solid black; |
michael@0 | 20 | padding: 10px; |
michael@0 | 21 | } |
michael@0 | 22 | #sticky { |
michael@0 | 23 | position: sticky; |
michael@0 | 24 | top: 50%; |
michael@0 | 25 | left: 50%; |
michael@0 | 26 | width: 10px; |
michael@0 | 27 | height: 10px; |
michael@0 | 28 | background-color: black; |
michael@0 | 29 | } |
michael@0 | 30 | </style> |
michael@0 | 31 | <body> |
michael@0 | 32 | <div id="scroll"> |
michael@0 | 33 | <div id="sticky"> |
michael@0 | 34 | </div> |
michael@0 | 35 | </div> |
michael@0 | 36 | </body> |
michael@0 | 37 | </html> |