pdfjs-dist 2.1.266 → 2.2.228

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pdfjs-dist might be problematic. Click here for more details.

Files changed (166) hide show
  1. package/CODE_OF_CONDUCT.md +15 -0
  2. package/bower.json +1 -1
  3. package/build/pdf.js +3349 -2324
  4. package/build/pdf.js.map +1 -1
  5. package/build/pdf.min.js +1 -1
  6. package/build/pdf.worker.js +2804 -1975
  7. package/build/pdf.worker.js.map +1 -1
  8. package/build/pdf.worker.min.js +1 -1
  9. package/image_decoders/pdf.image_decoders.js +431 -511
  10. package/image_decoders/pdf.image_decoders.js.map +1 -1
  11. package/image_decoders/pdf.image_decoders.min.js +1 -1
  12. package/lib/core/annotation.js +294 -224
  13. package/lib/core/arithmetic_decoder.js +1 -1
  14. package/lib/core/bidi.js +1 -1
  15. package/lib/core/ccitt.js +1 -1
  16. package/lib/core/ccitt_stream.js +1 -1
  17. package/lib/core/cff_parser.js +61 -12
  18. package/lib/core/charsets.js +1 -1
  19. package/lib/core/chunked_stream.js +24 -14
  20. package/lib/core/cmap.js +17 -13
  21. package/lib/core/colorspace.js +1 -1
  22. package/lib/core/core_utils.js +147 -0
  23. package/lib/core/crypto.js +1 -1
  24. package/lib/core/document.js +47 -40
  25. package/lib/core/encodings.js +1 -1
  26. package/lib/core/evaluator.js +346 -279
  27. package/lib/core/font_renderer.js +1 -1
  28. package/lib/core/fonts.js +23 -11
  29. package/lib/core/function.js +1 -1
  30. package/lib/core/glyphlist.js +2 -2
  31. package/lib/core/image.js +2 -2
  32. package/lib/core/image_utils.js +111 -0
  33. package/lib/core/jbig2.js +1 -1
  34. package/lib/core/jbig2_stream.js +1 -1
  35. package/lib/core/jpeg_stream.js +1 -1
  36. package/lib/core/jpg.js +2 -1
  37. package/lib/core/jpx.js +1 -1
  38. package/lib/core/jpx_stream.js +1 -1
  39. package/lib/core/metrics.js +13 -13
  40. package/lib/core/murmurhash3.js +37 -33
  41. package/lib/core/obj.js +245 -41
  42. package/lib/core/operator_list.js +43 -32
  43. package/lib/core/parser.js +228 -133
  44. package/lib/core/pattern.js +4 -2
  45. package/lib/core/pdf_manager.js +17 -15
  46. package/lib/core/primitives.js +40 -6
  47. package/lib/core/ps_parser.js +1 -1
  48. package/lib/core/standard_fonts.js +9 -9
  49. package/lib/core/stream.js +1 -1
  50. package/lib/core/type1_parser.js +1 -1
  51. package/lib/core/unicode.js +2 -2
  52. package/lib/core/worker.js +54 -171
  53. package/lib/core/worker_stream.js +277 -0
  54. package/lib/display/annotation_layer.js +112 -33
  55. package/lib/display/api.js +211 -123
  56. package/lib/display/api_compatibility.js +1 -1
  57. package/lib/display/canvas.js +40 -19
  58. package/lib/display/content_disposition.js +1 -1
  59. package/lib/display/display_utils.js +747 -0
  60. package/lib/display/fetch_stream.js +19 -12
  61. package/lib/display/font_loader.js +11 -8
  62. package/lib/display/metadata.js +1 -1
  63. package/lib/display/network.js +563 -521
  64. package/lib/display/network_utils.js +1 -1
  65. package/lib/display/node_stream.js +21 -12
  66. package/lib/display/pattern_helper.js +24 -25
  67. package/lib/display/svg.js +1068 -565
  68. package/lib/display/text_layer.js +24 -14
  69. package/lib/display/transport_stream.js +192 -70
  70. package/lib/display/webgl.js +1 -1
  71. package/lib/display/worker_options.js +1 -1
  72. package/lib/display/xml_parser.js +1 -1
  73. package/lib/examples/node/domstubs.js +4 -1
  74. package/lib/pdf.js +20 -15
  75. package/lib/pdf.worker.js +3 -3
  76. package/lib/shared/compatibility.js +6 -6
  77. package/lib/shared/global_scope.js +1 -1
  78. package/lib/shared/is_node.js +2 -2
  79. package/lib/shared/message_handler.js +7 -7
  80. package/lib/shared/streams_polyfill.js +1 -1
  81. package/lib/shared/url_polyfill.js +1 -1
  82. package/lib/shared/util.js +13 -125
  83. package/lib/test/unit/annotation_spec.js +278 -93
  84. package/lib/test/unit/api_spec.js +198 -188
  85. package/lib/test/unit/bidi_spec.js +1 -1
  86. package/lib/test/unit/cff_parser_spec.js +15 -1
  87. package/lib/test/unit/clitests_helper.js +3 -3
  88. package/lib/test/unit/cmap_spec.js +20 -20
  89. package/lib/test/unit/colorspace_spec.js +17 -12
  90. package/lib/test/unit/core_utils_spec.js +191 -0
  91. package/lib/test/unit/crypto_spec.js +1 -1
  92. package/lib/test/unit/custom_spec.js +8 -8
  93. package/lib/test/unit/display_svg_spec.js +8 -8
  94. package/lib/test/unit/display_utils_spec.js +273 -0
  95. package/lib/test/unit/document_spec.js +7 -12
  96. package/lib/test/unit/encodings_spec.js +5 -5
  97. package/lib/test/unit/evaluator_spec.js +8 -10
  98. package/lib/test/unit/fetch_stream_spec.js +109 -0
  99. package/lib/test/unit/function_spec.js +1 -1
  100. package/lib/test/unit/jasmine-boot.js +4 -4
  101. package/lib/test/unit/message_handler_spec.js +1 -1
  102. package/lib/test/unit/metadata_spec.js +1 -1
  103. package/lib/test/unit/murmurhash3_spec.js +1 -1
  104. package/lib/test/unit/network_spec.js +5 -55
  105. package/lib/test/unit/network_utils_spec.js +51 -1
  106. package/lib/test/unit/node_stream_spec.js +8 -8
  107. package/lib/test/unit/parser_spec.js +150 -86
  108. package/lib/test/unit/pdf_find_controller_spec.js +1 -1
  109. package/lib/test/unit/pdf_find_utils_spec.js +1 -1
  110. package/lib/test/unit/pdf_history_spec.js +1 -1
  111. package/lib/test/unit/primitives_spec.js +30 -17
  112. package/lib/test/unit/stream_spec.js +1 -1
  113. package/lib/test/unit/test_utils.js +197 -43
  114. package/lib/test/unit/testreporter.js +1 -1
  115. package/lib/test/unit/type1_parser_spec.js +1 -1
  116. package/lib/test/unit/ui_utils_spec.js +20 -20
  117. package/lib/test/unit/unicode_spec.js +5 -5
  118. package/lib/test/unit/util_spec.js +1 -164
  119. package/lib/web/annotation_layer_builder.js +1 -1
  120. package/lib/web/app.js +104 -60
  121. package/lib/web/app_options.js +45 -37
  122. package/lib/web/base_viewer.js +7 -7
  123. package/lib/web/chromecom.js +8 -8
  124. package/lib/web/debugger.js +7 -7
  125. package/lib/web/download_manager.js +3 -2
  126. package/lib/web/firefox_print_service.js +4 -2
  127. package/lib/web/firefoxcom.js +50 -19
  128. package/lib/web/genericcom.js +8 -8
  129. package/lib/web/genericl10n.js +10 -10
  130. package/lib/web/grab_to_pan.js +3 -1
  131. package/lib/web/interfaces.js +13 -13
  132. package/lib/web/overlay_manager.js +10 -10
  133. package/lib/web/password_prompt.js +2 -2
  134. package/lib/web/pdf_attachment_viewer.js +1 -1
  135. package/lib/web/pdf_cursor_tools.js +1 -1
  136. package/lib/web/pdf_document_properties.js +188 -119
  137. package/lib/web/pdf_find_bar.js +1 -1
  138. package/lib/web/pdf_find_controller.js +3 -3
  139. package/lib/web/pdf_find_utils.js +1 -1
  140. package/lib/web/pdf_history.js +1 -1
  141. package/lib/web/pdf_link_service.js +2 -2
  142. package/lib/web/pdf_outline_viewer.js +53 -28
  143. package/lib/web/pdf_page_view.js +9 -18
  144. package/lib/web/pdf_presentation_mode.js +1 -1
  145. package/lib/web/pdf_print_service.js +5 -3
  146. package/lib/web/pdf_rendering_queue.js +4 -7
  147. package/lib/web/pdf_sidebar.js +24 -17
  148. package/lib/web/pdf_sidebar_resizer.js +1 -1
  149. package/lib/web/pdf_single_page_viewer.js +1 -1
  150. package/lib/web/pdf_thumbnail_view.js +2 -2
  151. package/lib/web/pdf_thumbnail_viewer.js +3 -3
  152. package/lib/web/pdf_viewer.component.js +3 -3
  153. package/lib/web/pdf_viewer.js +3 -3
  154. package/lib/web/preferences.js +30 -30
  155. package/lib/web/secondary_toolbar.js +1 -1
  156. package/lib/web/text_layer_builder.js +23 -45
  157. package/lib/web/toolbar.js +1 -1
  158. package/lib/web/ui_utils.js +14 -14
  159. package/lib/web/view_history.js +15 -15
  160. package/lib/web/viewer_compatibility.js +1 -1
  161. package/package.json +1 -1
  162. package/web/pdf_viewer.css +21 -10
  163. package/web/pdf_viewer.js +126 -194
  164. package/web/pdf_viewer.js.map +1 -1
  165. package/lib/display/dom_utils.js +0 -494
  166. package/lib/test/unit/dom_utils_spec.js +0 -89
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2018 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -78,6 +78,10 @@ function () {
78
78
  }, {
79
79
  key: "getRangeReader",
80
80
  value: function getRangeReader(begin, end) {
81
+ if (end <= this._progressiveDataLength) {
82
+ return null;
83
+ }
84
+
81
85
  var reader = new PDFFetchStreamRangeReader(this, begin, end);
82
86
 
83
87
  this._rangeRequestReaders.push(reader);
@@ -97,6 +101,11 @@ function () {
97
101
  reader.cancel(reason);
98
102
  });
99
103
  }
104
+ }, {
105
+ key: "_progressiveDataLength",
106
+ get: function get() {
107
+ return this._fullRequestReader ? this._fullRequestReader._loaded : 0;
108
+ }
100
109
  }]);
101
110
 
102
111
  return PDFFetchStream;
@@ -117,7 +126,7 @@ function () {
117
126
  this._loaded = 0;
118
127
  this._filename = null;
119
128
  var source = stream.source;
120
- this._withCredentials = source.withCredentials;
129
+ this._withCredentials = source.withCredentials || false;
121
130
  this._contentLength = source.length;
122
131
  this._headersCapability = (0, _util.createPromiseCapability)();
123
132
  this._disableRange = source.disableRange || false;
@@ -173,9 +182,9 @@ function () {
173
182
  _this._filename = (0, _network_utils.extractFilenameFromHeader)(getResponseHeader);
174
183
 
175
184
  if (!_this._isStreamingSupported && _this._isRangeSupported) {
176
- _this.cancel(new _util.AbortException('streaming is disabled'));
185
+ _this.cancel(new _util.AbortException('Streaming is disabled.'));
177
186
  }
178
- }).catch(this._headersCapability.reject);
187
+ })["catch"](this._headersCapability.reject);
179
188
  this.onProgress = null;
180
189
  }
181
190
 
@@ -184,10 +193,10 @@ function () {
184
193
  value: function () {
185
194
  var _read = _asyncToGenerator(
186
195
  /*#__PURE__*/
187
- _regenerator.default.mark(function _callee() {
196
+ _regenerator["default"].mark(function _callee() {
188
197
  var _ref, value, done, buffer;
189
198
 
190
- return _regenerator.default.wrap(function _callee$(_context) {
199
+ return _regenerator["default"].wrap(function _callee$(_context) {
191
200
  while (1) {
192
201
  switch (_context.prev = _context.next) {
193
202
  case 0:
@@ -296,7 +305,7 @@ function () {
296
305
  this._reader = null;
297
306
  this._loaded = 0;
298
307
  var source = stream.source;
299
- this._withCredentials = source.withCredentials;
308
+ this._withCredentials = source.withCredentials || false;
300
309
  this._readCapability = (0, _util.createPromiseCapability)();
301
310
  this._isStreamingSupported = !source.disableStream;
302
311
 
@@ -316,9 +325,7 @@ function () {
316
325
  this._headers.append(property, value);
317
326
  }
318
327
 
319
- var rangeStr = begin + '-' + (end - 1);
320
-
321
- this._headers.append('Range', 'bytes=' + rangeStr);
328
+ this._headers.append('Range', "bytes=".concat(begin, "-").concat(end - 1));
322
329
 
323
330
  var url = source.url;
324
331
  fetch(url, createFetchOptions(this._headers, this._withCredentials, this._abortController)).then(function (response) {
@@ -338,10 +345,10 @@ function () {
338
345
  value: function () {
339
346
  var _read2 = _asyncToGenerator(
340
347
  /*#__PURE__*/
341
- _regenerator.default.mark(function _callee2() {
348
+ _regenerator["default"].mark(function _callee2() {
342
349
  var _ref2, value, done, buffer;
343
350
 
344
- return _regenerator.default.wrap(function _callee2$(_context2) {
351
+ return _regenerator["default"].wrap(function _callee2$(_context2) {
345
352
  while (1) {
346
353
  switch (_context2.prev = _context2.next) {
347
354
  case 0:
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2018 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"))
30
30
 
31
31
  var _util = require("../shared/util");
32
32
 
33
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
33
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
34
34
 
35
35
  function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
36
36
 
@@ -97,7 +97,7 @@ function () {
97
97
  key: "clear",
98
98
  value: function clear() {
99
99
  this.nativeFontFaces.forEach(function (nativeFontFace) {
100
- document.fonts.delete(nativeFontFace);
100
+ document.fonts["delete"](nativeFontFace);
101
101
  });
102
102
  this.nativeFontFaces.length = 0;
103
103
 
@@ -111,11 +111,11 @@ function () {
111
111
  value: function () {
112
112
  var _bind = _asyncToGenerator(
113
113
  /*#__PURE__*/
114
- _regenerator.default.mark(function _callee(font) {
114
+ _regenerator["default"].mark(function _callee(font) {
115
115
  var _this = this;
116
116
 
117
117
  var nativeFontFace, rule;
118
- return _regenerator.default.wrap(function _callee$(_context) {
118
+ return _regenerator["default"].wrap(function _callee$(_context) {
119
119
  while (1) {
120
120
  switch (_context.prev = _context.next) {
121
121
  case 0:
@@ -124,7 +124,7 @@ function () {
124
124
  break;
125
125
  }
126
126
 
127
- return _context.abrupt("return");
127
+ return _context.abrupt("return", undefined);
128
128
 
129
129
  case 2:
130
130
  font.attached = true;
@@ -163,7 +163,7 @@ function () {
163
163
  throw _context.t0;
164
164
 
165
165
  case 18:
166
- return _context.abrupt("return");
166
+ return _context.abrupt("return", undefined);
167
167
 
168
168
  case 19:
169
169
  rule = font.createFontFaceRule();
@@ -180,7 +180,7 @@ function () {
180
180
  break;
181
181
  }
182
182
 
183
- return _context.abrupt("return");
183
+ return _context.abrupt("return", undefined);
184
184
 
185
185
  case 24:
186
186
  return _context.abrupt("return", new Promise(function (resolve) {
@@ -190,6 +190,9 @@ function () {
190
190
  }));
191
191
 
192
192
  case 25:
193
+ return _context.abrupt("return", undefined);
194
+
195
+ case 26:
193
196
  case "end":
194
197
  return _context.stop();
195
198
  }
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2018 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.