1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 09:38:06 +02:00

Merge pull request #9062 from mozilla/no_high

Move char codes from high surrogate pair range into private use.
This commit is contained in:
Jonas Jenwald 2017-12-08 12:31:22 +01:00 committed by GitHub
commit a5e3261b48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 1 deletions

View file

@ -467,6 +467,8 @@ var ProblematicCharRanges = new Int32Array([
0x3164, 0x3165,
// Chars that is used in complex-script shaping.
0xAA60, 0xAA80,
// Unicode high surrogates.
0xD800, 0xE000,
// Specials Unicode block.
0xFFF0, 0x10000
]);