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 upCompute or provide inter- and intra-word spacing data to layout and rendering #98
Comments
ChrisParis
pushed a commit
to ChrisParis/servo
that referenced
this issue
Sep 7, 2014
Add a test for setting HTMLMediaElement.volume to non-finite numbers.
glennw
added a commit
to glennw/servo
that referenced
this issue
Jan 16, 2017
Various fixes and cleanups for android (mostly VAO related).
|
This is done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CSS properties 'word-spacing' and 'letter-spacing' can induce extra spacing between individual letters (glyphs?) or words. Gecko implements this, depending on situation, by either providing an object that can compute spacing for a run of text (
PropertyProvider), or aSpacingarray that maps char offsets to extra spacing.For Servo, it seems that we will want to recompute this information for layout, and memoize it when putting it into a DisplayItem.