From 4229ace432ec3c6ae14c2abe4ddaa228aced6610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 6 Jun 2023 23:09:44 +0200 Subject: [PATCH] style: Add hwb/a to devtools autocomplete lists The changes to the devtools directory were written automatically via ./mach devtools-css-db Differential Revision: https://phabricator.services.mozilla.com/D134197 --- 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 3629b17058f..11acfe63c84 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", "currentColor", "transparent"]); + f(&["rgb", "rgba", "hsl", "hsla", "hwb", "hwba", "currentColor", "transparent"]); } }