summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/chrome-bug-001.html
blob: 7b24f41a47eeb090ec53e9a6e37a4f8a977ca802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<link rel="help" href="https://crbug.com/1040069">
<meta name="assert" content="This test checks that a dynamic change relative position paints the grid correctly."/>
<style>
#target {
  display: grid;
  grid-template-columns: repeat(auto-fit, 50px);

  position: relative;
  top: 10px;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div id="target">
  <div style="width: 100px; height: 100px; background: green;"></div>
</div>
<script>
document.body.offsetTop;
document.getElementById('target').style.top = '0px';
</script>