commit becd9b31be634f6d0f6492b574a5dd4540c60a51 parent db9414c708c6b4ce252a49f042c27dc7e19c8625 Author: Celeste Pan <celestepan@microsoft.com> Date: Fri, 10 Oct 2025 07:49:46 +0000 Bug 1992881 [wpt PR 55269] - [Masonry] Move column-dense-packing-multi-span-005.html to internal test folder, a=testonly Automatic update from web-platform-tests [Masonry] Move column-dense-packing-multi-span-005.html to internal test folder column-dense-packing-multi-span-005.html was timing out when it had been moved to an external test folder, which makes sense given that it's a stress test for a large number of stack frames, and after being moved to an external test folder, it was being run on top of a much larger volume of tests. This change moves it back under `wpt_internal` tests since it's testing our specific implementation for masonry dense-packing and not spec behavior. Bug: 343257585 Change-Id: Iae4e573de3d374e25534fe97b75b9dee208b15dc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7001828 Reviewed-by: Kurt Catti-Schmidt <kschmi@microsoft.com> Reviewed-by: Alison Maher <almaher@microsoft.com> Commit-Queue: Celeste Pan <celestepan@microsoft.com> Cr-Commit-Position: refs/heads/main@{#1525875} -- wpt-commits: b23ddccdb892434f494a0c348e878c99e1b15e41 wpt-pr: 55269 Diffstat:
2 files changed, 0 insertions(+), 42 deletions(-)
diff --git a/testing/web-platform/tests/css/css-grid/masonry/tentative/item-placement/dense-packing/column-dense-packing-multi-span-005-ref.html b/testing/web-platform/tests/css/css-grid/masonry/tentative/item-placement/dense-packing/column-dense-packing-multi-span-005-ref.html @@ -1,19 +0,0 @@ -<!DOCTYPE html> -<html> -<style> -.grid { - display: grid; - grid-template-columns: repeat(10001, 5px); - padding: 10px; - grid-auto-flow: dense; -} -</style> -<body> - <p>Ensure that stack overflow does not occur for dense-packing for masonry with 10,000 tracks</p> - <div class="grid"> - <div style="background: pink; height: 20px;"></div> - <div style="background: red; height: 20px; grid-column: span 10001;"></div> - <div style="background: yellow; height: 20px; grid-column: span 10000;"></div> - </div> -</body> -</html> diff --git a/testing/web-platform/tests/css/css-grid/masonry/tentative/item-placement/dense-packing/column-dense-packing-multi-span-005.html b/testing/web-platform/tests/css/css-grid/masonry/tentative/item-placement/dense-packing/column-dense-packing-multi-span-005.html @@ -1,23 +0,0 @@ -<!DOCTYPE html> -<html> -<link rel="help" href="https://drafts.csswg.org/css-grid-3"> -<link rel="match" href="column-dense-packing-multi-span-005-ref.html"> -<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com"> -<style> -.masonry { - display: masonry; - item-tolerance: 0; - grid-template-columns: repeat(10001, 5px); - padding: 10px; - grid-auto-flow: dense; -} -</style> -<body> - <p>Ensure that stack overflow does not occur for dense-packing for masonry with 10,000 tracks</p> - <div class="masonry"> - <div style="background: pink; height: 20px;"></div> - <div style="background: red; height: 20px; grid-column: span 10001;"></div> - <div style="background: yellow; height: 20px; grid-column: span 10000;"></div> - </div> -</body> -</html>