mirror of
https://github.com/servo/servo.git
synced 2025-08-17 19:35:33 +01:00
Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985
This commit is contained in:
parent
43a4f01647
commit
64e0a52537
12717 changed files with 59835 additions and 59820 deletions
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Grid Layout Test: Self-Alignment and stretch on fixed-sized tracks</title>
|
||||
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#alignment">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-align-self">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-align/#valdef-justify-self-stretch">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-align/#valdef-align-self-stretch">
|
||||
<meta name="assert" content="The stretched grid items along the column and/or row axis include their defined padding-box.">
|
||||
<style>
|
||||
.grid {
|
||||
position: relative;
|
||||
display: inline-grid;
|
||||
grid-template-columns: 100px 150px;
|
||||
grid-template-rows: 150px 100px;
|
||||
font: 10px/1 Ahem;
|
||||
background: grey;
|
||||
}
|
||||
.firstRowFirstColumn {
|
||||
grid-row: 1;
|
||||
grid-column: 1;
|
||||
background: green;
|
||||
justify-self: stretch;
|
||||
align-self: start;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.firstRowSecondColumn {
|
||||
grid-row: 1;
|
||||
grid-column: 2;
|
||||
background: blue;
|
||||
justify-self: start;
|
||||
align-self: stretch;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.secondRowFirstColumn {
|
||||
grid-row: 2;
|
||||
grid-column: 1;
|
||||
background: yellow;
|
||||
justify-self: start;
|
||||
align-self: start;
|
||||
}
|
||||
.secondRowSecondColumn {
|
||||
grid-row: 2;
|
||||
grid-column: 2;
|
||||
background: red;
|
||||
justify-self: stretch;
|
||||
align-self: stretch;
|
||||
padding-right: 20px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
</style>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/check-layout-th.js">"></script>
|
||||
<body onload="checkLayout('.grid')">
|
||||
<div class="grid">
|
||||
<div data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="10" class="firstRowFirstColumn">X XX X</div>
|
||||
<div data-offset-x="100" data-offset-y="0" data-expected-width="60" data-expected-height="150" class="firstRowSecondColumn">XX X<br>X XXX<br>X<br>XX XXX</div>
|
||||
<div data-offset-x="0" data-offset-y="150" data-expected-width="60" data-expected-height="10" class="secondRowFirstColumn">X XX X</div>
|
||||
<div data-offset-x="100" data-offset-y="150" data-expected-width="150" data-expected-height="100" class="secondRowSecondColumn">XX X<br>X XXX<br>X<br>XX XXX</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue