-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend getGlyphMapForStandardFonts
with some Hebrew entries (issue 15033)
#15034
Conversation
…15033) This only adds the minimum entries required in order to render the referenced document correctly, rather than trying to support "all" Hebrew glyphs, to ensure that all lines in `getGlyphMapForStandardFonts` are covered by tests.
022416b
to
2dca140
Compare
getNonStdFontMap
with some Hebrew entries (issue 15033)getGlyphMapForStandardFonts
with some Hebrew entries (issue 15033)
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/5afc80f6d86b97a/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/25e92f269db7ad0/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/5afc80f6d86b97a/output.txt Total script time: 26.08 mins
Image differences available at: http://54.241.84.105:8877/5afc80f6d86b97a/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/25e92f269db7ad0/output.txt Total script time: 28.54 mins
Image differences available at: http://54.193.163.58:8877/25e92f269db7ad0/reftest-analyzer.html#web=eq.log |
@@ -524,6 +524,33 @@ const getGlyphMapForStandardFonts = getLookupTableFactory(function (t) { | |||
t[337] = 9552; | |||
t[493] = 1039; | |||
t[494] = 1040; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated to this patch, but could we fill the gaps ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As mentioned above, I'm not all that keen on adding a bunch of entries here without real-world test-cases that benefit from the changes.
Also, I believe that the list was (originally) purposely made sparse to keep its size down such that we don't unnecessarily bloat the file size here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
/botio makeref |
From: Bot.io (Linux m4)ReceivedCommand cmd_makeref from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/c5c79005681101d/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_makeref from @Snuffleupagus received. Current queue size: 1 Live output at: http://54.193.163.58:8877/8ebda40eb26e873/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/c5c79005681101d/output.txt Total script time: 22.73 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/8ebda40eb26e873/output.txt Total script time: 22.02 mins
|
This only adds the minimum entries required in order to render the referenced document correctly, rather than trying to support "all" Hebrew glyphs, to ensure that all lines in
getGlyphMapForStandardFonts
are covered by tests.