summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-change-row-repaint.html
blob: 219a9dbb637d80001a2b9bf600fcdbd2b107cb44 (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
<!DOCTYPE html>
<html>
<script src="../repaint/resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
    var gridItem = document.getElementsByClassName("sizedToGridArea")[0];
    gridItem.style.gridRow = "2";
}
window.addEventListener("load", runRepaintTest, false);
</script>
<link href="resources/grid.css" rel="stylesheet">
<style>
body {
    font: 10px/1 Ahem;
}

.grid {
    grid-template-rows: 50px 100px;
    grid-template-columns: 100px 50px;
    /* Make the grid shrink to fit. */
    position: absolute;
}
.sizedToGridArea {
    background-color: purple;
}
</style>
<body>
<div>This test checks that changing the grid-row on a grid item properly repaint. The final grid item should be 100px * 100px. There should be no trace of the grid item at the old position.</div>
<div class="grid">
    <div class="sizedToGridArea"></div>
</div>
</body>
</html>