├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .mailmap ├── .travis.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── EXPORT ├── LICENSE ├── README.md ├── docs ├── config.json ├── contents │ ├── api │ │ └── index.md │ ├── css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── examples │ │ └── index.md │ ├── getting_started │ │ └── index.md │ ├── images │ │ ├── favicon.ico │ │ └── logo.svg │ ├── index.md │ └── js │ │ ├── bootstrap.min.js │ │ └── jquery-2.1.0.min.js ├── plugins │ └── wintersmith-makerelative.coffee └── templates │ └── layout.jade ├── examples ├── .eslintrc ├── acroforms │ ├── README.md │ ├── acroforms.html │ └── acroforms.js ├── browserify │ ├── .gitignore │ ├── README.md │ ├── gulpfile.js │ ├── index.html │ ├── main.js │ ├── package.json │ └── worker.js ├── components │ ├── pageviewer.html │ ├── pageviewer.js │ ├── simpleviewer.html │ ├── simpleviewer.js │ ├── singlepageviewer.html │ └── singlepageviewer.js ├── image_decoders │ ├── fish.jpg │ ├── jpeg_viewer.html │ └── jpeg_viewer.js ├── learning │ ├── helloworld.html │ ├── helloworld.pdf │ ├── helloworld64.html │ └── prevnext.html ├── mobile-viewer │ ├── README.md │ ├── images │ │ ├── div_line_left.png │ │ ├── div_line_left@1.5x.png │ │ ├── div_line_left@2x.png │ │ ├── div_line_right.png │ │ ├── div_line_right@1.5x.png │ │ ├── div_line_right@2x.png │ │ ├── document_bg.png │ │ ├── icon_next_page.png │ │ ├── icon_next_page@1.5x.png │ │ ├── icon_previous_page.png │ │ ├── icon_previous_page@1.5x.png │ │ ├── icon_zoom_in.png │ │ ├── icon_zoom_in@1.5x.png │ │ ├── icon_zoom_out.png │ │ ├── icon_zoom_out@1.5x.png │ │ ├── spinner.png │ │ └── toolbar_background.png │ ├── viewer.css │ ├── viewer.html │ └── viewer.js ├── node │ ├── .eslintrc │ ├── domstubs.js │ ├── getinfo.js │ ├── pdf2png │ │ ├── README.md │ │ └── pdf2png.js │ └── pdf2svg.js ├── svgviewer │ ├── README.md │ ├── index.html │ └── viewer.js ├── text-only │ ├── index.html │ └── pdf2svg.js └── webpack │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── main.js │ ├── package.json │ └── webpack.config.js ├── extensions ├── .eslintrc ├── chromium │ ├── .eslintrc │ ├── .gitignore │ ├── contentscript.js │ ├── contentstyle.css │ ├── extension-router.js │ ├── icon128.png │ ├── icon16.png │ ├── icon19.png │ ├── icon38.png │ ├── icon48.png │ ├── manifest.json │ ├── options │ │ ├── migration.js │ │ ├── options.html │ │ └── options.js │ ├── pageAction │ │ ├── background.js │ │ ├── popup.html │ │ └── popup.js │ ├── pdfHandler-vcros.js │ ├── pdfHandler.html │ ├── pdfHandler.js │ ├── preferences_schema.json │ ├── preserve-referer.js │ ├── restoretab.html │ ├── restoretab.js │ ├── suppress-update.js │ └── telemetry.js ├── firefox │ ├── .eslintrc │ ├── .gitignore │ ├── README.mozilla │ ├── content │ │ └── PdfJsDefaultPreferences.jsm │ └── tools │ │ └── l10n.js └── seamonkey │ ├── .eslintrc │ ├── .gitignore │ ├── README.mozilla │ ├── bootstrap.js │ ├── chrome-mozcentral.manifest │ ├── chrome.manifest │ ├── chrome │ └── content.js │ ├── content │ ├── PdfJs-stub.jsm │ ├── PdfJs.jsm │ ├── PdfJsDefaultPreferences.jsm │ ├── PdfJsNetwork.jsm │ ├── PdfJsTelemetry-stub.jsm │ ├── PdfJsTelemetry.jsm │ ├── PdfStreamConverter.jsm │ ├── PdfjsChromeUtils.jsm │ ├── PdfjsContentUtils.jsm │ ├── pdfjschildbootstrap-enabled.js │ └── pdfjschildbootstrap.js │ ├── icon.png │ ├── icon64.png │ ├── install.rdf │ ├── tools │ └── l10n.js │ └── update.rdf ├── external ├── .eslintrc ├── .gitignore ├── bcmaps │ ├── .gitattributes │ ├── 78-EUC-H.bcmap │ ├── 78-EUC-V.bcmap │ ├── 78-H.bcmap │ ├── 78-RKSJ-H.bcmap │ ├── 78-RKSJ-V.bcmap │ ├── 78-V.bcmap │ ├── 78ms-RKSJ-H.bcmap │ ├── 78ms-RKSJ-V.bcmap │ ├── 83pv-RKSJ-H.bcmap │ ├── 90ms-RKSJ-H.bcmap │ ├── 90ms-RKSJ-V.bcmap │ ├── 90msp-RKSJ-H.bcmap │ ├── 90msp-RKSJ-V.bcmap │ ├── 90pv-RKSJ-H.bcmap │ ├── 90pv-RKSJ-V.bcmap │ ├── Add-H.bcmap │ ├── Add-RKSJ-H.bcmap │ ├── Add-RKSJ-V.bcmap │ ├── Add-V.bcmap │ ├── Adobe-CNS1-0.bcmap │ ├── Adobe-CNS1-1.bcmap │ ├── Adobe-CNS1-2.bcmap │ ├── Adobe-CNS1-3.bcmap │ ├── Adobe-CNS1-4.bcmap │ ├── Adobe-CNS1-5.bcmap │ ├── Adobe-CNS1-6.bcmap │ ├── Adobe-CNS1-UCS2.bcmap │ ├── Adobe-GB1-0.bcmap │ ├── Adobe-GB1-1.bcmap │ ├── Adobe-GB1-2.bcmap │ ├── Adobe-GB1-3.bcmap │ ├── Adobe-GB1-4.bcmap │ ├── Adobe-GB1-5.bcmap │ ├── Adobe-GB1-UCS2.bcmap │ ├── Adobe-Japan1-0.bcmap │ ├── Adobe-Japan1-1.bcmap │ ├── Adobe-Japan1-2.bcmap │ ├── Adobe-Japan1-3.bcmap │ ├── Adobe-Japan1-4.bcmap │ ├── Adobe-Japan1-5.bcmap │ ├── Adobe-Japan1-6.bcmap │ ├── Adobe-Japan1-UCS2.bcmap │ ├── Adobe-Korea1-0.bcmap │ ├── Adobe-Korea1-1.bcmap │ ├── Adobe-Korea1-2.bcmap │ ├── Adobe-Korea1-UCS2.bcmap │ ├── B5-H.bcmap │ ├── B5-V.bcmap │ ├── B5pc-H.bcmap │ ├── B5pc-V.bcmap │ ├── CNS-EUC-H.bcmap │ ├── CNS-EUC-V.bcmap │ ├── CNS1-H.bcmap │ ├── CNS1-V.bcmap │ ├── CNS2-H.bcmap │ ├── CNS2-V.bcmap │ ├── ETHK-B5-H.bcmap │ ├── ETHK-B5-V.bcmap │ ├── ETen-B5-H.bcmap │ ├── ETen-B5-V.bcmap │ ├── ETenms-B5-H.bcmap │ ├── ETenms-B5-V.bcmap │ ├── EUC-H.bcmap │ ├── EUC-V.bcmap │ ├── Ext-H.bcmap │ ├── Ext-RKSJ-H.bcmap │ ├── Ext-RKSJ-V.bcmap │ ├── Ext-V.bcmap │ ├── GB-EUC-H.bcmap │ ├── GB-EUC-V.bcmap │ ├── GB-H.bcmap │ ├── GB-V.bcmap │ ├── GBK-EUC-H.bcmap │ ├── GBK-EUC-V.bcmap │ ├── GBK2K-H.bcmap │ ├── GBK2K-V.bcmap │ ├── GBKp-EUC-H.bcmap │ ├── GBKp-EUC-V.bcmap │ ├── GBT-EUC-H.bcmap │ ├── GBT-EUC-V.bcmap │ ├── GBT-H.bcmap │ ├── GBT-V.bcmap │ ├── GBTpc-EUC-H.bcmap │ ├── GBTpc-EUC-V.bcmap │ ├── GBpc-EUC-H.bcmap │ ├── GBpc-EUC-V.bcmap │ ├── H.bcmap │ ├── HKdla-B5-H.bcmap │ ├── HKdla-B5-V.bcmap │ ├── HKdlb-B5-H.bcmap │ ├── HKdlb-B5-V.bcmap │ ├── HKgccs-B5-H.bcmap │ ├── HKgccs-B5-V.bcmap │ ├── HKm314-B5-H.bcmap │ ├── HKm314-B5-V.bcmap │ ├── HKm471-B5-H.bcmap │ ├── HKm471-B5-V.bcmap │ ├── HKscs-B5-H.bcmap │ ├── HKscs-B5-V.bcmap │ ├── Hankaku.bcmap │ ├── Hiragana.bcmap │ ├── KSC-EUC-H.bcmap │ ├── KSC-EUC-V.bcmap │ ├── KSC-H.bcmap │ ├── KSC-Johab-H.bcmap │ ├── KSC-Johab-V.bcmap │ ├── KSC-V.bcmap │ ├── KSCms-UHC-H.bcmap │ ├── KSCms-UHC-HW-H.bcmap │ ├── KSCms-UHC-HW-V.bcmap │ ├── KSCms-UHC-V.bcmap │ ├── KSCpc-EUC-H.bcmap │ ├── KSCpc-EUC-V.bcmap │ ├── Katakana.bcmap │ ├── LICENSE │ ├── NWP-H.bcmap │ ├── NWP-V.bcmap │ ├── RKSJ-H.bcmap │ ├── RKSJ-V.bcmap │ ├── Roman.bcmap │ ├── UniCNS-UCS2-H.bcmap │ ├── UniCNS-UCS2-V.bcmap │ ├── UniCNS-UTF16-H.bcmap │ ├── UniCNS-UTF16-V.bcmap │ ├── UniCNS-UTF32-H.bcmap │ ├── UniCNS-UTF32-V.bcmap │ ├── UniCNS-UTF8-H.bcmap │ ├── UniCNS-UTF8-V.bcmap │ ├── UniGB-UCS2-H.bcmap │ ├── UniGB-UCS2-V.bcmap │ ├── UniGB-UTF16-H.bcmap │ ├── UniGB-UTF16-V.bcmap │ ├── UniGB-UTF32-H.bcmap │ ├── UniGB-UTF32-V.bcmap │ ├── UniGB-UTF8-H.bcmap │ ├── UniGB-UTF8-V.bcmap │ ├── UniJIS-UCS2-H.bcmap │ ├── UniJIS-UCS2-HW-H.bcmap │ ├── UniJIS-UCS2-HW-V.bcmap │ ├── UniJIS-UCS2-V.bcmap │ ├── UniJIS-UTF16-H.bcmap │ ├── UniJIS-UTF16-V.bcmap │ ├── UniJIS-UTF32-H.bcmap │ ├── UniJIS-UTF32-V.bcmap │ ├── UniJIS-UTF8-H.bcmap │ ├── UniJIS-UTF8-V.bcmap │ ├── UniJIS2004-UTF16-H.bcmap │ ├── UniJIS2004-UTF16-V.bcmap │ ├── UniJIS2004-UTF32-H.bcmap │ ├── UniJIS2004-UTF32-V.bcmap │ ├── UniJIS2004-UTF8-H.bcmap │ ├── UniJIS2004-UTF8-V.bcmap │ ├── UniJISPro-UCS2-HW-V.bcmap │ ├── UniJISPro-UCS2-V.bcmap │ ├── UniJISPro-UTF8-V.bcmap │ ├── UniJISX0213-UTF32-H.bcmap │ ├── UniJISX0213-UTF32-V.bcmap │ ├── UniJISX02132004-UTF32-H.bcmap │ ├── UniJISX02132004-UTF32-V.bcmap │ ├── UniKS-UCS2-H.bcmap │ ├── UniKS-UCS2-V.bcmap │ ├── UniKS-UTF16-H.bcmap │ ├── UniKS-UTF16-V.bcmap │ ├── UniKS-UTF32-H.bcmap │ ├── UniKS-UTF32-V.bcmap │ ├── UniKS-UTF8-H.bcmap │ ├── UniKS-UTF8-V.bcmap │ ├── V.bcmap │ └── WP-Symbol.bcmap ├── builder │ ├── builder.js │ ├── fixtures │ │ ├── confusing-comment-expected.js │ │ ├── confusing-comment.js │ │ ├── elif-expected.js │ │ ├── elif.js │ │ ├── else-expected.js │ │ ├── else.js │ │ ├── error-expected.js │ │ ├── error-false-expected.js │ │ ├── error-false.js │ │ ├── error.js │ │ ├── expand-expected.html │ │ ├── expand.html │ │ ├── if-empty-expected.js │ │ ├── if-empty.js │ │ ├── if-false-elif-false-else-expected.js │ │ ├── if-false-elif-false-else.js │ │ ├── if-false-elif-true-else-expected.js │ │ ├── if-false-elif-true-else.js │ │ ├── if-false-else-expected.js │ │ ├── if-false-else.js │ │ ├── if-nested-expected.js │ │ ├── if-nested.js │ │ ├── if-true-elif-false-else-expected.js │ │ ├── if-true-elif-false-else.js │ │ ├── if-true-else-expected.js │ │ ├── if-true-else.js │ │ ├── if-unclosed-expected.js │ │ ├── if-unclosed.js │ │ ├── include-expected.html │ │ ├── include-non-existent-expected.html │ │ ├── include-non-existent.html │ │ ├── include.html │ │ ├── js-comment-expected.js │ │ ├── js-comment.js │ │ ├── undefined-define-expected.js │ │ ├── undefined-define.js │ │ ├── unsupported-ifdef-expected.js │ │ └── unsupported-ifdef.js │ ├── fixtures_esprima │ │ ├── blocks-expected.js │ │ ├── blocks.js │ │ ├── comments-expected.js │ │ ├── comments.js │ │ ├── constants-expected.js │ │ ├── constants.js │ │ ├── deadcode-expected.js │ │ ├── deadcode.js │ │ ├── evals-expected.js │ │ ├── evals.js │ │ ├── evals.json │ │ ├── ifs-expected.js │ │ ├── ifs.js │ │ ├── importalias-expected.js │ │ └── importalias.js │ ├── preprocessor2.js │ ├── test-fixtures.js │ └── test-fixtures_esprima.js ├── cmapscompress │ ├── README.md │ ├── compress.js │ ├── optimize.js │ └── parse.js ├── dist │ ├── CODE_OF_CONDUCT.md │ ├── README.md │ └── webpack.js ├── importL10n │ └── locales.js ├── systemjs │ └── plugin-babel-cached.js ├── webL10n │ ├── README.md │ └── l10n.js └── webpack │ └── pdfjsdev-loader.js ├── gulpfile.js ├── l10n ├── README.md ├── ach │ ├── chrome.properties │ └── viewer.properties ├── af │ ├── chrome.properties │ └── viewer.properties ├── ak │ ├── chrome.properties │ └── viewer.properties ├── an │ ├── chrome.properties │ └── viewer.properties ├── ar │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ast │ ├── chrome.properties │ └── viewer.properties ├── az │ ├── chrome.properties │ └── viewer.properties ├── be │ ├── chrome.properties │ └── viewer.properties ├── bg │ ├── chrome.properties │ └── viewer.properties ├── bn-BD │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── bn-IN │ ├── chrome.properties │ └── viewer.properties ├── br │ ├── chrome.properties │ └── viewer.properties ├── brx │ ├── chrome.properties │ └── viewer.properties ├── bs │ ├── chrome.properties │ └── viewer.properties ├── ca │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── cak │ ├── chrome.properties │ └── viewer.properties ├── cs │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── csb │ ├── chrome.properties │ └── viewer.properties ├── cy │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── da │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── de │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── el │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── en-CA │ ├── chrome.properties │ └── viewer.properties ├── en-GB │ ├── chrome.properties │ └── viewer.properties ├── en-US │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── eo │ ├── chrome.properties │ └── viewer.properties ├── es-AR │ ├── chrome.properties │ └── viewer.properties ├── es-CL │ ├── chrome.properties │ └── viewer.properties ├── es-ES │ ├── chrome.properties │ └── viewer.properties ├── es-MX │ ├── chrome.properties │ └── viewer.properties ├── et │ ├── chrome.properties │ └── viewer.properties ├── eu │ ├── chrome.properties │ └── viewer.properties ├── fa │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ff │ ├── chrome.properties │ └── viewer.properties ├── fi │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── fr │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── fy-NL │ ├── chrome.properties │ └── viewer.properties ├── ga-IE │ ├── chrome.properties │ └── viewer.properties ├── gd │ ├── chrome.properties │ └── viewer.properties ├── gl │ ├── chrome.properties │ └── viewer.properties ├── gn │ ├── chrome.properties │ └── viewer.properties ├── gu-IN │ ├── chrome.properties │ └── viewer.properties ├── he │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── hi-IN │ ├── chrome.properties │ └── viewer.properties ├── hr │ ├── chrome.properties │ └── viewer.properties ├── hsb │ ├── chrome.properties │ └── viewer.properties ├── hto │ └── viewer.properties ├── hu │ ├── chrome.properties │ └── viewer.properties ├── hy-AM │ ├── chrome.properties │ └── viewer.properties ├── ia │ ├── chrome.properties │ └── viewer.properties ├── id │ ├── chrome.properties │ └── viewer.properties ├── is │ ├── chrome.properties │ └── viewer.properties ├── it │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ja │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ka │ ├── chrome.properties │ └── viewer.properties ├── kab │ ├── chrome.properties │ └── viewer.properties ├── kk │ ├── chrome.properties │ └── viewer.properties ├── km │ ├── chrome.properties │ └── viewer.properties ├── kn │ ├── chrome.properties │ └── viewer.properties ├── ko │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── kok │ ├── chrome.properties │ └── viewer.properties ├── ks │ ├── chrome.properties │ └── viewer.properties ├── ku │ ├── chrome.properties │ └── viewer.properties ├── lg │ ├── chrome.properties │ └── viewer.properties ├── lij │ ├── chrome.properties │ └── viewer.properties ├── lo │ └── viewer.properties ├── lt │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ltg │ ├── chrome.properties │ └── viewer.properties ├── lv │ ├── chrome.properties │ └── viewer.properties ├── meh │ └── viewer.properties ├── mk │ ├── chrome.properties │ └── viewer.properties ├── mn │ └── viewer.properties ├── mr │ ├── chrome.properties │ └── viewer.properties ├── ms │ ├── chrome.properties │ └── viewer.properties ├── my │ ├── chrome.properties │ └── viewer.properties ├── nb-NO │ ├── chrome.properties │ └── viewer.properties ├── ne-NP │ ├── chrome.properties │ └── viewer.properties ├── nl │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── nn-NO │ ├── chrome.properties │ └── viewer.properties ├── nso │ ├── chrome.properties │ └── viewer.properties ├── oc │ ├── chrome.properties │ └── viewer.properties ├── pa-IN │ ├── chrome.properties │ └── viewer.properties ├── pl │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── pt-BR │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── pt-PT │ ├── chrome.properties │ └── viewer.properties ├── rm │ ├── chrome.properties │ └── viewer.properties ├── ro │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── ru │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── rw │ └── viewer.properties ├── sah │ ├── chrome.properties │ └── viewer.properties ├── sat │ ├── chrome.properties │ └── viewer.properties ├── si │ ├── chrome.properties │ └── viewer.properties ├── sk │ ├── chrome.properties │ └── viewer.properties ├── sl │ ├── chrome.properties │ └── viewer.properties ├── son │ ├── chrome.properties │ └── viewer.properties ├── sq │ ├── chrome.properties │ └── viewer.properties ├── sr │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── sv-SE │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── sw │ ├── chrome.properties │ └── viewer.properties ├── ta-LK │ └── viewer.properties ├── ta │ ├── chrome.properties │ └── viewer.properties ├── te │ ├── chrome.properties │ └── viewer.properties ├── th │ ├── chrome.properties │ └── viewer.properties ├── tl │ ├── chrome.properties │ └── viewer.properties ├── tn │ └── viewer.properties ├── tr │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── tsz │ ├── chrome.properties │ └── viewer.properties ├── uk │ ├── chrome.properties │ └── viewer.properties ├── ur │ ├── chrome.properties │ └── viewer.properties ├── uz │ ├── chrome.properties │ └── viewer.properties ├── vi │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── wo │ ├── chrome.properties │ └── viewer.properties ├── xh │ ├── chrome.properties │ └── viewer.properties ├── zam │ └── viewer.properties ├── zh-CN │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties ├── zh-TW │ ├── chrome.properties │ ├── metadata.inc │ └── viewer.properties └── zu │ ├── chrome.properties │ └── viewer.properties ├── package-lock.json ├── package.json ├── pdfjs.config ├── src ├── core │ ├── annotation.js │ ├── arithmetic_decoder.js │ ├── bidi.js │ ├── ccitt.js │ ├── ccitt_stream.js │ ├── cff_parser.js │ ├── charsets.js │ ├── chunked_stream.js │ ├── cmap.js │ ├── colorspace.js │ ├── core_utils.js │ ├── crypto.js │ ├── document.js │ ├── encodings.js │ ├── evaluator.js │ ├── font_renderer.js │ ├── fonts.js │ ├── function.js │ ├── glyphlist.js │ ├── image.js │ ├── image_utils.js │ ├── jbig2.js │ ├── jbig2_stream.js │ ├── jpeg_stream.js │ ├── jpg.js │ ├── jpx.js │ ├── jpx_stream.js │ ├── metrics.js │ ├── murmurhash3.js │ ├── obj.js │ ├── operator_list.js │ ├── parser.js │ ├── pattern.js │ ├── pdf_manager.js │ ├── primitives.js │ ├── ps_parser.js │ ├── standard_fonts.js │ ├── stream.js │ ├── type1_parser.js │ ├── unicode.js │ ├── worker.js │ └── worker_stream.js ├── display │ ├── annotation_layer.js │ ├── api.js │ ├── api_compatibility.js │ ├── canvas.js │ ├── content_disposition.js │ ├── display_utils.js │ ├── fetch_stream.js │ ├── font_loader.js │ ├── metadata.js │ ├── network.js │ ├── network_utils.js │ ├── node_stream.js │ ├── pattern_helper.js │ ├── svg.js │ ├── text_layer.js │ ├── transport_stream.js │ ├── webgl.js │ ├── worker_options.js │ └── xml_parser.js ├── doc_helper.js ├── images │ └── logo.svg ├── interfaces.js ├── license_header.js ├── license_header_libre.js ├── pdf.image_decoders.js ├── pdf.js ├── pdf.worker.entry.js ├── pdf.worker.js ├── shared │ ├── cffStandardStrings.js │ ├── compatibility.js │ ├── fonts_utils.js │ ├── global_scope.js │ ├── is_node.js │ ├── message_handler.js │ ├── streams_polyfill.js │ └── util.js └── worker_loader.js ├── systemjs.config.js ├── test ├── .eslintrc ├── .gitignore ├── add_test.js ├── annotation_layer_builder_overrides.css ├── chromium │ └── test-telemetry.js ├── downloadutils.js ├── driver.js ├── features │ ├── index.html │ ├── tests.js │ └── worker-stub.js ├── font │ ├── font_core_spec.js │ ├── font_fpgm_spec.js │ ├── font_os2_spec.js │ ├── font_post_spec.js │ ├── font_test.html │ ├── fontutils.js │ ├── jasmine-boot.js │ └── ttxdriver.js ├── pdfs │ ├── .gitattributes │ ├── .gitignore │ ├── 20130226130259.pdf.link │ ├── ArabicCIDTrueType.pdf │ ├── High-Pressure-Measurement-WP-001287.pdf.link │ ├── IdentityToUnicodeMap_charCodeOf.pdf │ ├── JST2007-5.pdf.link │ ├── P020121130574743273239.pdf.link │ ├── PDFJS-7562-reduced.pdf │ ├── PDFJS-9279-reduced.pdf │ ├── S2.pdf │ ├── SFAA_Japanese.pdf.link │ ├── ShowText-ShadingPattern.pdf │ ├── TAMReview.pdf │ ├── TaroUTR50SortedList112.pdf.link │ ├── Test-plusminus.pdf │ ├── ThuluthFeatures.pdf │ ├── TrueType_without_cmap.pdf │ ├── ZapfDingbats.pdf │ ├── aboutstacks.pdf.link │ ├── alphatrans.pdf │ ├── annotation-as.pdf.link │ ├── annotation-border-styles.pdf │ ├── annotation-button-widget.pdf │ ├── annotation-caret-ink.pdf │ ├── annotation-choice-widget.pdf │ ├── annotation-fileattachment.pdf │ ├── annotation-freetext.pdf │ ├── annotation-highlight.pdf │ ├── annotation-line.pdf │ ├── annotation-link-text-popup.pdf │ ├── annotation-polyline-polygon.pdf │ ├── annotation-square-circle.pdf │ ├── annotation-squiggly.pdf │ ├── annotation-stamp.pdf │ ├── annotation-strikeout.pdf │ ├── annotation-text-widget.pdf │ ├── annotation-text-without-popup.pdf │ ├── annotation-tx.pdf │ ├── annotation-tx2.pdf │ ├── annotation-tx3.pdf │ ├── annotation-underline.pdf │ ├── arial_unicode_ab_cidfont.pdf │ ├── arial_unicode_en_cidfont.pdf │ ├── artofwar.pdf.link │ ├── asciihexdecode.pdf │ ├── attachment.pdf │ ├── bad-PageLabels.pdf │ ├── basicapi.pdf │ ├── bigboundingbox.pdf │ ├── blendmode.pdf │ ├── boundingBox_invalid.pdf │ ├── bpl13210.pdf.link │ ├── bug1001080.pdf │ ├── bug1011159.pdf │ ├── bug1020226.pdf │ ├── bug1020858.pdf │ ├── bug1027533.pdf │ ├── bug1028735.pdf │ ├── bug1037816.pdf.link │ ├── bug1046314.pdf │ ├── bug1050040.pdf │ ├── bug1064894.pdf.link │ ├── bug1065245.pdf │ ├── bug1068432.pdf │ ├── bug1072164.pdf.link │ ├── bug1077808.pdf.link │ ├── bug1108301.pdf │ ├── bug1108753.pdf.link │ ├── bug1123803.pdf.link │ ├── bug1130815.pdf.link │ ├── bug1132849.pdf │ ├── bug1140761.pdf.link │ ├── bug1142033.pdf.link │ ├── bug1146106.pdf │ ├── bug1151216.pdf │ ├── bug1157493.pdf │ ├── bug1175962.pdf │ ├── bug1186827.pdf │ ├── bug1199237.pdf.link │ ├── bug1200096.pdf │ ├── bug1245391_reduced.pdf │ ├── bug1250079.pdf │ ├── bug1252420.pdf │ ├── bug1260585.pdf.link │ ├── bug1308536.pdf │ ├── bug1337429.pdf │ ├── bug1354114.pdf.link │ ├── bug1392647.pdf │ ├── bug1393476.pdf.link │ ├── bug1425312.pdf.link │ ├── bug1443140.pdf.link │ ├── bug1473809.pdf │ ├── bug1513120_reduced.pdf │ ├── bug1552113.pdf │ ├── bug766086.pdf │ ├── bug766138.pdf.link │ ├── bug793632.pdf │ ├── bug808084.pdf.link │ ├── bug816075.pdf │ ├── bug847420.pdf │ ├── bug850854.pdf │ ├── bug852992_reduced.pdf │ ├── bug859204.pdf │ ├── bug860632.pdf │ ├── bug864847.pdf │ ├── bug865858.pdf.link │ ├── bug866395.pdf │ ├── bug867484.pdf.link │ ├── bug868745.pdf │ ├── bug878026.pdf │ ├── bug878194.pdf.link │ ├── bug886717.pdf │ ├── bug887152.pdf.link │ ├── bug888437.pdf.link │ ├── bug889327.pdf.link │ ├── bug893730.pdf │ ├── bug894572.pdf │ ├── bug898853.pdf │ ├── bug900822.pdf │ ├── bug903856.pdf │ ├── bug911034.pdf │ ├── bug921409.pdf │ ├── bug921760.pdf.link │ ├── bug946506.pdf │ ├── bug951051.pdf.link │ ├── bug956965.pdf.link │ ├── cable.pdf.link │ ├── calgray.pdf │ ├── calrgb.pdf │ ├── canvas.pdf │ ├── ccitt_EndOfBlock_false.pdf │ ├── cid_cff.pdf │ ├── clippath.pdf │ ├── close-path-bug.pdf │ ├── cmykjpeg.pdf │ ├── colorkeymask.pdf │ ├── complex_ttf_font.pdf │ ├── coons-allflags-withfunction.pdf │ ├── decodeACSuccessive.pdf │ ├── devicen.pdf │ ├── ecma262.pdf.link │ ├── endchar.pdf │ ├── extgstate.pdf │ ├── f1040.pdf.link │ ├── file_url_link.pdf │ ├── filled-background.pdf │ ├── fips197.pdf.link │ ├── fit11-talk.pdf.link │ ├── font_ascent_descent.pdf │ ├── franz.pdf │ ├── franz_2.pdf │ ├── freeculture.pdf │ ├── geothermal.pdf.link │ ├── german-umlaut-r.pdf │ ├── gesamt.pdf.link │ ├── glyph_accent.pdf │ ├── gradientfill.pdf │ ├── helloworld-bad.pdf │ ├── hmm.pdf.link │ ├── html5checker.pdf.link │ ├── hudsonsurvey.pdf.link │ ├── i9.pdf.link │ ├── ibwa-bad.pdf.link │ ├── ichiji.pdf.link │ ├── images_1bit_grayscale.pdf │ ├── intelisa.pdf.link │ ├── issue10004.pdf.link │ ├── issue1002.pdf │ ├── issue10084_reduced.pdf │ ├── issue1010.pdf.link │ ├── issue1015.pdf.link │ ├── issue10326.pdf.link │ ├── issue10339_reduced.pdf │ ├── issue10388_reduced.pdf │ ├── issue10402.pdf │ ├── issue10438_reduced.pdf │ ├── issue1045.pdf │ ├── issue1049.pdf.link │ ├── issue10491.pdf.link │ ├── issue10519_reduced.pdf │ ├── issue10529.pdf │ ├── issue10542_reduced.pdf │ ├── issue1055r.pdf │ ├── issue10614.pdf.link │ ├── issue10665_reduced.pdf │ ├── issue10717.pdf.link │ ├── issue1096.pdf.link │ ├── issue11016_reduced.pdf │ ├── issue11045.pdf │ ├── issue11052.pdf.link │ ├── issue11150_reduced.pdf │ ├── issue1127.pdf.link │ ├── issue1133.pdf.link │ ├── issue1155r.pdf │ ├── issue1169.pdf.link │ ├── issue1171.pdf │ ├── issue1233.pdf.link │ ├── issue1243.pdf.link │ ├── issue1249.pdf │ ├── issue1257.pdf.link │ ├── issue1293r.pdf │ ├── issue1309.pdf.link │ ├── issue1317.pdf.link │ ├── issue1350.pdf │ ├── issue1419.pdf.link │ ├── issue1453.pdf │ ├── issue1466.pdf.link │ ├── issue1512r.pdf │ ├── issue1536.pdf.link │ ├── issue1597.pdf.link │ ├── issue1629.pdf.link │ ├── issue1655r.pdf │ ├── issue1658.pdf.link │ ├── issue1685.pdf.link │ ├── issue1687.pdf.link │ ├── issue1709.pdf.link │ ├── issue1721.pdf.link │ ├── issue1729.pdf.link │ ├── issue1796.pdf.link │ ├── issue1810.pdf.link │ ├── issue1878.pdf.link │ ├── issue1905.pdf │ ├── issue1912.pdf.link │ ├── issue1936.pdf.link │ ├── issue1940.pdf.link │ ├── issue1985.pdf │ ├── issue1998.pdf.link │ ├── issue2006.pdf.link │ ├── issue2017r.pdf │ ├── issue2074.pdf │ ├── issue2098.pdf.link │ ├── issue2099-1.pdf │ ├── issue2128r.pdf │ ├── issue2129.pdf.link │ ├── issue2139.pdf.link │ ├── issue215.pdf │ ├── issue2176.pdf │ ├── issue2177.pdf │ ├── issue2386.pdf.link │ ├── issue2391-1.pdf │ ├── issue2391-2.pdf │ ├── issue2442.pdf.link │ ├── issue2462.pdf │ ├── issue2531.pdf.link │ ├── issue2537r.pdf │ ├── issue2627.pdf.link │ ├── issue2642.pdf.link │ ├── issue2761.pdf │ ├── issue2770.pdf.link │ ├── issue2799.pdf.link │ ├── issue2829.pdf.link │ ├── issue2833.pdf │ ├── issue2840.pdf │ ├── issue2853.pdf.link │ ├── issue2881.pdf.link │ ├── issue2884_reduced.pdf │ ├── issue2931.pdf │ ├── issue2948.pdf │ ├── issue2956.pdf │ ├── issue2984.pdf.link │ ├── issue3025.pdf │ ├── issue3061.pdf │ ├── issue3062.pdf.link │ ├── issue3064.pdf.link │ ├── issue3115r.pdf.link │ ├── issue3188.pdf │ ├── issue3205r.pdf │ ├── issue3207r.pdf │ ├── issue3214.pdf │ ├── issue3248.pdf.link │ ├── issue3263r.pdf │ ├── issue3323.pdf │ ├── issue3371.pdf │ ├── issue3384.pdf.link │ ├── issue3405r.pdf │ ├── issue3427.pdf.link │ ├── issue3438.pdf │ ├── issue3458.pdf │ ├── issue3521.pdf │ ├── issue3566.pdf │ ├── issue3584.pdf │ ├── issue3591.pdf.link │ ├── issue3666.pdf.link │ ├── issue3694_reduced.pdf │ ├── issue3848.pdf.link │ ├── issue3879r.pdf │ ├── issue3885.pdf │ ├── issue3903.pdf.link │ ├── issue3925.pdf.link │ ├── issue3928.pdf │ ├── issue3999.pdf.link │ ├── issue4061.pdf │ ├── issue4090.pdf.link │ ├── issue4244.pdf.link │ ├── issue4246.pdf │ ├── issue4304.pdf │ ├── issue4379.pdf │ ├── issue4387.pdf.link │ ├── issue4402_reduced.pdf │ ├── issue4436r.pdf │ ├── issue4461.pdf │ ├── issue4550.pdf │ ├── issue4573.pdf │ ├── issue4575.pdf │ ├── issue4630.pdf │ ├── issue4650.pdf │ ├── issue4665.pdf │ ├── issue4668.pdf │ ├── issue4684.pdf │ ├── issue4722.pdf │ ├── issue4800.pdf │ ├── issue4801.pdf │ ├── issue4872.pdf.link │ ├── issue4875.pdf │ ├── issue4881.pdf │ ├── issue4883.pdf.link │ ├── issue4890.pdf.link │ ├── issue4909.pdf │ ├── issue4914.pdf.link │ ├── issue4926.pdf.link │ ├── issue4934.pdf │ ├── issue5010.pdf │ ├── issue5039.pdf │ ├── issue5044.pdf │ ├── issue5070.pdf │ ├── issue5084.pdf │ ├── issue5138.pdf │ ├── issue5202.pdf │ ├── issue5238.pdf │ ├── issue5244.pdf │ ├── issue5256.pdf │ ├── issue5280.pdf │ ├── issue5291.pdf │ ├── issue5334.pdf │ ├── issue5421.pdf │ ├── issue5470.pdf │ ├── issue5475.pdf │ ├── issue5481.pdf │ ├── issue5501.pdf │ ├── issue5509.pdf.link │ ├── issue5540.pdf │ ├── issue5549.pdf │ ├── issue5564_reduced.pdf │ ├── issue5567.pdf │ ├── issue5592.pdf.link │ ├── issue5599.pdf │ ├── issue5644.pdf.link │ ├── issue5677.pdf │ ├── issue5686.pdf │ ├── issue5701.pdf │ ├── issue5704.pdf │ ├── issue5726.pdf.link │ ├── issue5734.pdf │ ├── issue5747.pdf │ ├── issue5751.pdf │ ├── issue5752.pdf.link │ ├── issue5801.pdf │ ├── issue5804.pdf │ ├── issue5808.pdf │ ├── issue5874.pdf │ ├── issue5896.pdf │ ├── issue5909.pdf │ ├── issue5939.pdf.link │ ├── issue5946.pdf │ ├── issue5954.pdf │ ├── issue5972.pdf │ ├── issue5994.pdf │ ├── issue6006.pdf │ ├── issue6010_1.pdf │ ├── issue6010_2.pdf │ ├── issue6019.pdf │ ├── issue6066.pdf.link │ ├── issue6068.pdf │ ├── issue6069.pdf │ ├── issue6071.pdf.link │ ├── issue6081.pdf │ ├── issue6099.pdf │ ├── issue6106.pdf │ ├── issue6108.pdf │ ├── issue6113.pdf │ ├── issue6117.pdf.link │ ├── issue6151.pdf │ ├── issue6165.pdf.link │ ├── issue6204.pdf │ ├── issue6231_1.pdf │ ├── issue6238.pdf.link │ ├── issue6286.pdf │ ├── issue6289.pdf.link │ ├── issue6296.pdf │ ├── issue6298.pdf │ ├── issue6336.pdf │ ├── issue6342.pdf │ ├── issue6360.pdf.link │ ├── issue6364.pdf.link │ ├── issue6387.pdf │ ├── issue6410.pdf │ ├── issue6413.pdf │ ├── issue6541.pdf │ ├── issue6549.pdf.link │ ├── issue6612.pdf │ ├── issue6621.pdf │ ├── issue6652.pdf │ ├── issue6692.pdf.link │ ├── issue6721_reduced.pdf │ ├── issue6737.pdf.link │ ├── issue6782.pdf │ ├── issue6889.pdf │ ├── issue6894.pdf │ ├── issue6901.pdf │ ├── issue6961.pdf │ ├── issue6962.pdf │ ├── issue7014.pdf │ ├── issue7020.pdf │ ├── issue7074_reduced.pdf │ ├── issue7101.pdf │ ├── issue7115.pdf │ ├── issue7180.pdf │ ├── issue7200.pdf │ ├── issue7229.pdf │ ├── issue7308.pdf.link │ ├── issue7339_reduced.pdf │ ├── issue7403.pdf │ ├── issue7406.pdf │ ├── issue7426.pdf │ ├── issue7439.pdf │ ├── issue7446.pdf │ ├── issue7492.pdf │ ├── issue7496.pdf.link │ ├── issue7507.pdf │ ├── issue7544.pdf │ ├── issue7580.pdf │ ├── issue7598.pdf │ ├── issue7665.pdf │ ├── issue7696.pdf │ ├── issue7769.pdf │ ├── issue7828.pdf.link │ ├── issue7835.pdf │ ├── issue7855.pdf │ ├── issue7872.pdf │ ├── issue7878.pdf │ ├── issue7901.pdf │ ├── issue8047.pdf.link │ ├── issue8061.pdf │ ├── issue8088.pdf │ ├── issue8092.pdf │ ├── issue8097_reduced.pdf │ ├── issue8117.pdf.link │ ├── issue8125.pdf │ ├── issue8169.pdf.link │ ├── issue818.pdf.link │ ├── issue8182.pdf.link │ ├── issue8187.pdf │ ├── issue8229.pdf │ ├── issue8234.pdf │ ├── issue8276_reduced.pdf │ ├── issue8330.pdf.link │ ├── issue8372.pdf │ ├── issue8380.pdf.link │ ├── issue840.pdf │ ├── issue8424.pdf │ ├── issue845r.pdf │ ├── issue8480.pdf │ ├── issue8570.pdf │ ├── issue8586.pdf │ ├── issue8613.pdf.link │ ├── issue8614.pdf.link │ ├── issue8697.pdf │ ├── issue8702.pdf │ ├── issue8707.pdf │ ├── issue8795_reduced.pdf │ ├── issue8798r.pdf │ ├── issue8823.pdf │ ├── issue8895.pdf.link │ ├── issue8960_reduced.pdf │ ├── issue9084.pdf │ ├── issue9105_reduced.pdf │ ├── issue918.pdf │ ├── issue919.pdf.link │ ├── issue9195.pdf.link │ ├── issue925.pdf │ ├── issue9252.pdf │ ├── issue9262_reduced.pdf │ ├── issue9278.pdf │ ├── issue9285.pdf.link │ ├── issue9291.pdf │ ├── issue9418.pdf │ ├── issue9425.pdf.link │ ├── issue9458.pdf │ ├── issue9534_reduced.pdf │ ├── issue9540.pdf.link │ ├── issue9650.pdf.link │ ├── issue9679.pdf.link │ ├── issue9915_reduced.pdf │ ├── issue9940.pdf │ ├── issue9949.pdf │ ├── issue9972-1.pdf │ ├── issue9972-2.pdf │ ├── issue9972-3.pdf │ ├── jai.pdf.link │ ├── javauninstall-7r.pdf │ ├── jbig2_huffman_1.pdf.link │ ├── jbig2_huffman_2.pdf.link │ ├── jbig2_symbol_offset.pdf │ ├── kdchart.pdf.link │ ├── link-annotation-border.pdf.link │ ├── liveprogramming.pdf.link │ ├── mao.pdf.link │ ├── mixedfonts.pdf │ ├── mmtype1.pdf │ ├── multiple-filters-length-zero.pdf │ ├── noembed-eucjp.pdf │ ├── noembed-identity-2.pdf │ ├── noembed-identity.pdf │ ├── noembed-jis7.pdf │ ├── noembed-sjis.pdf │ ├── non-embedded-NuptialScript.pdf │ ├── ocs.pdf.link │ ├── ohkubo-SS04.pdf.link │ ├── openoffice.pdf │ ├── operator-in-TJ-array.pdf │ ├── pal-o47.pdf.link │ ├── pattern_text_embedded_font.pdf │ ├── pdf.pdf.link │ ├── pdfjsbad1586.pdf │ ├── pdfkit_compressed.pdf │ ├── pdkids.pdf.link │ ├── personwithdog.pdf │ ├── piperine.pdf.link │ ├── pr4606.pdf.link │ ├── pr4731.pdf.link │ ├── pr4897.pdf.link │ ├── pr4922.pdf │ ├── pr6531_1.pdf │ ├── pr6531_2.pdf │ ├── pr7352.pdf │ ├── pr8491.pdf.link │ ├── pr8808.pdf.link │ ├── preistabelle.pdf.link │ ├── protectip.pdf.link │ ├── rotated.pdf │ ├── rotation.pdf │ ├── scan-bad.pdf │ ├── scorecard_reduced.pdf │ ├── shading_extend.pdf │ ├── shavian.pdf.link │ ├── simpletype3font.pdf │ ├── sizes.pdf │ ├── smaskdim.pdf │ ├── tensor-allflags-withfunction.pdf │ ├── text_clip_cff_cid.pdf │ ├── tiling-pattern-box.pdf │ ├── tiling-pattern-large-steps.pdf │ ├── tracemonkey.pdf │ ├── transparency_group.pdf │ ├── transparent.pdf │ ├── tutorial.pdf.link │ ├── txt2pdf.pdf.link │ ├── type4psfunc.pdf │ ├── unix01.pdf.link │ ├── usmanm-bad.pdf.link │ ├── vertical.pdf │ ├── vesta.pdf.link │ ├── wdsg_fitc.pdf.link │ ├── wnv_chinese.pdf.link │ ├── xobject-image.pdf │ ├── xref_command_missing.pdf │ ├── zero_descent.pdf │ └── zerowidthline.pdf ├── resources │ ├── browser_manifests │ │ ├── .gitignore │ │ └── browser_manifest.json.example │ ├── favicon.ico │ ├── firefox │ │ └── user.js │ ├── reftest-analyzer.css │ ├── reftest-analyzer.html │ └── reftest-analyzer.js ├── stats │ ├── results │ │ └── .gitignore │ └── statcmp.js ├── test.js ├── test_manifest.json ├── test_slave.html ├── testutils.js ├── text_layer_test.css ├── ttx │ └── README.md ├── unit │ ├── annotation_spec.js │ ├── api_spec.js │ ├── bidi_spec.js │ ├── cff_parser_spec.js │ ├── clitests.json │ ├── clitests_helper.js │ ├── cmap_spec.js │ ├── colorspace_spec.js │ ├── core_utils_spec.js │ ├── crypto_spec.js │ ├── custom_spec.js │ ├── display_svg_spec.js │ ├── display_utils_spec.js │ ├── document_spec.js │ ├── encodings_spec.js │ ├── evaluator_spec.js │ ├── fetch_stream_spec.js │ ├── function_spec.js │ ├── jasmine-boot.js │ ├── message_handler_spec.js │ ├── metadata_spec.js │ ├── murmurhash3_spec.js │ ├── network_spec.js │ ├── network_utils_spec.js │ ├── node_stream_spec.js │ ├── parser_spec.js │ ├── pdf_find_controller_spec.js │ ├── pdf_find_utils_spec.js │ ├── pdf_history_spec.js │ ├── primitives_spec.js │ ├── stream_spec.js │ ├── test_utils.js │ ├── testreporter.js │ ├── type1_parser_spec.js │ ├── ui_utils_spec.js │ ├── unicode_spec.js │ ├── unit_test.html │ └── util_spec.js ├── webbrowser.js └── webserver.js └── web ├── .eslintrc ├── .gitignore ├── annotation_layer_builder.css ├── annotation_layer_builder.js ├── app.js ├── app_options.js ├── base_viewer.js ├── chrome-i18n-allow-access-to-file-urls.json ├── chromecom.js ├── compressed.tracemonkey-pldi-09.pdf ├── debugger.js ├── download_manager.js ├── firefox_print_service.js ├── firefoxcom.js ├── genericcom.js ├── genericl10n.js ├── grab_to_pan.js ├── images ├── annotation-check.svg ├── annotation-comment.svg ├── annotation-help.svg ├── annotation-insert.svg ├── annotation-key.svg ├── annotation-newparagraph.svg ├── annotation-noicon.svg ├── annotation-note.svg ├── annotation-paragraph.svg ├── findbarButton-next-rtl.png ├── findbarButton-next-rtl@2x.png ├── findbarButton-next.png ├── findbarButton-next@2x.png ├── findbarButton-previous-rtl.png ├── findbarButton-previous-rtl@2x.png ├── findbarButton-previous.png ├── findbarButton-previous@2x.png ├── grab.cur ├── grabbing.cur ├── loading-icon.gif ├── loading-small.png ├── loading-small@2x.png ├── secondaryToolbarButton-documentProperties.png ├── secondaryToolbarButton-documentProperties@2x.png ├── secondaryToolbarButton-firstPage.png ├── secondaryToolbarButton-firstPage@2x.png ├── secondaryToolbarButton-handTool.png ├── secondaryToolbarButton-handTool@2x.png ├── secondaryToolbarButton-lastPage.png ├── secondaryToolbarButton-lastPage@2x.png ├── secondaryToolbarButton-rotateCcw.png ├── secondaryToolbarButton-rotateCcw@2x.png ├── secondaryToolbarButton-rotateCw.png ├── secondaryToolbarButton-rotateCw@2x.png ├── secondaryToolbarButton-scrollHorizontal.png ├── secondaryToolbarButton-scrollHorizontal@2x.png ├── secondaryToolbarButton-scrollVertical.png ├── secondaryToolbarButton-scrollVertical@2x.png ├── secondaryToolbarButton-scrollWrapped.png ├── secondaryToolbarButton-scrollWrapped@2x.png ├── secondaryToolbarButton-selectTool.png ├── secondaryToolbarButton-selectTool@2x.png ├── secondaryToolbarButton-spreadEven.png ├── secondaryToolbarButton-spreadEven@2x.png ├── secondaryToolbarButton-spreadNone.png ├── secondaryToolbarButton-spreadNone@2x.png ├── secondaryToolbarButton-spreadOdd.png ├── secondaryToolbarButton-spreadOdd@2x.png ├── shadow.png ├── texture.png ├── toolbarButton-bookmark.png ├── toolbarButton-bookmark@2x.png ├── toolbarButton-download.png ├── toolbarButton-download@2x.png ├── toolbarButton-menuArrows.png ├── toolbarButton-menuArrows@2x.png ├── toolbarButton-openFile.png ├── toolbarButton-openFile@2x.png ├── toolbarButton-pageDown-rtl.png ├── toolbarButton-pageDown-rtl@2x.png ├── toolbarButton-pageDown.png ├── toolbarButton-pageDown@2x.png ├── toolbarButton-pageUp-rtl.png ├── toolbarButton-pageUp-rtl@2x.png ├── toolbarButton-pageUp.png ├── toolbarButton-pageUp@2x.png ├── toolbarButton-presentationMode.png ├── toolbarButton-presentationMode@2x.png ├── toolbarButton-print.png ├── toolbarButton-print@2x.png ├── toolbarButton-search.png ├── toolbarButton-search@2x.png ├── toolbarButton-secondaryToolbarToggle-rtl.png ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png ├── toolbarButton-secondaryToolbarToggle.png ├── toolbarButton-secondaryToolbarToggle@2x.png ├── toolbarButton-sidebarToggle-rtl.png ├── toolbarButton-sidebarToggle-rtl@2x.png ├── toolbarButton-sidebarToggle.png ├── toolbarButton-sidebarToggle@2x.png ├── toolbarButton-viewAttachments.png ├── toolbarButton-viewAttachments@2x.png ├── toolbarButton-viewOutline-rtl.png ├── toolbarButton-viewOutline-rtl@2x.png ├── toolbarButton-viewOutline.png ├── toolbarButton-viewOutline@2x.png ├── toolbarButton-viewThumbnail.png ├── toolbarButton-viewThumbnail@2x.png ├── toolbarButton-zoomIn.png ├── toolbarButton-zoomIn@2x.png ├── toolbarButton-zoomOut.png ├── toolbarButton-zoomOut@2x.png ├── treeitem-collapsed-rtl.png ├── treeitem-collapsed-rtl@2x.png ├── treeitem-collapsed.png ├── treeitem-collapsed@2x.png ├── treeitem-expanded.png └── treeitem-expanded@2x.png ├── interfaces.js ├── overlay_manager.js ├── password_prompt.js ├── pdf_attachment_viewer.js ├── pdf_cursor_tools.js ├── pdf_document_properties.js ├── pdf_find_bar.js ├── pdf_find_controller.js ├── pdf_find_utils.js ├── pdf_history.js ├── pdf_link_service.js ├── pdf_outline_viewer.js ├── pdf_page_view.js ├── pdf_presentation_mode.js ├── pdf_print_service.js ├── pdf_rendering_queue.js ├── pdf_sidebar.js ├── pdf_sidebar_resizer.js ├── pdf_single_page_viewer.js ├── pdf_thumbnail_view.js ├── pdf_thumbnail_viewer.js ├── pdf_viewer.component.js ├── pdf_viewer.css ├── pdf_viewer.js ├── pdfjs.js ├── preferences.js ├── secondary_toolbar.js ├── text_layer_builder.css ├── text_layer_builder.js ├── toolbar.js ├── ui_utils.js ├── view_history.js ├── viewer-snippet-chrome-extension.html ├── viewer-snippet-chrome-overlays.html ├── viewer-snippet-firefox-extension.html ├── viewer-snippet-minified.html ├── viewer-snippet.html ├── viewer.css ├── viewer.html ├── viewer.js └── viewer_compatibility.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .vs/ 3 | local.mk 4 | build/ 5 | tags 6 | .DS_Store 7 | Makefile 8 | node_modules/ 9 | examples/node/svgdump/ 10 | examples/node/pdf2png/*.png 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "test/ttx/fonttools-code"] 2 | path = test/ttx/fonttools-code 3 | url = https://github.com/behdad/fonttools.git 4 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | Michał Gołębiowski-Owczarek 2 | -------------------------------------------------------------------------------- /docs/contents/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/docs/contents/images/favicon.ico -------------------------------------------------------------------------------- /examples/browserify/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /examples/image_decoders/fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/examples/image_decoders/fish.jpg -------------------------------------------------------------------------------- /examples/mobile-viewer/images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/examples/mobile-viewer/images/spinner.png -------------------------------------------------------------------------------- /examples/node/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "../.eslintrc" 4 | ], 5 | 6 | "env": { 7 | "node": true, 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /examples/webpack/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "../.eslintrc" 4 | ], 5 | 6 | "env": { 7 | "node": true, 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /examples/webpack/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /extensions/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | ../.eslintrc 4 | ], 5 | 6 | "rules": { 7 | "no-restricted-globals": "off", 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /extensions/chromium/.gitignore: -------------------------------------------------------------------------------- 1 | content/ 2 | -------------------------------------------------------------------------------- /extensions/chromium/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/chromium/icon128.png -------------------------------------------------------------------------------- /extensions/chromium/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/chromium/icon16.png -------------------------------------------------------------------------------- /extensions/chromium/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/chromium/icon19.png -------------------------------------------------------------------------------- /extensions/chromium/icon38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/chromium/icon38.png -------------------------------------------------------------------------------- /extensions/chromium/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/chromium/icon48.png -------------------------------------------------------------------------------- /extensions/firefox/.gitignore: -------------------------------------------------------------------------------- 1 | metadata.inc 2 | chrome.manifest.inc 3 | locale/ 4 | -------------------------------------------------------------------------------- /extensions/seamonkey/.gitignore: -------------------------------------------------------------------------------- 1 | metadata.inc 2 | chrome.manifest.inc 3 | locale/ 4 | -------------------------------------------------------------------------------- /extensions/seamonkey/chrome-mozcentral.manifest: -------------------------------------------------------------------------------- 1 | resource pdf.js content/ 2 | -------------------------------------------------------------------------------- /extensions/seamonkey/chrome.manifest: -------------------------------------------------------------------------------- 1 | # Additional resources for pdf.js 2 | 3 | content pdf.js chrome/ 4 | 5 | # PDFJS_SUPPORTED_LOCALES 6 | -------------------------------------------------------------------------------- /extensions/seamonkey/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/seamonkey/icon.png -------------------------------------------------------------------------------- /extensions/seamonkey/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/extensions/seamonkey/icon64.png -------------------------------------------------------------------------------- /external/.gitignore: -------------------------------------------------------------------------------- 1 | cmaps/ 2 | -------------------------------------------------------------------------------- /external/bcmaps/.gitattributes: -------------------------------------------------------------------------------- 1 | * binary 2 | -------------------------------------------------------------------------------- /external/bcmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Add-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Add-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /external/bcmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GB-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GB-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Katakana.bcmap -------------------------------------------------------------------------------- /external/bcmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/Roman.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /external/bcmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/V.bcmap -------------------------------------------------------------------------------- /external/bcmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/external/bcmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /external/builder/fixtures/confusing-comment-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var i = 0; 3 | while(i-->0) { 4 | } 5 | -------------------------------------------------------------------------------- /external/builder/fixtures/confusing-comment.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | var i = 0; 4 | while(i-->0) { 5 | } 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/elif-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Found #elif without matching #if at __filename:2 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/elif.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#elif TRUE 3 | var a; 4 | //#endif 5 | -------------------------------------------------------------------------------- /external/builder/fixtures/else-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Found #else without matching #if at __filename:2 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#else 3 | //#endif 4 | -------------------------------------------------------------------------------- /external/builder/fixtures/error-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Found #error "Some Error" at __filename:3 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/error-false-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var a; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/error-false.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if FALSE 3 | //#error "Some Error" 4 | //#endif 5 | var a; 6 | -------------------------------------------------------------------------------- /external/builder/fixtures/error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | //#error "Some Error" 4 | //#endif 5 | var b; 6 | -------------------------------------------------------------------------------- /external/builder/fixtures/expand-expected.html: -------------------------------------------------------------------------------- 1 | prefixtruesuffix 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/expand.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-empty-expected.js: -------------------------------------------------------------------------------- 1 | //Error: No JavaScript expression given at __filename:2 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-empty.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if 3 | var a; 4 | //#else 5 | var b; 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-elif-false-else-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var c; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-elif-false-else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if FALSE 3 | var a; 4 | //#elif FALSE 5 | var b; 6 | //#else 7 | var c; 8 | //#endif 9 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-elif-true-else-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var b; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-elif-true-else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if FALSE 3 | var a; 4 | //#elif TRUE 5 | var b; 6 | //#else 7 | var c; 8 | //#endif 9 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-else-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var b; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-false-else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if FALSE 3 | var a; 4 | //#else 5 | var b; 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-nested-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var a; 3 | 4 | var b; 5 | 6 | var d; 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-true-elif-false-else-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var a; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-true-elif-false-else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | var a; 4 | //#elif FALSE 5 | var b; 6 | //#else 7 | var c; 8 | //#endif 9 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-true-else-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var a; 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-true-else.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | var a; 4 | //#else 5 | var b; 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-unclosed-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Missing #endif in preprocessor for __filename 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/if-unclosed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | var a; 4 | -------------------------------------------------------------------------------- /external/builder/fixtures/include-expected.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /external/builder/fixtures/include-non-existent-expected.html: -------------------------------------------------------------------------------- 1 | //Error: Failed to include "some file that does not exist" at __filename:2 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/include-non-existent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/include.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /external/builder/fixtures/js-comment-expected.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //var a; 3 | var b; 4 | var c; 5 | -------------------------------------------------------------------------------- /external/builder/fixtures/js-comment.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if TRUE 3 | ////var a; 4 | //var b; 5 | var c; 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/undefined-define-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Could not evaluate "notdefined" at __filename:2 2 | //ReferenceError: notdefined is not defined 3 | -------------------------------------------------------------------------------- /external/builder/fixtures/undefined-define.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#if notdefined 3 | var a; 4 | //#else 5 | var b; 6 | //#endif 7 | -------------------------------------------------------------------------------- /external/builder/fixtures/unsupported-ifdef-expected.js: -------------------------------------------------------------------------------- 1 | //Error: Found #endif without #if at __filename:4 2 | -------------------------------------------------------------------------------- /external/builder/fixtures/unsupported-ifdef.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | //#ifdef TRUE 3 | //ifdef should not be recognized 4 | //#endif 5 | var a; 6 | -------------------------------------------------------------------------------- /external/builder/fixtures_esprima/evals.json: -------------------------------------------------------------------------------- 1 | { 'test': 'test' } -------------------------------------------------------------------------------- /external/webL10n/README.md: -------------------------------------------------------------------------------- 1 | The source code for the library can be found at 2 | 3 | https://github.com/fabi1cazenave/webL10n 4 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | ref/ 2 | tmp/ 3 | *.log 4 | test_snapshots/ 5 | -------------------------------------------------------------------------------- /test/pdfs/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pdf binary 2 | -------------------------------------------------------------------------------- /test/pdfs/20130226130259.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160111221513/http://www.courts.go.jp/app/files/hanrei_jp/014/083014_hanrei.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/ArabicCIDTrueType.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/ArabicCIDTrueType.pdf -------------------------------------------------------------------------------- /test/pdfs/JST2007-5.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20090612045731/http://kanji.zinbun.kyoto-u.ac.jp/~yasuoka/publications/JST2007-5.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/P020121130574743273239.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150329232430/http://image.haier.com/manual/japan/wash_machine/201211/P020121130574743273239.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/PDFJS-7562-reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/PDFJS-7562-reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/PDFJS-9279-reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/PDFJS-9279-reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/S2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/S2.pdf -------------------------------------------------------------------------------- /test/pdfs/SFAA_Japanese.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150307061027/http://www.project2061.org/publications/sfaa/SFAA_Japanese.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/ShowText-ShadingPattern.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/ShowText-ShadingPattern.pdf -------------------------------------------------------------------------------- /test/pdfs/TAMReview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/TAMReview.pdf -------------------------------------------------------------------------------- /test/pdfs/TaroUTR50SortedList112.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150805202858/http://blogs.adobe.com/CCJKType/files/2012/07/TaroUTR50SortedList112.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/Test-plusminus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/Test-plusminus.pdf -------------------------------------------------------------------------------- /test/pdfs/ThuluthFeatures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/ThuluthFeatures.pdf -------------------------------------------------------------------------------- /test/pdfs/TrueType_without_cmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/TrueType_without_cmap.pdf -------------------------------------------------------------------------------- /test/pdfs/ZapfDingbats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/ZapfDingbats.pdf -------------------------------------------------------------------------------- /test/pdfs/aboutstacks.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160112115354/http://www.fao.org/fileadmin/user_upload/tci/docs/2_About%20Stacks.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/alphatrans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/alphatrans.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-as.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=611315 2 | -------------------------------------------------------------------------------- /test/pdfs/annotation-border-styles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-border-styles.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-button-widget.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-button-widget.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-caret-ink.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-caret-ink.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-choice-widget.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-choice-widget.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-fileattachment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-fileattachment.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-freetext.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-freetext.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-highlight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-highlight.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-line.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-line.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-square-circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-square-circle.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-squiggly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-squiggly.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-stamp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-stamp.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-strikeout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-strikeout.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-text-widget.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-text-widget.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-tx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-tx.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-tx2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-tx2.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-tx3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-tx3.pdf -------------------------------------------------------------------------------- /test/pdfs/annotation-underline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/annotation-underline.pdf -------------------------------------------------------------------------------- /test/pdfs/arial_unicode_ab_cidfont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/arial_unicode_ab_cidfont.pdf -------------------------------------------------------------------------------- /test/pdfs/arial_unicode_en_cidfont.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/arial_unicode_en_cidfont.pdf -------------------------------------------------------------------------------- /test/pdfs/artofwar.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150907020857/http://www.puppetpress.com/classics/ArtofWarbySunTzu.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/attachment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/attachment.pdf -------------------------------------------------------------------------------- /test/pdfs/bad-PageLabels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bad-PageLabels.pdf -------------------------------------------------------------------------------- /test/pdfs/basicapi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/basicapi.pdf -------------------------------------------------------------------------------- /test/pdfs/bigboundingbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bigboundingbox.pdf -------------------------------------------------------------------------------- /test/pdfs/blendmode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/blendmode.pdf -------------------------------------------------------------------------------- /test/pdfs/boundingBox_invalid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/boundingBox_invalid.pdf -------------------------------------------------------------------------------- /test/pdfs/bpl13210.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120204112920/http://h20000.www2.hp.com/bc/docs/support/SupportManual/bpl13210/bpl13210.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1001080.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1001080.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1011159.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1011159.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1020226.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1020226.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1020858.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1020858.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1027533.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1027533.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1028735.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1028735.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1046314.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1046314.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1050040.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1050040.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1064894.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8486536 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1065245.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1065245.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1068432.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1068432.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1072164.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8494369 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1077808.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8499998 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1108301.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1108301.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1108753.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8533311 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1123803.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150426115740/http://www.place-inc.net/details/waeikyohon02/images/ch01_intro.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1130815.pdf.link: -------------------------------------------------------------------------------- 1 | https://bug1130815.bmoattachments.org/attachment.cgi?id=8560958 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1132849.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1132849.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1140761.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8574416 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1142033.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8597714 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1146106.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1146106.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1151216.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1151216.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1157493.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1157493.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1175962.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1175962.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1186827.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1186827.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1199237.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8653724 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1200096.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1200096.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1245391_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1245391_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1250079.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1250079.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1252420.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1252420.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1260585.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8736063 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1308536.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1308536.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1337429.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1337429.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1354114.pdf.link: -------------------------------------------------------------------------------- 1 | https://bug1354114.bmoattachments.org/attachment.cgi?id=8855457 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1392647.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1392647.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1393476.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8900754 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1425312.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20171116124714/https://www.unicode.org/charts/PDF/U11A50.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1443140.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20180324105403/https://engineering.purdue.edu/~chengkok/papers/2005/p507-li.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug1473809.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1473809.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1513120_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1513120_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/bug1552113.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug1552113.pdf -------------------------------------------------------------------------------- /test/pdfs/bug766086.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug766086.pdf -------------------------------------------------------------------------------- /test/pdfs/bug766138.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150922024138/http://www.minneapolismn.gov/www/groups/public/@clerk/documents/webcontent/wcms1p-094235.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug793632.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug793632.pdf -------------------------------------------------------------------------------- /test/pdfs/bug808084.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130711020819/http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2006/n1984.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug816075.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug816075.pdf -------------------------------------------------------------------------------- /test/pdfs/bug852992_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug852992_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/bug859204.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug859204.pdf -------------------------------------------------------------------------------- /test/pdfs/bug860632.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug860632.pdf -------------------------------------------------------------------------------- /test/pdfs/bug864847.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug864847.pdf -------------------------------------------------------------------------------- /test/pdfs/bug865858.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=742273 2 | -------------------------------------------------------------------------------- /test/pdfs/bug866395.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug866395.pdf -------------------------------------------------------------------------------- /test/pdfs/bug867484.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=744001 2 | -------------------------------------------------------------------------------- /test/pdfs/bug868745.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug868745.pdf -------------------------------------------------------------------------------- /test/pdfs/bug878194.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=756735 2 | -------------------------------------------------------------------------------- /test/pdfs/bug886717.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug886717.pdf -------------------------------------------------------------------------------- /test/pdfs/bug887152.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140925155348/http://www.nature.com/news/2010/100721/pdf/466432a.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/bug888437.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=770341 2 | -------------------------------------------------------------------------------- /test/pdfs/bug889327.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=770134 2 | -------------------------------------------------------------------------------- /test/pdfs/bug893730.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug893730.pdf -------------------------------------------------------------------------------- /test/pdfs/bug894572.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug894572.pdf -------------------------------------------------------------------------------- /test/pdfs/bug898853.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug898853.pdf -------------------------------------------------------------------------------- /test/pdfs/bug900822.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug900822.pdf -------------------------------------------------------------------------------- /test/pdfs/bug903856.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug903856.pdf -------------------------------------------------------------------------------- /test/pdfs/bug911034.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug911034.pdf -------------------------------------------------------------------------------- /test/pdfs/bug921409.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug921409.pdf -------------------------------------------------------------------------------- /test/pdfs/bug921760.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=8344035 2 | -------------------------------------------------------------------------------- /test/pdfs/bug946506.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/bug946506.pdf -------------------------------------------------------------------------------- /test/pdfs/bug956965.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160414174617/http://cache.lego.com/bigdownloads/buildinginstructions/6030672.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/canvas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/canvas.pdf -------------------------------------------------------------------------------- /test/pdfs/ccitt_EndOfBlock_false.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/ccitt_EndOfBlock_false.pdf -------------------------------------------------------------------------------- /test/pdfs/cid_cff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/cid_cff.pdf -------------------------------------------------------------------------------- /test/pdfs/cmykjpeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/cmykjpeg.pdf -------------------------------------------------------------------------------- /test/pdfs/colorkeymask.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/colorkeymask.pdf -------------------------------------------------------------------------------- /test/pdfs/complex_ttf_font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/complex_ttf_font.pdf -------------------------------------------------------------------------------- /test/pdfs/decodeACSuccessive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/decodeACSuccessive.pdf -------------------------------------------------------------------------------- /test/pdfs/devicen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/devicen.pdf -------------------------------------------------------------------------------- /test/pdfs/ecma262.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20110902042030/http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/endchar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/endchar.pdf -------------------------------------------------------------------------------- /test/pdfs/extgstate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/extgstate.pdf -------------------------------------------------------------------------------- /test/pdfs/f1040.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20110918100215/http://www.irs.gov/pub/irs-pdf/f1040.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/file_url_link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/file_url_link.pdf -------------------------------------------------------------------------------- /test/pdfs/filled-background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/filled-background.pdf -------------------------------------------------------------------------------- /test/pdfs/fips197.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150225222334/http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/fit11-talk.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150126103740/http://www.ccs.neu.edu/home/samth/fit11-talk.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/font_ascent_descent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/font_ascent_descent.pdf -------------------------------------------------------------------------------- /test/pdfs/franz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/franz.pdf -------------------------------------------------------------------------------- /test/pdfs/franz_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/franz_2.pdf -------------------------------------------------------------------------------- /test/pdfs/freeculture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/freeculture.pdf -------------------------------------------------------------------------------- /test/pdfs/geothermal.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20170930174755/https://www.pdf-archive.com/2017/09/30/future-of-geothermal-energy/future-of-geothermal-energy.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/german-umlaut-r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/german-umlaut-r.pdf -------------------------------------------------------------------------------- /test/pdfs/gesamt.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130308055056/http://www.gesetze-im-internet.de/bundesrecht/bgb/gesamt.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/glyph_accent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/glyph_accent.pdf -------------------------------------------------------------------------------- /test/pdfs/gradientfill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/gradientfill.pdf -------------------------------------------------------------------------------- /test/pdfs/hmm.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130626074301/http://speech.tifr.res.in/tutorials/hmmTutorialBarbaraExercises.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/html5checker.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120722180419/http://hsivonen.iki.fi/thesis/html5-conformance-checker.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/i9.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20110709064959/http://www.uscis.gov/files/form/i-9.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/ibwa-bad.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20070317213312/http://www.bottledwater.org/public/pdf/IBWA05ModelCode_Mar2.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/ichiji.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130412052304/http://www.eiken.or.jp/eiken/apply/private/flow/pdf/ichiji.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/images_1bit_grayscale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/images_1bit_grayscale.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10004.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/2315390/2371410.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1002.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10084_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10084_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1010.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160113170747/http://francois.laustriat.free.fr/test/caravan-d.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1015.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150218145854/http://faculty.washington.edu/fidelr/RayaPubs/TheCaseStudyMethod.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue10326.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/2643238/test.1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue10339_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10339_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10388_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10388_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10402.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10402.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10438_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10438_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1045.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1045.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1049.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150117071901/http://ernestinefont.com/wp-content/themes/iA3%201.2.1/assets/pdf/ErnestinePro-InfoGuide.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue10491.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/2793574/14_09_02.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue10519_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10519_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10529.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10529.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10542_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10542_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1055r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1055r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10665_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue10665_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue10717.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/3057353/test.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1096.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150910003730/http://www.faithaliveresources.org/Content/Site135/FilesSamples/105315400440pdf_00000009843.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue11016_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue11016_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue11045.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue11045.pdf -------------------------------------------------------------------------------- /test/pdfs/issue11052.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/3479488/test.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue11150_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue11150_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1127.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160114105739/https://vmp.ethz.ch/pdfs/diplome/vordiplome/Block%201/Algorithmen_%26_Komplexitaet/AlgoKo_f08_Aufg.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1133.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20121101092038/http://cscw2012.org/docs/program.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1155r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1155r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1169.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120119074129/http://www.cs.txstate.edu/~mb92/papers/gpgpu11.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1171.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1171.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1233.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150314135023/http://www.princexml.com/samples/math.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1243.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120219190422/http://www.nsa.gov/public_info/_files/nash_letters/nash_letters1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1249.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1249.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1257.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150426075030/http://hse-econ.fi/tervio/MediocritiesAndSuperstars.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1293r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1293r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1309.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20121007045900/http://www.lufthansa.com/mediapool/pdf/31/media_907231.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1317.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150315052542/http://iliad.fr/presse/2012/CP_080312_Free_mobile.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1350.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1350.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1453.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1453.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1512r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1512r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1536.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150922201828/http://w2.eff.org/legal/cases/betamax/betamax_oral_argument2.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1629.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115122540/http://is.muni.cz/www/20544/noty/sbm/Taize/Adoramus_te_Christe.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1655r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1655r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1658.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20060926175052/http://www.ads.tuwien.ac.at/teaching/archiv/praktika/CherkasskyGoldberg-1995-MaxFlow.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1685.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120617064647/http://www.agapec.com.br/manual/manual_2007.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1687.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115122848/http://www.karynellis.com/charts/bird/KarynEllisChordChart-BIRD.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1709.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115124218/http://www.mft-online.de/files/medizinerreport_2012.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1721.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115125103/http://www.lezarts.org/07oforhom/Faitsdivers/Hadopi/Le%20Rapport%20Hadopi,%20Intox.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1729.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20110915200237/http://www.environmentallights.com/files/documents/ir_light_hazard.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1796.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140808220121/http://www.maxims6n.bget.ru/book3/viewer/t4.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1810.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150509032858/http://assets.sbnation.com/assets/1167519/USD661296S1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1878.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150317000520/http://iau.org/static/scientific_meetings/postmr12.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1905.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1905.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1912.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115171702/http://rua.ua.es/dspace/bitstream/10045/23475/1/OBETS_07_01_03.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1936.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20091223123331/http://sci2s.ugr.es/keel/pdf/specific/articulo/alp99.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1940.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120105135646/http://www.parallax.com/dl/docs/prod/acc/memsickit.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue1985.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue1985.pdf -------------------------------------------------------------------------------- /test/pdfs/issue1998.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150223193848/http://www.uctc.net/access/30/Access%2030%20-%2002%20-%20Horse%20Power.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2006.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150905181422/http://pages.sencha.com/rs/sencha/images/Sencha-WP-Dev-Mgrs-Guide-to-HTML5.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2017r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2017r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2074.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2074.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2098.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160125220711/http://www.star.bnl.gov/public/daq/HARDWARE/21264_data_sheet.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2099-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2099-1.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2128r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2128r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2129.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160116110533/http://docs.dpaq.de/1737-itcsamsungapple337_794notice14092012.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2139.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130124003705/http://www.cs.wustl.edu/~cytron/cse547/PDFs/p1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue215.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue215.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2176.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2176.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2386.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150429030420/http://www-support-downloads.sonymobile.com/st25/userguide_EN_ST25_1263-3851.1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2391-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2391-1.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2391-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2391-2.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2462.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2462.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2531.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150226122507/http://www.rcjohnso.com/Looper/Looper.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2537r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2537r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2627.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160117120444/http://borel.slu.edu/pub/metanet.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2642.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=707492 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2761.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2761.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2770.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=718826 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2799.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160118144632/http://www.pdf-archive.com/2016/01/18/simple-vivace-3/simple-vivace-3.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2829.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150211163733/http://www.ym.edu.tw/bcial/property/IP/laws/iplaws01.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2833.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2833.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2840.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2840.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2853.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130818210913/http://www.celgene.de/Patienten/Newsletter-Epigenetik-201301.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue2884_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2884_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2931.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2931.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2948.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2948.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2956.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue2956.pdf -------------------------------------------------------------------------------- /test/pdfs/issue2984.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130220170211/https://computation.llnl.gov/casc/sapphire/pubs/denoising.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3025.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3061.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3061.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3062.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140925153420/http://www3.weforum.org/docs/TTCR/2013/TTCR_DataTables12_2013.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3064.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=733257 2 | 3 | -------------------------------------------------------------------------------- /test/pdfs/issue3115r.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130530065353/http://mirror.unl.edu/ctan/info/lshort/english/lshort.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3188.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3188.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3205r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3205r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3207r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3207r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3214.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3214.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3248.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130203135942/http://www.kira-reviews.com/wp-content/uploads/2013/01/Scan0003.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3263r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3263r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3323.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3323.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3371.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3371.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3384.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150108202806/http://mirror.math.ku.edu/tex-archive/macros/latex/contrib/overpic/opic-abs.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3405r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3405r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3427.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=718943 -------------------------------------------------------------------------------- /test/pdfs/issue3438.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3438.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3458.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3458.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3521.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3521.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3566.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3566.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3584.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3584.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3591.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130425084432/http://harpers.org/wp-content/uploads/HarpersMagazine-1989-09-0059029.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3666.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160111201835/https://nfbc.com/Assets/Documents/Cuesheet/716NiagaraWineTrail_opt.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3694_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3694_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3848.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150905185708/http://www.unicode.org/L2/L2006/06334-reph-telugu-gurmukhi.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3879r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3879r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3885.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3885.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3903.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20070415170520/http://www.reloadbench.com/pdf/files/1%20Inch%20Diamonds.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3925.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115203612/http://patentimages.storage.googleapis.com/pdfs/US4441207.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue3928.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue3928.pdf -------------------------------------------------------------------------------- /test/pdfs/issue3999.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20151016185606/http://www.nber.org/papers/w4332.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4061.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4061.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4090.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160819222859/http://www.ets.org/Media/Tests/GRE/pdf/gre_research_validity_data.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4244.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20180613082417/https://tcpdf.org/files/examples/example_026.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4246.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4246.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4379.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4379.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4387.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140324020304/http://www.solv.ch/files/magazin/blw2014_nachwuchs.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4402_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4402_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4436r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4436r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4550.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4550.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4573.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4573.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4575.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4575.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4630.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4630.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4650.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4650.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4665.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4665.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4668.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4668.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4684.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4684.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4722.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4722.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4800.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4800.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4801.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4801.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4872.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20171003035412/https://www.cs.utexas.edu/users/EWD/ewd02xx/EWD288.PDF 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4875.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4875.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4881.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4881.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4883.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140603135304/http://www.tipp2014.nl/TIPP2014_3rd_bulletin.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4890.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150502102155/http://sunnuclear.com/documents/DQA3.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4909.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4909.pdf -------------------------------------------------------------------------------- /test/pdfs/issue4914.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120324003827/http://www.rurdev.usda.gov/supportdocuments/rd1924-0005_930800V01.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4926.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140802003728/http://www.conservation.ca.gov/cgs/information/publications/cgs_notes/note_17/Documents/note_17.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue4934.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue4934.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5010.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5010.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5039.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5039.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5044.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5044.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5070.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5070.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5084.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5084.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5138.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5138.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5202.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5202.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5238.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5238.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5244.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5244.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5256.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5256.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5280.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5280.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5334.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5334.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5421.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5421.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5470.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5470.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5475.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5475.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5481.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5481.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5501.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5501.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5509.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140908142029/http://kieranhealy.org/files/papers/data-visualization.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5540.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5540.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5549.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5549.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5564_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5564_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5567.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5567.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5592.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115203228/http://www.pdf-archive.com/2014/12/29/4111112/4111112.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5599.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5599.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5644.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140703204310/http://repository.readscheme.org/ftp/papers/sw2010/06-barland.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5677.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5677.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5686.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5686.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5701.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5701.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5704.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5704.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5726.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160118145140/http://www.pdf-archive.com/2016/01/18/ocr-with-tiffg4-1/ocr-with-tiffg4-1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5734.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5734.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5747.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5747.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5751.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5751.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5752.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150821144004/http://222.247.54.152/Fulltext/qkyxlcyjy200504007.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5801.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5801.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5804.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5804.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5808.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5808.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5874.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5874.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5896.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5896.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5909.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5909.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5939.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150613184455/https://www.usenix.org/system/files/login/articles/login_apr15_02_grosvenor_041315.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue5946.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5946.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5954.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5954.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5972.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5972.pdf -------------------------------------------------------------------------------- /test/pdfs/issue5994.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue5994.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6006.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6010_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6010_1.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6010_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6010_2.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6019.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6066.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160213124006/http://www.leon.pl/userfiles/file/Zapytanie%20ofertowe%201-2014.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6068.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6068.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6071.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20170107214304/https://www.pdf-archive.com/2017/01/07/issue6071/issue6071.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6081.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6081.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6099.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6099.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6113.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6113.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6117.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150402085611/http://chrishecker.com/images/3/33/Gdmogl.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6151.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6151.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6165.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160405054842/http://www.sec.gov/investor/pubs/sec-guide-to-proxy-brochures.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6204.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6204.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6231_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6231_1.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6238.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150720164240/http://fqa.9front.org/dash1.kaptnblaubar.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6286.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6286.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6289.pdf.link: -------------------------------------------------------------------------------- 1 | https://issues.apache.org/jira/secure/attachment/12685775/GWG181_16Bit_CMYK_X4.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6296.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6296.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6298.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6298.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6336.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6336.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6342.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6342.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6364.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150818180340/http://www.rightprospectus.com/documents/Osterweis/SEMI_Osterweis.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6387.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6387.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6410.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6410.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6413.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6413.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6541.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6541.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6549.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150306062422/http://www.kokuyo-st.co.jp/stationery/camiapp/CamiApp_Sample.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6612.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6612.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6621.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6621.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6692.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20151126121615/http://www.inf.ufg.br/~hugoribeiro/OSPs/osp-im.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6721_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6721_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6737.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/55597/Florida.Industrial.MarketView.Q3.2015.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue6782.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6782.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6889.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6889.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6894.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6894.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6901.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6901.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6961.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6961.pdf -------------------------------------------------------------------------------- /test/pdfs/issue6962.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue6962.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7014.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7020.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7074_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7074_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7101.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7115.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7115.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7180.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7180.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7200.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7200.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7229.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7229.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7308.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/256692/ZGTA198001028.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue7339_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7339_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7403.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7403.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7406.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7406.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7426.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7426.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7439.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7439.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7492.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7492.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7496.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/369694/repro-pdf.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue7507.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7507.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7544.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7544.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7580.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7580.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7598.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7598.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7665.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7665.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7696.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7696.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7769.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7769.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7828.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/601312/Untitled_20160807_114311.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue7835.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7835.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7855.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7855.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7872.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7872.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7878.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7878.pdf -------------------------------------------------------------------------------- /test/pdfs/issue7901.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue7901.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8047.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/762326/212241.6.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8061.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8061.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8088.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8088.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8092.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8092.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8097_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8097_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8117.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/806780/Test.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8125.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8125.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8169.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20170930161657/http://210.243.166.143/prob1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue818.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150926032048/https://effi.org/system/files?file=effi-siv-251110.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8182.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/861340/PDF.with.blank.pages.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8187.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8187.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8229.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8229.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8234.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8234.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8276_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8276_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8330.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/954710/FailingPDF.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8372.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8372.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8380.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20170507102908/https://www.mbank.pl/download/firma/Dyspozycja-zmiany-typu-rachunku-biecego.pdf?noredir 2 | -------------------------------------------------------------------------------- /test/pdfs/issue840.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue840.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8424.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8424.pdf -------------------------------------------------------------------------------- /test/pdfs/issue845r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue845r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8480.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8480.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8570.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8570.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8586.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8586.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8613.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1125062/Factuur.9.Schilderwerk.Dr.Stiemensweg.22-24.Dichterbij.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8614.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1125123/OBW-OVK.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8697.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8697.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8702.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8702.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8707.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8707.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8795_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8795_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8798r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8798r.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8823.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8823.pdf -------------------------------------------------------------------------------- /test/pdfs/issue8895.pdf.link: -------------------------------------------------------------------------------- 1 | https://issues.apache.org/jira/secure/attachment/12887373/PDFJS-8895-p1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue8960_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue8960_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9084.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9084.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9105_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9105_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue918.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue918.pdf -------------------------------------------------------------------------------- /test/pdfs/issue919.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20111027045653/http://agb.traviangames.com/Travian_AR_Terms.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9195.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1506940/testfile.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue925.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue925.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9262_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9262_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9278.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9278.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9285.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1563256/4149180-355989.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9291.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9291.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9418.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9418.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9425.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1682471/Test.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9458.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9458.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9534_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9534_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9540.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1793688/Problem.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9650.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1898753/Kred.Eingangsrechnungen.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9679.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1929531/K.BIS.PDF 2 | -------------------------------------------------------------------------------- /test/pdfs/issue9915_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9915_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9940.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9940.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9949.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9949.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9972-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9972-1.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9972-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9972-2.pdf -------------------------------------------------------------------------------- /test/pdfs/issue9972-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/issue9972-3.pdf -------------------------------------------------------------------------------- /test/pdfs/jai.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160115202027/http://docs.oracle.com/cd/E19957-01/806-5413-10/806-5413-10.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/javauninstall-7r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/javauninstall-7r.pdf -------------------------------------------------------------------------------- /test/pdfs/jbig2_huffman_1.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20171003213334/https://bugs.freedesktop.org/attachment.cgi?id=11143 2 | -------------------------------------------------------------------------------- /test/pdfs/jbig2_huffman_2.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20170924053030/http://library.sciencemadness.org/library/books/gergel_isopropyl_bromide.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/jbig2_symbol_offset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/jbig2_symbol_offset.pdf -------------------------------------------------------------------------------- /test/pdfs/kdchart.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160117133330/http://www.pdf-archive.com/2016/01/17/kdchart-1/kdchart-1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/link-annotation-border.pdf.link: -------------------------------------------------------------------------------- 1 | https://bugzilla.mozilla.org/attachment.cgi?id=726621 2 | -------------------------------------------------------------------------------- /test/pdfs/liveprogramming.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120730111852/http://blog.lassus.se/files/liveprogramming.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/mao.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140501023554/http://www1.ihns.ac.cn/readers/mao.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/mixedfonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/mixedfonts.pdf -------------------------------------------------------------------------------- /test/pdfs/mmtype1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/mmtype1.pdf -------------------------------------------------------------------------------- /test/pdfs/noembed-identity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/noembed-identity.pdf -------------------------------------------------------------------------------- /test/pdfs/noembed-jis7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/noembed-jis7.pdf -------------------------------------------------------------------------------- /test/pdfs/ocs.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20100215194419/http://www.unibuc.ro/uploads_en/29535/10/Cyrillic_Alphabets-Chars.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/ohkubo-SS04.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160113135557/http://www.sapid.org/html2/PDF-ja/ohkubo-SS04.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/openoffice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/openoffice.pdf -------------------------------------------------------------------------------- /test/pdfs/pal-o47.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20091007190143/http://www.cpdl.org/wiki/images/sheet/pal-o47.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/pdf.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20151204084826/http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/pdf_reference_1-7.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/pdfjsbad1586.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pdfjsbad1586.pdf -------------------------------------------------------------------------------- /test/pdfs/pdfkit_compressed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pdfkit_compressed.pdf -------------------------------------------------------------------------------- /test/pdfs/pdkids.pdf.link: -------------------------------------------------------------------------------- 1 | https://www.archive.org/download/PdKids/PdKids.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/personwithdog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/personwithdog.pdf -------------------------------------------------------------------------------- /test/pdfs/pr4731.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150830132600/http://rudar.ruc.dk/bitstream/1800/12945/1/samlet-29Nov1035.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/pr4922.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pr4922.pdf -------------------------------------------------------------------------------- /test/pdfs/pr6531_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pr6531_1.pdf -------------------------------------------------------------------------------- /test/pdfs/pr6531_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pr6531_2.pdf -------------------------------------------------------------------------------- /test/pdfs/pr7352.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/pr7352.pdf -------------------------------------------------------------------------------- /test/pdfs/pr8491.pdf.link: -------------------------------------------------------------------------------- 1 | https://github.com/mozilla/pdf.js/files/1055278/castle_halftone.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/pr8808.pdf.link: -------------------------------------------------------------------------------- 1 | https://dokument.plandata.dk/20_1057347_APPROVED_1193694109382.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/preistabelle.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130903113659/http://www.fyve.de/downloads/Preistabelle_FYVE_Oktober_2010.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/protectip.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150915183044/http://www.leahy.senate.gov/imo/media/doc/BillText-PROTECTIPAct.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/rotated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/rotated.pdf -------------------------------------------------------------------------------- /test/pdfs/rotation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/rotation.pdf -------------------------------------------------------------------------------- /test/pdfs/scan-bad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/scan-bad.pdf -------------------------------------------------------------------------------- /test/pdfs/scorecard_reduced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/scorecard_reduced.pdf -------------------------------------------------------------------------------- /test/pdfs/shading_extend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/shading_extend.pdf -------------------------------------------------------------------------------- /test/pdfs/shavian.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20110629043247/http://www.unicode.org/charts/PDF/U10450.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/simpletype3font.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/simpletype3font.pdf -------------------------------------------------------------------------------- /test/pdfs/sizes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/sizes.pdf -------------------------------------------------------------------------------- /test/pdfs/smaskdim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/smaskdim.pdf -------------------------------------------------------------------------------- /test/pdfs/text_clip_cff_cid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/text_clip_cff_cid.pdf -------------------------------------------------------------------------------- /test/pdfs/tiling-pattern-box.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/tiling-pattern-box.pdf -------------------------------------------------------------------------------- /test/pdfs/tracemonkey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/tracemonkey.pdf -------------------------------------------------------------------------------- /test/pdfs/transparency_group.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/transparency_group.pdf -------------------------------------------------------------------------------- /test/pdfs/transparent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/transparent.pdf -------------------------------------------------------------------------------- /test/pdfs/tutorial.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150915102004/http://www.cplusplus.com/files/tutorial.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/txt2pdf.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20150910131256/http://www.sanface.com/pdf/test.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/type4psfunc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/type4psfunc.pdf -------------------------------------------------------------------------------- /test/pdfs/unix01.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20100606211934/https://docs.rice.edu/confluence/download/attachments/4588376/unix01.pdf?version=1 2 | -------------------------------------------------------------------------------- /test/pdfs/usmanm-bad.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20160107124830/http://web.mit.edu/6.033/2011/wwwdocs/writing-samples/usmanm_dp1.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/vertical.pdf -------------------------------------------------------------------------------- /test/pdfs/vesta.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20140514052657/http://www-csag.ucsd.edu/~jburke/Vesta/Vesta_Overview.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/wdsg_fitc.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20120617043413/http://www.airgid.com/wp-content/uploads/2012/06/wdsg_fitc.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/wnv_chinese.pdf.link: -------------------------------------------------------------------------------- 1 | https://web.archive.org/web/20130123034858/http://www.cdc.gov/ncidod/dvbid/westnile/languages/chinese.pdf 2 | -------------------------------------------------------------------------------- /test/pdfs/xref_command_missing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/xref_command_missing.pdf -------------------------------------------------------------------------------- /test/pdfs/zero_descent.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/zero_descent.pdf -------------------------------------------------------------------------------- /test/pdfs/zerowidthline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/pdfs/zerowidthline.pdf -------------------------------------------------------------------------------- /test/resources/browser_manifests/.gitignore: -------------------------------------------------------------------------------- 1 | browser_manifest.json 2 | -------------------------------------------------------------------------------- /test/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/test/resources/favicon.ico -------------------------------------------------------------------------------- /test/resources/firefox/user.js: -------------------------------------------------------------------------------- 1 | // Disable the default browser test. 2 | user_pref('browser.shell.checkDefaultBrowser', false); 3 | -------------------------------------------------------------------------------- /test/stats/results/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- 1 | locale.properties 2 | locale/ 3 | cmaps/ 4 | -------------------------------------------------------------------------------- /web/compressed.tracemonkey-pldi-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/compressed.tracemonkey-pldi-09.pdf -------------------------------------------------------------------------------- /web/images/findbarButton-next-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/findbarButton-next-rtl.png -------------------------------------------------------------------------------- /web/images/findbarButton-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/findbarButton-next.png -------------------------------------------------------------------------------- /web/images/findbarButton-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/findbarButton-next@2x.png -------------------------------------------------------------------------------- /web/images/findbarButton-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/findbarButton-previous.png -------------------------------------------------------------------------------- /web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/grab.cur -------------------------------------------------------------------------------- /web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/grabbing.cur -------------------------------------------------------------------------------- /web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/loading-icon.gif -------------------------------------------------------------------------------- /web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/loading-small.png -------------------------------------------------------------------------------- /web/images/loading-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/loading-small@2x.png -------------------------------------------------------------------------------- /web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/shadow.png -------------------------------------------------------------------------------- /web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/texture.png -------------------------------------------------------------------------------- /web/images/toolbarButton-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-bookmark.png -------------------------------------------------------------------------------- /web/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-download.png -------------------------------------------------------------------------------- /web/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /web/images/toolbarButton-openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-openFile.png -------------------------------------------------------------------------------- /web/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /web/images/toolbarButton-pageUp-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-pageUp-rtl.png -------------------------------------------------------------------------------- /web/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /web/images/toolbarButton-pageUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-pageUp@2x.png -------------------------------------------------------------------------------- /web/images/toolbarButton-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-print.png -------------------------------------------------------------------------------- /web/images/toolbarButton-print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-print@2x.png -------------------------------------------------------------------------------- /web/images/toolbarButton-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-search.png -------------------------------------------------------------------------------- /web/images/toolbarButton-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-search@2x.png -------------------------------------------------------------------------------- /web/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /web/images/toolbarButton-zoomIn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-zoomIn@2x.png -------------------------------------------------------------------------------- /web/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /web/images/toolbarButton-zoomOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/toolbarButton-zoomOut@2x.png -------------------------------------------------------------------------------- /web/images/treeitem-collapsed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/treeitem-collapsed-rtl.png -------------------------------------------------------------------------------- /web/images/treeitem-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/treeitem-collapsed.png -------------------------------------------------------------------------------- /web/images/treeitem-collapsed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/treeitem-collapsed@2x.png -------------------------------------------------------------------------------- /web/images/treeitem-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/treeitem-expanded.png -------------------------------------------------------------------------------- /web/images/treeitem-expanded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsaacSchemm/pdf.js-seamonkey/6fa642501413e3ab4ae2baf933868f1351cb5be3/web/images/treeitem-expanded@2x.png --------------------------------------------------------------------------------