Opportunity to optimise the assignment of encoded selectors. So .foo, #foo, .bar, #bar and .baz would map to .a, #a, .b, #b and .c.
Instead of, right now: .foo, #foo, .bar, #bar and .baz is mapped to .a, #b, .c, #d and .e.
Effectively doubles the capacity for each alphabet character — a character could hold a class and a ID — as opposed to a character holding just a class or ID.
Opportunity to optimise the assignment of encoded selectors. So
.foo
,#foo
,.bar
,#bar
and.baz
would map to.a
,#a
,.b
,#b
and.c
.Instead of, right now:
.foo
,#foo
,.bar
,#bar
and.baz
is mapped to.a
,#b
,.c
,#d
and.e
.Effectively doubles the capacity for each alphabet character — a character could hold a class and a ID — as opposed to a character holding just a class or ID.