forked from mirrors/gecko-dev
Automatic update from web-platform-tests css-grid: Wait for documents.font.ready() for tests with Ahem font (#22347) web-fonts may not be ready when the window.onload signal is triggered, so to avoid flakiness or unexpected failures on the css-grid tests that use the Ahem font we should wait for the fonts to be ready before starting the test. However, that is not enough, we should also waiting for window.load before starting the tests because some tests depend on the document images to load (which may happen before or after the fonts are ready) So this patch changes the tests using Ahem to start after the load event has fired and after the fonts are ready. The tests now need to use "explicit_done: true" to avoid race conditions, so this commit also sets this tests to be explicit about when they finish. -- wpt-commits: ea0533fc00ee855b02231c8e392c3ddadb943b0f wpt-pr: 22347
51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Layout Test: Aligning grid items using 'auto' margins and relative sized rows</title>
|
|
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
|
|
<link rel="help" title="10.2 Aligning with auto margins" href="https://drafts.csswg.org/css-grid/#auto-margins">
|
|
<meta name="assert" content="The 'top' and 'bottom' margins must be recomputed whenever the grid's height changes.">
|
|
<style>
|
|
#grid {
|
|
display: grid;
|
|
position: relative;
|
|
background: grey;
|
|
grid-template-columns: 300px;
|
|
grid-template-rows: 40% 60%;
|
|
height: 500px;
|
|
width: min-content;
|
|
}
|
|
#grid div {
|
|
margin: auto 0px auto 0px;
|
|
}
|
|
#item1 {
|
|
background: green;
|
|
width: 25px;
|
|
height: 50px;
|
|
}
|
|
#item2 {
|
|
background: blue;
|
|
width: 25px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/check-layout-th.js"></script>
|
|
<div id="grid">
|
|
<div id="item1"></div>
|
|
<div id="item2"></div>
|
|
</div>
|
|
<script>
|
|
setup({ explicit_done: true });
|
|
document.fonts.ready.then(() => {
|
|
item1.setAttribute("data-offset-y", "75");
|
|
item2.setAttribute("data-offset-y", "300");
|
|
checkLayout('#grid', false);
|
|
|
|
grid.style.height = "300px";
|
|
|
|
item1.setAttribute("data-offset-y", "35");
|
|
item2.setAttribute("data-offset-y", "160");
|
|
checkLayout('#grid', true);
|
|
});
|
|
</script>
|