layout/reftests/position-sticky/padding-1.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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>

mercurial