From d0475b75d42e5cd7cbcbd3803e3161544bce51bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 6 Jun 2023 23:11:36 +0200 Subject: [PATCH] style: Remove hwba since it's not a thing (hwb function supports alpha) Partially backs out the previous patch. Differential Revision: https://phabricator.services.mozilla.com/D134256 --- components/style/values/specified/color.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/values/specified/color.rs b/components/style/values/specified/color.rs index 11acfe63c84..550ad207578 100644 --- a/components/style/values/specified/color.rs +++ b/components/style/values/specified/color.rs @@ -829,7 +829,7 @@ impl SpecifiedValueInfo for Color { // should probably be handled that way as well. // XXX `currentColor` should really be `currentcolor`. But let's // keep it consistent with the old system for now. - f(&["rgb", "rgba", "hsl", "hsla", "hwb", "hwba", "currentColor", "transparent"]); + f(&["rgb", "rgba", "hsl", "hsla", "hwb", "currentColor", "transparent"]); } }