Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1390)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html

Issue 2825133003: [css-grid] Ignore collapsed tracks on content-distribution alignment (Closed)
Patch Set: Fixed error in the test expectations Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html
new file mode 100644
index 0000000000000000000000000000000000000000..484ca20c1fafcbcd48844c4da7d03e03a8746c8d
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/alignment/grid-content-distribution-with-collapsed-tracks-019.html
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Grid Layout Test: Content Distribution 'space-around' and gaps on 4x4 grid with collapsed tracks</title>
+<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
+<link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution">
+<link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around">
+<link rel="match" href="../../reference/ref-filled-green-300px-square.html">
+<meta name="assert" content="Content Distribution properties with 'space-around' value render correcly.">
+<style>
+.block {
+ position: absolute;
+ z-index: -1;
+ background: green;
+ width: 300px;
+ height: 300px;
+}
+.block > div {
+ position: absolute;
+ background: red;
+ width: 20px;
+ height: 20px;
+}
+.grid {
+ z-index: 1;
+ display: grid;
+ width: 300px;
+ height: 300px;
+ grid-template-columns: repeat(auto-fit, 20px);
+ grid-template-rows: repeat(auto-fit, 20px);
+ grid-row-gap: 20px;
+ grid-column-gap: 20px;
+ align-content: space-around;
+ justify-content: space-around;
+}
+.grid > div { background: green; }
+</style>
+<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+<div class="block">
+ <div style="top: 20px; left: 100px;"></div>
+ <div style="top: 20px; left: 180px;"></div>
+ <div style="top: 100px; left: 180px;"></div>
+ <div style="top: 180px; left: 180px;"></div>
+ <div style="top: 260px; left: 20px;"></div>
+ <div style="top: 260px; left: 260px;"></div>
+</div>
+<div class="grid">
+ <div class="item" style="grid-row: 1; grid-column: 2;"></div>
+ <div class="item" style="grid-row: 1; grid-column: 5;"></div>
+ <div class="item" style="grid-row: 3; grid-column: 5;"></div>
+ <div class="item" style="grid-row: 4; grid-column: 5;"></div>
+ <div class="item" style="grid-row: 6; grid-column: 1;"></div>
+ <div class="item" style="grid-row: 6; grid-column: 7;"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698