summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/hypothetical-dynamic-change-001.html
blob: 996f439211ccef5a12d3e5e2598973fd5983b80c (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
<!doctype html>
<title>CSS test: movement of fixed-position ancestor correctly moves fixed-position descendant depending on the static position</title>
<link rel="help" href="https://drafts.csswg.org/css-position/#size-and-position-details">
<link rel="match" href="hypothetical-dynamic-change-001-ref.html">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<style>
  .ancestor, .child {
    position: fixed;
    width: 100px;
    height: 100px;
    background-color: green;
    /* NOTE: child remains auto-positioned */
  }
  .ancestor {
    left: 0;
    top: 0;
    background-color: red;
  }
</style>
<div class="ancestor">
  <div class="child"></div>
</div>
<script>
onload = function() {
  let ancestor = document.querySelector(".ancestor");
  window.unused = ancestor.getBoundingClientRect();
  ancestor.style.left = "100px";
}
</script>