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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container.html

Issue 2304543002: [css-grid] Fix definite height detection for auto-repet tracks (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..94ecd9fd857fe0919d2f20253d966b43bfa1e8c4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<link href="resources/grid.css" rel="stylesheet">
+<style>
+
+.wrapper {
+ position: relative;
+ width: 100px;
+ height: 100px;
+}
+
+.grid {
+ position: absolute;
+ left: 0; right: 0; top: 0; bottom: 0;
+ grid: repeat(auto-fill, 20px) / repeat(auto-fill, 25px);
+ justify-content: start;
+ align-content: start;
+}
+
+.item {
+ background: green;
+}
+</style>
+
+<p>This test checks that auto repeat tracks are properly computed for a positioned grid container with a definite width and height.</p>
+
+<p>Test passes if you get a grid with 5 rows of 20px and 4 columns of 25px.</p>
+
+<pre id="log"></pre>
+
+<div class="wrapper">
+ <div id="grid" class="grid">
+ <div class="item" style="grid-area: 1 / 1;"></div>
+ <div class="item" style="grid-area: 2 / 2;"></div>
+ <div class="item" style="grid-area: 3 / 3;"></div>
+ <div class="item" style="grid-area: 4 / 4;"></div>
+ <div class="item" style="grid-row: 5; grid-column: 1 / -1;"></div>
+ </div>
+</div>
+
+<script>
+ var log = document.getElementById("log");
+
+ var grid = document.getElementById("grid");
+ var computedStyle = getComputedStyle(grid);
+
+ log.innerHTML = "grid: " + computedStyle.getPropertyValue("grid-template-rows") + " / " + computedStyle.getPropertyValue("grid-template-columns") + ";";
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-positioned-container-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698