forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1630749 [wpt PR 23033] - [css-grid] Migrate grid-container-percen…
…tage-rows.html to WPT, a=testonly Automatic update from web-platform-tests [css-grid] Migrate grid-container-percentage-rows.html to WPT Note: This test fails in Firefox (and EdgeHTML) but this is expected as both haven't implemented the change on the spec yet. This is the Firefox bug about [1]. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1481876 BUG=767015, 1063749 [email protected] Change-Id: I42392e66f6fabb3550907ad3309907f48e5fe18d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153268 Commit-Queue: Antonio Gomes <[email protected]> Reviewed-by: Manuel Rego <[email protected]> Cr-Commit-Position: refs/heads/master@{#760048} -- wpt-commits: 4296b184a6d3980cb2c0aefd5fc6ac880bc6a79b wpt-pr: 23033
- Loading branch information
Showing
1 changed file
with
305 additions
and
0 deletions.
There are no files selected for viewing
305 changes: 305 additions & 0 deletions
305
testing/web-platform/tests/css/css-grid/layout-algorithm/grid-container-percentage-002.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,305 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<title>CSS Grid: indefinite grid container and percentage rows.</title> | ||
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:[email protected]"/> | ||
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#track-sizing"/> | ||
<link rel="help" href="https://drafts.csswg.org/css-grid/#valdef-grid-template-columns-length-percentage"/> | ||
<meta name="assert" content="This test checks that percentage rows behave as 'auto' if the height of the grid container is indefinite to compute the grid container intrinsic height, but are afterwards resolved against that size."/> | ||
<link rel="issue" href="https://crbug.com/616716"/> | ||
<link rel="stylesheet" href="/css/support/grid.css"/> | ||
<link rel="stylesheet" href="/css/support/height-keyword-classes.css"/> | ||
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css"/> | ||
<style> | ||
.wrapper { | ||
position: relative; | ||
clear: both; | ||
} | ||
|
||
.grid { | ||
font: 10px/1 Ahem; | ||
width: fit-content; | ||
} | ||
|
||
.abspos { | ||
position: absolute; | ||
} | ||
|
||
.fixedSize { | ||
width: 200px; | ||
height: 200px; | ||
} | ||
|
||
.oneRow100 { | ||
grid-template-rows: 100%; | ||
} | ||
|
||
.oneRow50 { | ||
grid-template-rows: 50%; | ||
} | ||
|
||
.twoRows { | ||
grid-template-rows: 100px 50%; | ||
} | ||
</style> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/resources/check-layout-th.js"></script> | ||
<script type="text/javascript"> | ||
setup({ explicit_done: true }); | ||
</script> | ||
<body onload="document.fonts.ready.then(() => { checkLayout('.grid'); })"> | ||
<div id="log"></div> | ||
<div class="wrapper"> | ||
<div class="grid oneRow100" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="10"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fixedSize oneRow100" data-expected-width="200" data-expected-height="200"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="200" data-expected-height="200"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid abspos oneRow100" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="10"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid max-content oneRow100" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="10"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fit-content oneRow100" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="10"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid min-content oneRow100" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="10"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid oneRow50" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="5"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fixedSize oneRow50" data-expected-width="200" data-expected-height="200"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="200" data-expected-height="100"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid abspos oneRow50" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="5"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid max-content oneRow50" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="5"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fit-content oneRow50" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="5"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid min-content oneRow50" data-expected-width="40" data-expected-height="10"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="5"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid twoRows" data-expected-width="40" data-expected-height="110"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="55"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fixedSize twoRows" data-expected-width="200" data-expected-height="200"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="200" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid abspos twoRows" data-expected-width="40" data-expected-height="110"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="55"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid max-content twoRows" data-expected-width="40" data-expected-height="110"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="55"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fit-content twoRows" data-expected-width="40" data-expected-height="110"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="55"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid min-content twoRows" data-expected-width="40" data-expected-height="110"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="55"> | ||
XX X | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid twoRows" data-expected-width="40" data-expected-height="100"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="50"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fixedSize twoRows" data-expected-width="200" data-expected-height="200"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="200" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid abspos twoRows" data-expected-width="40" data-expected-height="100"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="50"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid max-content twoRows" data-expected-width="40" data-expected-height="100"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="50"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid fit-content twoRows" data-expected-width="40" data-expected-height="100"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="50"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper"> | ||
<div class="grid min-content twoRows" data-expected-width="40" data-expected-height="100"> | ||
<div class="firstRowFirstColumn" | ||
data-offset-x="0" data-offset-y="0" data-expected-width="40" data-expected-height="100"> | ||
XX X | ||
</div> | ||
<div class="secondRowFirstColumn" | ||
data-offset-x="0" data-offset-y="100" data-expected-width="40" data-expected-height="50"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |