blob: 59995b065920bf41df98f4c0c9797426ac8dd701 [file] [log] [blame]
<!DOCTYPE html>
<html>
<script>
if (window.testRunner)
testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
</script>
<link href="resources/grid.css" rel="stylesheet">
<style>
.grid {
grid-definition-columns: 100px 300px;
grid-definition-rows: 50px 150px;
height: 200px;
width: 400px;
}
.percentWidth {
width: 100%;
height: 15px;
}
.percentHeight {
width: 15px;
height: 100%;
}
.percentHeightAndWidth {
width: 100%;
height: 100%;
}
</style>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.grid')">
<p>Test that resolving percent lengths on grid items works properly on a fixed grid with different writing modes.</p>
<div class="grid">
<div class="firstRowFirstColumn percentWidth" data-expected-width="100" data-expected-height="15"></div>
<div class="firstRowSecondColumn percentHeight" data-expected-width="15" data-expected-height="50"></div>
<div class="secondRowFirstColumn percentHeightAndWidth" data-expected-width="100" data-expected-height="150"></div>
<div class="secondRowSecondColumn percentHeightAndWidth" data-expected-width="300" data-expected-height="150"></div>
</div>
<div class="grid verticalRL">
<div class="firstRowFirstColumn percentWidth" data-expected-width="50" data-expected-height="15"></div>
<div class="firstRowSecondColumn percentHeight" data-expected-width="15" data-expected-height="300"></div>
<div class="secondRowFirstColumn percentHeightAndWidth" data-expected-width="150" data-expected-height="100"></div>
<div class="secondRowSecondColumn percentHeightAndWidth" data-expected-width="150" data-expected-height="300"></div>
</div>
<div class="grid">
<div class="firstRowFirstColumn percentWidth verticalRL" data-expected-width="100" data-expected-height="15"></div>
<div class="firstRowSecondColumn percentHeight verticalRL" data-expected-width="15" data-expected-height="50"></div>
<div class="secondRowFirstColumn percentHeightAndWidth verticalRL" data-expected-width="100" data-expected-height="150"></div>
<div class="secondRowSecondColumn percentHeightAndWidth verticalRL" data-expected-width="300" data-expected-height="150"></div>
</div>
<div class="grid">
<div class="firstRowFirstColumn percentWidth verticalRL" data-expected-width="100" data-expected-height="15"></div>
<div class="firstRowSecondColumn percentHeight" data-expected-width="15" data-expected-height="50"></div>
<div class="secondRowFirstColumn percentHeightAndWidth verticalRL" data-expected-width="100" data-expected-height="150"></div>
<div class="secondRowSecondColumn percentHeightAndWidth" data-expected-width="300" data-expected-height="150"></div>
</div>
</body>
</html>