palkan
4764c52b5b
fix passing null as Promise's onFullfilled (which is broken in Chrome 32)
11 years ago
Tim van der Meij
dc5961d969
Merge pull request #5465 from Snuffleupagus/findbar-notFound-color
...
[GENERIC viewer] Fix the background color of the findInput when the search term is not found
11 years ago
Tim van der Meij
23bcab6f88
Merge pull request #5488 from Snuffleupagus/presentationMode-no-zoom-followup
...
Prevent a "TypeError: pdfViewer is null" when the viewer loads (PR 5413 followup)
11 years ago
Jonas Jenwald
6e7651a548
Merge pull request #5492 from jsundn/master
...
Fixes typo in webgl.js
11 years ago
jsundn
2ec7e34541
Fixes typo in webgl.js
11 years ago
Jonas Jenwald
6078901962
Prevent a "TypeError: pdfViewer is null" when the viewer loads (PR 5413 followup)
...
Currently if you manage to e.g. open the console (with <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>K</kbd>) before the viewer is initialized, the following will be printed in the console: `TypeError: pdfViewer is null`.
This doesn't cause any actual errors, but nevertheless it seems like something we should avoid.
Followup to PR 5413.
11 years ago
Yury Delendik
de9838018e
Merge pull request #5485 from CodingFabian/save-pr-5479
...
fixed multi precinct handling in jpx
11 years ago
Paul Roit
da5c0cf0e2
fixed multi precinct handling in jpx
...
fixes #5475
11 years ago
Yury Delendik
8e6b97eec9
Merge pull request #5473 from fkaelberer/fewerMultiplicationsInYcckToRgb
...
Use fewer multiplications for Ycck to Rgb conversion
11 years ago
Yury Delendik
bb91aa5e38
Merge pull request #5478 from Snuffleupagus/bug-1018882
...
Prevent text selection in Presentation Mode (bug 1018882)
11 years ago
Yury Delendik
e294c8883a
Merge pull request #5203 from Snuffleupagus/disableAutoFetch-loadingBar
...
Fix loadingBar hiding when disableAutoFetch is enabled (issue 3590)
11 years ago
Yury Delendik
3b9a78d3d8
Merge pull request #5416 from Snuffleupagus/percent-sign-l10n
...
Allow localization of the placement of percent signs in the zoom box
11 years ago
Yury Delendik
ade8dccb73
Import L10n
11 years ago
Jonas Jenwald
ce62b9387d
Remove any active text selection when entering Presentation Mode
11 years ago
Jonas Jenwald
86309faf3c
Prevent text selection in Presentation Mode (bug 1018882)
11 years ago
Jonas Jenwald
7f67d76339
Update |node make lint| to also cover the Firefox specific *.jsm files
11 years ago
Jonas Jenwald
4da57c3b85
Fix code style in extensions/firefox/content/PdfStreamConverter.jsm
11 years ago
Jonas Jenwald
8921606b68
Fix code style in extensions/firefox/content/PdfJsTelemetry-addon.jsm
11 years ago
Jonas Jenwald
80503e4197
Fix code style in extensions/firefox/content/PdfJsTelemetry.jsm
11 years ago
Jonas Jenwald
ac0f48c2fc
Fix code style in extensions/firefox/content/PdfJs-stub.jsm
11 years ago
Jonas Jenwald
c4c5c2222b
Fix code style in extensions/firefox/content/PdfjsContentUtils.jsm
11 years ago
Jonas Jenwald
3370b18e0b
Fix code style in extensions/firefox/content/PdfjsChromeUtils.jsm
11 years ago
Jonas Jenwald
9ed3e1e545
Fix code style in extensions/firefox/content/PdfJs.jsm
11 years ago
Brendan Dahl
1480850045
Merge pull request #5428 from yurydelendik/regaddon
...
Bug 1076909 - change args order in registerAddonHistogram.
11 years ago
Yury Delendik
4d4ef11978
Bug 1076909 - change args order in registerAddonHistogram.
11 years ago
fkaelberer
5fcf3d37a7
use fewer multiplications in convertYcckToRgb
11 years ago
fkaelberer
ea719ae805
remove null checks that always evaluate to false
11 years ago
Yury Delendik
45ca953705
Merge pull request #5471 from Snuffleupagus/issue-5470
...
Fix typed array assignment in the |constructPostScriptFromIRResult| function (issue 5470)
11 years ago
Jonas Jenwald
5f32f80e34
Add a reduced test case for issue 5470
11 years ago
Jonas Jenwald
1abad5f290
Fix typed array assignment in the |constructPostScriptFromIRResult| function (issue 5470)
11 years ago
Jonas Jenwald
fbca0e1ab0
[GENERIC viewer] Fix the background color of the findInput when the search term is not found
...
When a search term isn't found, the background color of the findInput is supposed to change (to red). This is currently not working as intended, because the CSS rule is not being applied correctly. (It seems that this broke in PR 2208.)
This patch also changes the background color to match the one used in the native Firefox findbar, since the old color seemed a bit too pink.
11 years ago
Yury Delendik
308646d5f1
Merge pull request #5454 from Snuffleupagus/debugger-font-download
...
Fix regression that prevents downloading of font files in the debugger
11 years ago
Jonas Jenwald
4ed3074011
Fix regression that prevents downloading of font files in the debugger
...
This is a regression from PR 5366.
11 years ago
Fabian Lange
970c048d50
fixes caching of inline images during parsing.
...
As described in #5444 , the evaluator will perform identity checking of
paintImageMaskXObjects to decide if it can use
paintImageMaskXObjectRepeat instead of paintImageMaskXObjectGroup.
This can only ever work if the entry is a cache hit. However the
previous caching implementation was doing a lazy caching, which would
only consider a image cache worthy if it is repeated.
Only then the repeated instance would be cached.
As a result of this the sequence of identical images A1 A2 A3 A4 would
be seen as A1 A2 A2 A2 by the evaluator, which prevents using the
"repeat" optimization. Also only the last encountered image is cached,
so A1 B1 A2 B2, would stay A1 B1 A2 B2.
The new implementation drops the "lazy" init of the cache. The threshold
for enabling an image to be cached is rather small, so the potential waste
in storage and adler32 calculation is rather low. It also caches any
eligible image by its adler32.
The two example from above would now be A1 A1 A1 A1 and A1 B1 A1 B1
which not only saves temporary storage, but also prevents computing
identical masks over and over again (which is the main performance impact
of #2618 )
11 years ago
thejdeep
46238c30cf
Fix of pdf not loading on android (issue 5427)
...
Fix for pdf on android not visible
Fix for pdf on android not visible
11 years ago
Yury Delendik
a737e5b706
Merge pull request #5437 from Snuffleupagus/bug-878194-eq-test
...
Change bug878194 to an |eq| test
11 years ago
Yury Delendik
fdf87c3e4c
Merge pull request #5447 from araghava/issue-5440-rtl-bug
...
[issue 5440] fix rtl direction bug for full language codes
11 years ago
araghava
e2c001c19d
[issue 5440] fix rtl direction bug for full language codes
11 years ago
Yury Delendik
251b2cae2c
Merge pull request #5443 from Snuffleupagus/issue-5291-test
...
Add a reduced test case for issue 5291
11 years ago
Yury Delendik
1bf72f3fe8
Merge pull request #5409 from thejdeep/master
...
Black text not visible #5291
11 years ago
Jonas Jenwald
58cc39f329
Add a reduced test case for issue 5291
11 years ago
thejdeep
39a29cfe03
Fixed text not visible
11 years ago
Yury Delendik
d65db7c5ed
Merge pull request #5438 from fkaelberer/addFKaelbererToAuthors
...
Add fkaelberer to the list of authors
11 years ago
fkaelberer
e2b53ddef7
Add fkaelberer to the list of authors
11 years ago
Jonas Jenwald
bf0d03bccd
Change bug878194 to an |eq| test
11 years ago
Yury Delendik
6048c8a910
Minor node/pdf2svg.js fixes.
11 years ago
Yury Delendik
04390d8252
Merge pull request #5426 from fkaelberer/fixJpxOutOfPackets
...
Fix JPX "Out of Packets" Error (issues 4358, 4659, 4814)
11 years ago
Yury Delendik
9e7966a446
Merge pull request #5390 from Snuffleupagus/inline-jpeg-image-loading-test-case
...
Add a reduced test case for PR 5286
11 years ago
Yury Delendik
6b2c900722
Merge pull request #5401 from Snuffleupagus/bug-847420-test
...
Add a reduced test case for bug 847420
11 years ago
Yury Delendik
deeaee9f7e
Merge pull request #5433 from yurydelendik/v1.0.907
...
Version 1.0.907
11 years ago