commit 01579a339c57f601364634a601f3d6e439038193
parent 7928d69b134b237906dea5a029cbeb9cd3753e74
Author: Rune Lillesveen <futhark@chromium.org>
Date: Mon, 10 Nov 2025 22:19:38 +0000
Bug 1998959 [wpt PR 55939] - Corrected expectation for all:inherit, a=testonly
Automatic update from web-platform-tests
Corrected expectation for all:inherit
The 'interactivity' property is now set by the 'all' shorthand, but the
CL[1] that changed it did not change the test correctly.
Expect 'interactivity' to be included in 'all'.
[1] https://chromium-review.googlesource.com/c/chromium/src/+/7080806
Bug: 445696957
Change-Id: I9f61e74bd0b8d7c9c2da16c9cbc9cb5900f27897
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7123060
Auto-Submit: Rune Lillesveen <futhark@chromium.org>
Reviewed-by: Steinar H Gunderson <sesse@chromium.org>
Commit-Queue: Steinar H Gunderson <sesse@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1541774}
--
wpt-commits: d1018a0e38a836da2326761e0911ac0b3c3e1d49
wpt-pr: 55939
Diffstat:
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/testing/web-platform/tests/css/cssom/cssstyledeclaration-csstext-all-shorthand.html b/testing/web-platform/tests/css/cssom/cssstyledeclaration-csstext-all-shorthand.html
@@ -33,11 +33,7 @@ test(function() {
cssText += longhand + ": inherit; ";
}
style.cssText = cssText;
- if (CSS.supports("interactivity:inert")) {
- assert_equals(style.cssText, "all: inherit; direction: inherit; interactivity: inherit; unicode-bidi: inherit;");
- } else {
- assert_equals(style.cssText, "all: inherit; direction: inherit; unicode-bidi: inherit;");
- }
+ assert_equals(style.cssText, "all: inherit; direction: inherit; unicode-bidi: inherit;");
}, "'all' shorthand with all longhands");
test(function() {