gecko/layout/reftests/position-sticky/inline-3.html

43 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<title>CSS Test: Sticky Positioning - inline with margins</title>
<link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
<link rel="match" href="inline-3-ref.html">
<meta name="assert" content="Sticky positioning on inline elements should keep the bounding box of all continuations' margin boxes contained">
<link rel="stylesheet" type="text/css" href="ahem.css">
<style>
#scroll {
overflow: hidden;
height: 200px;
font: 10px/1 Ahem;
}
#sticky {
position: sticky;
top: 20px;
left: 20px;
margin-right: 10px;
}
#contain {
width: 90px;
font-size: 10px;
}
b {
display: inline-block;
width: 40px;
height: 10px;
background: black;
}
</style>
</head>
<body>
<div id="scroll">
<div id="contain">
<b></b><span id="sticky"><b></b><br><b></b></span>
</div>
</div>
</body>
</html>