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
This commit is contained in:
Emilio Cobos Álvarez 2023-06-06 23:11:36 +02:00 committed by Oriol Brufau
parent 4229ace432
commit d0475b75d4

View file

@ -829,7 +829,7 @@ impl SpecifiedValueInfo for Color {
// should probably be handled that way as well. // should probably be handled that way as well.
// XXX `currentColor` should really be `currentcolor`. But let's // XXX `currentColor` should really be `currentcolor`. But let's
// keep it consistent with the old system for now. // 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"]);
} }
} }