With @scope defined in css-cascade-6, should authors be able to register custom properties with @property inside the scope, without those properties loitering the global space?
@scope (.card) {
/* Should --color be local to the scope or not? */
@property --color {
…
}
}
If it should be scoped, should that happen automatically or should it be opt-in by means of an extra descriptor during registration?