| Index: LayoutTests/fast/css/sticky/sticky-margins.html
|
| diff --git a/LayoutTests/fast/css/sticky/sticky-margins.html b/LayoutTests/fast/css/sticky/sticky-margins.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7c74c014c304ddc0127ef8cd3638f8cacde3ef90
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css/sticky/sticky-margins.html
|
| @@ -0,0 +1,90 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| +if (window.internals) {
|
| + internals.settings.setCSSStickyPositionEnabled(true);
|
| +}
|
| +</script>
|
| +
|
| +<html>
|
| +<head>
|
| +<style>
|
| + body {
|
| + margin: 0;
|
| + height: 2000px;
|
| + overflow: hidden; /* hide scrollbars */
|
| + }
|
| +
|
| + .group {
|
| + display: inline-block;
|
| + position: relative;
|
| + width: 180px;
|
| + height: 500px;
|
| + }
|
| +
|
| + .container {
|
| + width: 150px;
|
| + height: 400px;
|
| + border: 2px solid black;
|
| + padding: 5px;
|
| + }
|
| +
|
| + .box {
|
| + width: 120px;
|
| + height: 120px;
|
| + }
|
| +
|
| + .sticky {
|
| + position: sticky;
|
| + top: 10px;
|
| + background-color: green;
|
| + }
|
| +
|
| + .indicator {
|
| + position: absolute;
|
| + top: 0;
|
| + left: 37px;
|
| + background-color: red;
|
| + }
|
| +</style>
|
| +<script>
|
| + function doTest()
|
| + {
|
| + window.scrollTo(0, 300);
|
| + }
|
| + window.addEventListener('load', doTest, false);
|
| +</script>
|
| +</head>
|
| +<body>
|
| + <!-- auto margins -->
|
| + <div class="group">
|
| + <div class="indicator box" style="top: 110px;"></div>
|
| + <div class="container">
|
| + <div class="sticky box" style="margin: auto;"></div>
|
| + </div>
|
| + </div>
|
| +
|
| + <!-- px margins -->
|
| + <div class="group">
|
| + <div class="indicator box" style="top: 37px;"></div>
|
| + <div class="container">
|
| + <div class="sticky box" style="margin: 20px;"></div>
|
| + </div>
|
| + </div>
|
| +
|
| + <!-- % margins -->
|
| + <div class="group">
|
| + <div class="indicator box" style="top: 37px;"></div>
|
| + <div class="container">
|
| + <div class="sticky box" style="margin: 20%;"></div>
|
| + </div>
|
| + </div>
|
| +
|
| + <!-- % margins -->
|
| + <div class="group">
|
| + <div class="indicator box" style="top: 37px;"></div>
|
| + <div class="container" style="width: 200px;">
|
| + <div class="sticky box" style="margin: 20%;"></div>
|
| + </div>
|
| + </div>
|
| +</body>
|
| +</html>
|
|
|