Commit 66b0baad authored by Abhijeet Kandalkar's avatar Abhijeet Kandalkar Committed by Commit Bot

[css-grid] Migrate grid-auto-fill-rows.html test to WPT

Migrate this test out of t_p/blink/web_tests/fast/css-grid-layout and
into the WPT-specific directory, adding links to the relevant specs
and a test assertion describing its purpose.

This test verifies that repeat(auto-fill, ) syntax works as expected
inside grid layout.

Bug: 1063749
Change-Id: I2b2f2d02ecdb250a42b38ac4b5773c546ce9e637
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2147487
Commit-Queue: Abhijeet Kandalkar <abhijeet@igalia.com>
Reviewed-by: default avatarManuel Rego <rego@igalia.com>
Reviewed-by: default avatarChristian Biesinger <cbiesinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#759624}
parent af173123
<!DOCTYPE html> <!DOCTYPE html>
<title>CSS Grid: auto-fill rows</title>
<link href="resources/grid.css" rel="stylesheet"> <link rel="author" title="Sergio Villar" href="mailto: svillar@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#valdef-repeat-auto-fill">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-auto-columns">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-auto-rows">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-template-rows">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#propdef-grid-row">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-grid-row-gap">
<link rel="help" href="https://crbug.com/619930">
<link rel="help" href="https://crbug.com/589460">
<link rel="help" href="https://crbug.com/648814">
<meta name="assert" content="Check that auto-fill rows are properly computed in a grid container"/>
<link href="/css/support/grid.css" rel="stylesheet">
<style> <style>
.grid { .grid {
...@@ -31,9 +42,9 @@ ...@@ -31,9 +42,9 @@
</style> </style>
<script src="../../resources/testharness.js"></script> <script src="/resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script> <script src="/resources/testharnessreport.js"></script>
<script src="../../resources/check-layout-th.js"></script> <script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('.grid')"> <body onload="checkLayout('.grid')">
<div id="log"></div> <div id="log"></div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment