commit 47564136aac8f4585f459dd9509bec59bbb4f71e
parent 85b11237a11fde3a1e8c88cfe410e474cef44f98
Author: Daniil Sakhapov <sakhapov@chromium.org>
Date: Tue, 21 Oct 2025 10:16:58 +0000
Bug 1994382 [wpt PR 55443] - Fix border-shape to use geometry box instead of coord box, a=testonly
Automatic update from web-platform-tests
Fix border-shape to use geometry box instead of coord box
The parsing CL incorrectly implemented coord box instead of a geometry
box.
Bug: 443295354
Change-Id: Idcbd74ddbd229da0df450d91989fdaa095f639f8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7041625
Reviewed-by: Rune Lillesveen <futhark@chromium.org>
Commit-Queue: Daniil Sakhapov <sakhapov@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1530011}
--
wpt-commits: ecdde92a52c2771488915a05e6a056a7d79824b4
wpt-pr: 55443
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testing/web-platform/tests/css/css-borders/tentative/parsing/border-shape-valid.html b/testing/web-platform/tests/css/css-borders/tentative/parsing/border-shape-valid.html
@@ -13,4 +13,5 @@ test_valid_value("border-shape", "shape(from 0px 0px, hline to 100px, vline to 1
test_valid_value("border-shape", "circle() circle()", "circle()");
test_valid_value("border-shape", "circle() polygon(10px 10px, 100px 10px, 10px 100px)");
test_valid_value("border-shape", "circle() border-box circle() content-box");
-</script>
-\ No newline at end of file
+test_valid_value("border-shape", "circle() margin-box circle() view-box");
+</script>