Age | Commit message (Collapse) | Author |
|
This will make it easier to support both string types at the same time
while we convert code, and tracking down remaining uses.
One big exception is Value::to_string() in LibJS, where the name is
dictated by the ToString AO.
|
|
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
|
|
Parse line names when passed to the grid-column/row-start/end CSS
properties.
|
|
Refactor this class for quality-of-life reasons as well as to better
prepare for the addition of line names.
|
|
Implement span correctly when indicated in the grid-column-start,
grid-row-start, etc. CSS properties. Previously it had been implemented
as if span was something that went alongside the position property, but
actually it seems like if you do 'span 3' in the grid-column-start
property, for example, this means it literally spans 3 blocks, and the
3 has nothing to do with position.
|
|
For grid-row-start, grid-column-end and similar values it is possible to
have auto values (nothing was specified, for example).
|
|
Add GridTrackPlacement to use with grid-column-start and related CSS
properties.
|