summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/sticky/position-sticky-left-003.html
blob: 3114981a69a250f94934b77cc4792a605f9a44cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>

  <meta charset="UTF-8">

  <title>CSS Position Test: sticky element with left offset specified with percentage unit</title>

  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
  <link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos">
  <link rel="match" href="reference/position-sticky-left-002-ref.html">

  <meta name="flags" content="">

  <style>
  div.scrolling-container
    {
      background-image: url("support/100x100-red.png");
      background-repeat: no-repeat;
      height: 150px;
      margin-bottom: 30px;
      overflow-y: hidden;
      position: static;
      white-space: nowrap;
      width: 250px;
    }

  div#first-scrolling-container
    {
      background-position: right top;
    }

  div#second-scrolling-container
    {
      background-position: 100px top;
    }

  div#third-scrolling-container
    {
      background-position: 50px top;
    }

  div.horizontal-spacer
    {
      display: inline-block;
      height: 100%;
      width: 100px;
    }

  div.content
    {
      display: inline-block;
      height: 100%;
      width: 300px;
    }

  div.sticky
    {
      background-color: green;
      display: inline-block;
      height: 100px;
      left: 40%;
      position: sticky;
      vertical-align: top;
      width: 100px;
    }
  </style>

  <body onload="document.getElementById(&quot;first-scrolling-container&quot;).scrollLeft = 50; document.getElementById(&quot;second-scrolling-container&quot;).scrollLeft = 150; document.getElementById(&quot;third-scrolling-container&quot;).scrollLeft = 300;">

  <p>Test passes if there are 3 filled green squares and <strong>no red</strong>.

  <!--
  first-scrolling-container: before reaching the sticking point
  -->

  <div id="first-scrolling-container" class="scrolling-container">

    <div class="horizontal-spacer"></div><div class="content"><div class="horizontal-spacer"></div><div id="first-sticky" class="sticky"></div><div class="horizontal-spacer"></div></div><div class="horizontal-spacer"></div>

  </div>

  <!--
  second-scrolling-container: when reaching the sticking point and beyond
  -->

  <div id="second-scrolling-container" class="scrolling-container">

    <div class="horizontal-spacer"></div><div class="content"><div class="horizontal-spacer"></div><div id="second-sticky" class="sticky"></div><div class="horizontal-spacer"></div></div><div class="horizontal-spacer"></div>

  </div>


  <div id="third-scrolling-container" class="scrolling-container">

    <div class="horizontal-spacer"></div><div class="content"><div class="horizontal-spacer"></div><div id="third-sticky" class="sticky"></div><div class="horizontal-spacer"></div></div><div class="horizontal-spacer"></div>

  </div>