blob: 27037fabe525fe3f05ecfd13ab1f5b6528ed3ac7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<script src="../repaint/resources/text-based-repaint.js"></script>
<script>
if (window.testRunner)
testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
function repaintTest()
{
var gridElement = document.getElementsByClassName("grid")[0];
gridElement.style.webkitGridDefinitionColumns = "minmax(50px, 180px) 100px 100px";
}
window.addEventListener("load", runRepaintTest, false);
</script>
<link href="resources/grid.css" rel="stylesheet">
<style>
body {
font: 10px/1 Ahem;
}
.grid {
width: -webkit-fit-content;
-webkit-grid-definition-rows: 50px;
-webkit-grid-definition-columns: minmax(100px, 180px) 100px minmax(50px, 100px);
}
.sizedToGridArea {
background-color: purple;
}
</style>
<body>
<div> This test checks that changing the grid-definition-columns lead to a repaint. The final grid element should be 250px * 50px, the grid item should be 50px * 50px. No trace of the elements before the grid-definition-columns change should be seen.</div>
<div class="constrainedContainer">
<div class="grid">
<div class="sizedToGridArea"></div>
</div>
</div>
</body>
</html>