commit bc71485b84005f7e93d0f9686dc6fd7cf76b9fee
parent c4453e4afd5c5322eb21f75bc0e4f9bdcc06f355
Author: Alison Maher <almaher@microsoft.com>
Date: Sun, 26 Oct 2025 21:14:07 +0000
Bug 1995408 [wpt PR 55554] - [Masonry] Fix row-flex-track-intrinsic-sizes.html, a=testonly
Automatic update from web-platform-tests
[Masonry] Fix row-flex-track-intrinsic-sizes.html
Update 'gridColumn' to 'gridRow' since this is a row-based test.
Bug: 343257585
Change-Id: I494ef12507a361db8b5ae844e743dc58070d8b18
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7048842
Reviewed-by: Kurt Catti-Schmidt <kschmi@microsoft.com>
Commit-Queue: Alison Maher <almaher@microsoft.com>
Cr-Commit-Position: refs/heads/main@{#1533235}
--
wpt-commits: 8c88604438f5e4d21286198972000fcca3c040db
wpt-pr: 55554
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testing/web-platform/tests/css/css-grid/masonry/tentative/items/row-flex-track-intrinsic-sizes.html b/testing/web-platform/tests/css/css-grid/masonry/tentative/items/row-flex-track-intrinsic-sizes.html
@@ -38,7 +38,7 @@
const item = document.getElementById("item");
let testset = "unlabeled";
function checkTrackSizes(span, trackList, expected) {
- item.style.gridColumn = `span ${span}`;
+ item.style.gridRow = `span ${span}`;
TestingUtils.testGridTemplateRows("masonry", trackList, expected, testset);
}