summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transforms/transform-containing-block-and-scrolling-area-for-fixed-ref.html
blob: 2e88d4493fc23356a1f623983bd85292ca44ade5 (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
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
<style>
  html, body { margin: 0; padding: 0 }
  #transformed {
    margin-left: 10px;
    margin-top: 10px;
    width: 200px;
    height: 200px;
    background: grey;
  }

  #fixed {
    width: 50px;
    height: 50px;
    background: green;
  }
</style>

<body>
    <div id="transformed">
        <div id="fixed"></div>
    </div>
  </body>
</html>