Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMove CSS lexing of numbers, unit markers, etc into the lexer #67
Comments
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
…ARLES-IndexedDB IndexedDB: ChristopheCHARLES's tests from Test the Web Forward Paris (2012)
glennw
added a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Make render API generate IDs in a way that works for e10s.
glennw
pushed a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Document the public api While working with the API, i couldn't help but notice the lack of documentation. I talked with @glennw on IRC and he explained me a lot of details which i wrote down, so that new contributors will learn from my mistakes. I also tried to explain the relationship between the different parts of the API. It's still a bit rough but it's something. There's an equivalent PR for webrender as well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, the CSS parser has to munge around in strings to extract numbers and units, such as in parsing 'font-size'. The lexer should be lexing numbers and units, so that the parser should never need to create a number from a string.