mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-28 23:28:16 +02:00
XFA - Fix the way to select page on breaking
- it aims to fix https://bugzilla.mozilla.org/show_bug.cgi?id=1716838. - some fonts in the pdf in the bug where bold when they shouldn't so write the font properties in the html to avoid to use some wrong inherited ones.
This commit is contained in:
parent
223b60f4e8
commit
7aea8faa34
5 changed files with 106 additions and 50 deletions
|
@ -25,6 +25,7 @@ const $addHTML = Symbol();
|
|||
const $appendChild = Symbol();
|
||||
const $childrenToHTML = Symbol();
|
||||
const $clean = Symbol();
|
||||
const $cleanPage = Symbol();
|
||||
const $cleanup = Symbol();
|
||||
const $clone = Symbol();
|
||||
const $consumed = Symbol();
|
||||
|
@ -59,6 +60,7 @@ const $isDataValue = Symbol();
|
|||
const $isDescendent = Symbol();
|
||||
const $isSplittable = Symbol();
|
||||
const $isTransparent = Symbol();
|
||||
const $isUsable = Symbol();
|
||||
const $lastAttribute = Symbol();
|
||||
const $namespaceId = Symbol("namespaceId");
|
||||
const $nodeName = Symbol("nodeName");
|
||||
|
@ -978,6 +980,7 @@ export {
|
|||
$appendChild,
|
||||
$childrenToHTML,
|
||||
$clean,
|
||||
$cleanPage,
|
||||
$cleanup,
|
||||
$clone,
|
||||
$consumed,
|
||||
|
@ -1012,6 +1015,7 @@ export {
|
|||
$isDescendent,
|
||||
$isSplittable,
|
||||
$isTransparent,
|
||||
$isUsable,
|
||||
$namespaceId,
|
||||
$nodeName,
|
||||
$nsAttributes,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue