Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
[
|
2013-02-07 08:19:29 +09:00
|
|
|
{ "id": "filled-background-range",
|
|
|
|
"file": "pdfs/filled-background.pdf",
|
|
|
|
"md5": "2e3120255d9c3e79b96d2543b12d2589",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-06-22 06:53:57 +09:00
|
|
|
{ "id": "tracemonkey-eq",
|
2011-06-24 01:48:34 +09:00
|
|
|
"file": "pdfs/tracemonkey.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "9a192d8b1a7dc652a19835f6f08098bd",
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
"rounds": 1,
|
2011-06-22 06:53:57 +09:00
|
|
|
"type": "eq"
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
},
|
|
|
|
{ "id": "tracemonkey-fbf",
|
2011-06-24 01:48:34 +09:00
|
|
|
"file": "pdfs/tracemonkey.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "9a192d8b1a7dc652a19835f6f08098bd",
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
"rounds": 2,
|
|
|
|
"type": "fbf"
|
|
|
|
},
|
2012-09-12 08:04:01 +09:00
|
|
|
{ "id": "tracemonkey-text",
|
|
|
|
"file": "pdfs/tracemonkey.pdf",
|
|
|
|
"md5": "9a192d8b1a7dc652a19835f6f08098bd",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2013-11-17 09:51:34 +09:00
|
|
|
{ "id": "issue3925",
|
|
|
|
"file": "pdfs/issue3925.pdf",
|
|
|
|
"md5": "c5c895deecf7a7565393587e0d61be2b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2013-08-16 23:32:40 +09:00
|
|
|
{ "id": "issue1293",
|
2015-10-28 02:20:29 +09:00
|
|
|
"file": "pdfs/issue1293r.pdf",
|
|
|
|
"md5": "4a098f5051f34fab036f5bbe88f8deef",
|
2013-08-16 23:32:40 +09:00
|
|
|
"rounds": 1,
|
2015-10-28 02:20:29 +09:00
|
|
|
"link": false,
|
2013-08-16 23:32:40 +09:00
|
|
|
"type": "load",
|
|
|
|
"about": "PDF with undefined stream length."
|
|
|
|
},
|
2015-12-03 09:47:20 +09:00
|
|
|
{ "id": "issue5564_reduced",
|
|
|
|
"file": "pdfs/issue5564_reduced.pdf",
|
|
|
|
"md5": "097853614b56fc10bfbf7e56daa0c66b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Causes cmap to be created with invalid glyph ids."
|
|
|
|
},
|
2013-12-17 08:19:31 +09:00
|
|
|
{ "id": "bug946506",
|
|
|
|
"file": "pdfs/bug946506.pdf",
|
|
|
|
"md5": "c28911b5c31bdc337c2ce404c5971cfc",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Fonts referenced only by name and not by an object identifier."
|
|
|
|
},
|
2015-04-09 23:09:24 +09:00
|
|
|
{ "id": "bug911034",
|
|
|
|
"file": "pdfs/bug911034.pdf",
|
|
|
|
"md5": "54ee432a4e16b26b242fbf549cdad177",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-01-04 05:17:50 +09:00
|
|
|
{ "id": "bug921760",
|
|
|
|
"file": "pdfs/bug921760.pdf",
|
|
|
|
"md5": "1aa136d786a65b0d7cce7bdb3c58c6c3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-05 02:16:33 +09:00
|
|
|
{ "id": "issue3879",
|
2015-11-01 20:38:59 +09:00
|
|
|
"file": "pdfs/issue3879r.pdf",
|
|
|
|
"md5": "756cdaf5eb54c7d78b0aa737236b9a4f",
|
2013-11-05 02:16:33 +09:00
|
|
|
"rounds": 1,
|
2015-11-01 20:38:59 +09:00
|
|
|
"link": false,
|
2013-11-05 02:16:33 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-12-18 05:32:24 +09:00
|
|
|
{ "id": "issue3885",
|
|
|
|
"file": "pdfs/issue3885.pdf",
|
|
|
|
"md5": "319c998910453bc44d40c7748cd2cb79",
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-02 01:33:30 +09:00
|
|
|
{ "id": "issue2833",
|
|
|
|
"file": "pdfs/issue2833.pdf",
|
|
|
|
"md5": "7bc6e17c41586155c188d7408bcb9ab5",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-05-10 11:57:00 +09:00
|
|
|
{ "id": "issue2881",
|
|
|
|
"file": "pdfs/issue2881.pdf",
|
|
|
|
"md5": "ea6ade27d2cb146676d23dcd6605d5ee",
|
|
|
|
"link": "true",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-01-02 06:46:27 +09:00
|
|
|
{ "id": "issue3903",
|
|
|
|
"file": "pdfs/issue3903.pdf",
|
|
|
|
"md5": "c9a4a8012e15cf3b10d671982ce35a92",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-11 11:00:44 +09:00
|
|
|
{ "id": "issue2391-1",
|
|
|
|
"file": "pdfs/issue2391-1.pdf",
|
|
|
|
"md5": "25ae9cb959612e7b343b55da63af2716",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2013-01-11 11:00:44 +09:00
|
|
|
"type": "load"
|
|
|
|
},
|
2013-01-12 04:04:56 +09:00
|
|
|
{ "id": "issue2391-2",
|
|
|
|
"file": "pdfs/issue2391-2.pdf",
|
|
|
|
"md5": "7e68756d11021a087383eaac95ba45dd",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-19 08:06:12 +09:00
|
|
|
{ "id": "issue2531",
|
|
|
|
"file": "pdfs/issue2531.pdf",
|
|
|
|
"md5": "c58e6642d8a6e2ddd5e07a543ef8f30d",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
2013-01-23 03:46:54 +09:00
|
|
|
"firstPage": 4,
|
|
|
|
"lastPage": 4,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-12-20 04:23:58 +09:00
|
|
|
{ "id": "issue3999",
|
|
|
|
"file": "pdfs/issue3999.pdf",
|
|
|
|
"md5": "0a59cd612e93758aa9f104470f45574b",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-23 03:46:54 +09:00
|
|
|
{ "id": "issue2537",
|
2014-05-03 04:04:16 +09:00
|
|
|
"file": "pdfs/issue2537r.pdf",
|
|
|
|
"md5": "0f47a8bda08eebd986c254e65dcc2a76",
|
2013-01-23 03:46:54 +09:00
|
|
|
"rounds": 1,
|
2013-01-19 08:06:12 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
{ "id": "html5-canvas-cheat-sheet-load",
|
2011-06-24 01:48:34 +09:00
|
|
|
"file": "pdfs/canvas.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "59510028561daf62e00bf9f6f066b033",
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-06-22 07:14:42 +09:00
|
|
|
},
|
2011-12-23 08:43:14 +09:00
|
|
|
{ "id": "intelisa-eq",
|
2011-06-25 11:23:29 +09:00
|
|
|
"file": "pdfs/intelisa.pdf",
|
2013-12-17 09:37:10 +09:00
|
|
|
"md5": "24643ebe348a568cfe6a532055c71493",
|
2011-06-25 11:23:29 +09:00
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 100,
|
2011-06-25 11:23:29 +09:00
|
|
|
"rounds": 1,
|
2011-12-23 08:43:14 +09:00
|
|
|
"type": "eq"
|
2011-06-25 11:23:29 +09:00
|
|
|
},
|
2013-01-30 06:16:54 +09:00
|
|
|
{ "id": "issue2128",
|
2015-11-09 20:57:20 +09:00
|
|
|
"file": "pdfs/issue2128r.pdf",
|
|
|
|
"md5": "64118f4e74590b88bd476b4178a516d5",
|
|
|
|
"link": false,
|
2013-01-30 06:16:54 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-31 03:01:32 +09:00
|
|
|
{ "id": "german-umlaut",
|
2015-11-16 21:15:36 +09:00
|
|
|
"file": "pdfs/german-umlaut-r.pdf",
|
|
|
|
"md5": "baa2cd74c76473cf7b914a17403a7f9a",
|
|
|
|
"link": false,
|
2013-01-31 03:01:32 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-01-21 09:44:46 +09:00
|
|
|
{ "id": "bug859204",
|
|
|
|
"file": "pdfs/bug859204.pdf",
|
|
|
|
"md5": "ac1ea1dbfa6ac9d5b13167483049af0b",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-07-29 23:48:01 +09:00
|
|
|
{ "id": "bug1027533",
|
|
|
|
"file": "pdfs/bug1027533.pdf",
|
|
|
|
"md5": "07235b2bb0e03f8d727072d48fae3b0a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-06-28 19:38:25 +09:00
|
|
|
{ "id": "bug1028735",
|
|
|
|
"file": "pdfs/bug1028735.pdf",
|
|
|
|
"md5": "5d1a2a87d176ff3b24e66af3cb2365be",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-31 03:01:32 +09:00
|
|
|
{ "id": "issue1512",
|
2015-11-16 21:15:36 +09:00
|
|
|
"file": "pdfs/issue1512r.pdf",
|
|
|
|
"md5": "af48ede2658d99cca423147085c6609b",
|
|
|
|
"link": false,
|
2013-01-31 03:01:32 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-06-22 07:14:42 +09:00
|
|
|
{ "id": "pdfspec-load",
|
2011-06-24 01:48:34 +09:00
|
|
|
"file": "pdfs/pdf.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "dbdb23c939d2be09b43126c3c56060c7",
|
2011-06-22 07:14:42 +09:00
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 500,
|
2011-06-22 07:14:42 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-06-26 23:15:33 +09:00
|
|
|
},
|
2013-01-16 08:04:05 +09:00
|
|
|
{ "id": "issue2129",
|
|
|
|
"file": "pdfs/issue2129.pdf",
|
|
|
|
"md5": "b082dd2cb3648f979fd668f498af14d6",
|
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2013-01-16 08:04:05 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2011-07-06 02:21:28 +09:00
|
|
|
{ "id": "shavian-load",
|
|
|
|
"file": "pdfs/shavian.pdf",
|
2013-12-17 09:37:10 +09:00
|
|
|
"md5": "4fabf0a03e82693007435020bc446f9b",
|
2011-07-06 02:21:28 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2011-06-26 23:15:33 +09:00
|
|
|
{ "id": "sizes",
|
|
|
|
"file": "pdfs/sizes.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "c101ba7b44aee36048e1ac7b98f302ea",
|
2011-06-26 23:15:33 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-06-28 10:13:11 +09:00
|
|
|
},
|
2011-10-08 12:46:01 +09:00
|
|
|
{ "id": "plusminus",
|
|
|
|
"file": "pdfs/Test-plusminus.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "1ec7ade5b95ac9aaba3a618af28d34c7",
|
2011-10-08 12:46:01 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-09-18 23:10:46 +09:00
|
|
|
{ "id": "mmtype1",
|
|
|
|
"file": "pdfs/mmtype1.pdf",
|
|
|
|
"md5": "7d632263d28bc2ff05ee0cc426966a5a",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-07-06 08:43:47 +09:00
|
|
|
{ "id": "openoffice-pdf",
|
2015-11-16 04:07:54 +09:00
|
|
|
"file": "pdfs/openoffice.pdf",
|
|
|
|
"md5": "ecb0225c7ce2df2cd9a5323a349f8f84",
|
|
|
|
"link": false,
|
2011-07-06 08:43:47 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-07-13 17:55:13 +09:00
|
|
|
},
|
|
|
|
{ "id": "openofficecidtruetype-pdf",
|
|
|
|
"file": "pdfs/arial_unicode_en_cidfont.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "03591cdf20214fb0b2dd5e5c3dd32d8c",
|
2011-07-13 17:55:13 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
|
|
|
{ "id": "openofficearabiccidtruetype-pdf",
|
|
|
|
"file": "pdfs/arial_unicode_ab_cidfont.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "35090fa7d29e7196ae3421812e554988",
|
2011-07-13 17:55:13 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
|
|
|
{ "id": "arabiccidtruetype-pdf",
|
|
|
|
"file": "pdfs/ArabicCIDTrueType.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "d66dbd18bdb572d3ac8b88b32de2ece6",
|
2011-07-13 17:55:13 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-07-21 13:17:31 +09:00
|
|
|
},
|
2012-09-15 03:37:00 +09:00
|
|
|
{ "id": "arabiccidtruetype-text",
|
|
|
|
"file": "pdfs/ArabicCIDTrueType.pdf",
|
|
|
|
"md5": "d66dbd18bdb572d3ac8b88b32de2ece6",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2011-08-19 22:04:34 +09:00
|
|
|
{ "id": "complexttffont-pdf",
|
|
|
|
"file": "pdfs/complex_ttf_font.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "76de93f9116b01b693bf8583b3e76d91",
|
2011-08-19 22:04:34 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-11-03 08:56:48 +09:00
|
|
|
{ "id": "bug868745",
|
|
|
|
"file": "pdfs/bug868745.pdf",
|
|
|
|
"md5": "86111ea5097dd7daffcdea891ad1b348",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2011-10-03 21:57:01 +09:00
|
|
|
{ "id": "thuluthfont-pdf",
|
|
|
|
"file": "pdfs/ThuluthFeatures.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "b7e18bf7a3d6a9c82aefa12d721072fc",
|
2011-10-03 21:57:01 +09:00
|
|
|
"rounds": 1,
|
2011-10-06 11:22:52 +09:00
|
|
|
"type": "eq"
|
2011-10-03 21:57:01 +09:00
|
|
|
},
|
2015-08-29 22:44:26 +09:00
|
|
|
{ "id": "taro",
|
|
|
|
"file": "pdfs/TaroUTR50SortedList112.pdf",
|
|
|
|
"md5": "ce63eab622ff473a43f8a8de85ef8a46",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 4,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-06-21 07:03:30 +09:00
|
|
|
{ "id": "taro-text",
|
|
|
|
"file": "pdfs/TaroUTR50SortedList112.pdf",
|
|
|
|
"md5": "ce63eab622ff473a43f8a8de85ef8a46",
|
|
|
|
"link":true,
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 4,
|
|
|
|
"type": "text"
|
|
|
|
},
|
|
|
|
{ "id": "rotated-text",
|
|
|
|
"file": "pdfs/rotated.pdf",
|
|
|
|
"md5": "aed187f53e969ccdcbab0bb4c59f9e46",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2013-04-20 05:07:08 +09:00
|
|
|
{
|
|
|
|
"id": "issue3115",
|
2015-09-15 22:05:37 +09:00
|
|
|
"file": "pdfs/issue3115r.pdf",
|
2013-04-20 05:07:08 +09:00
|
|
|
"md5": "ea10f4131202b9b8f2a6cb7770d3f185",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"link": true,
|
2014-08-24 23:05:11 +09:00
|
|
|
"lastPage": 1,
|
|
|
|
"about": "The same file as issue2337."
|
2013-04-20 05:07:08 +09:00
|
|
|
},
|
2011-12-08 12:38:34 +09:00
|
|
|
{ "id": "freeculture",
|
|
|
|
"file": "pdfs/freeculture.pdf",
|
|
|
|
"md5": "dcdf3a8268e6a18938a42d5149efcfca",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 5,
|
2011-12-08 12:38:34 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-09-18 07:13:22 +09:00
|
|
|
{ "id": "wnv_chinese-pdf",
|
|
|
|
"file": "pdfs/wnv_chinese.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "db682638e68391125e8982d3c984841e",
|
2011-09-18 07:13:22 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-07-21 13:17:31 +09:00
|
|
|
{ "id": "i9-pdf",
|
|
|
|
"file": "pdfs/i9.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "ba7cd54fdff083bb389295bc0415f6c5",
|
2011-07-21 13:17:31 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-08-04 14:22:24 +09:00
|
|
|
},
|
|
|
|
{ "id": "hmm-pdf",
|
|
|
|
"file": "pdfs/hmm.pdf",
|
2016-01-14 00:30:26 +09:00
|
|
|
"md5": "e08467e60101ee5f4a59716e86db6dc9",
|
2011-08-04 14:22:24 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
2013-03-05 12:33:50 +09:00
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 2,
|
2011-08-04 14:22:24 +09:00
|
|
|
"type": "load"
|
2011-08-07 06:41:18 +09:00
|
|
|
},
|
|
|
|
{ "id": "rotation",
|
|
|
|
"file": "pdfs/rotation.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "4fb25ada00ce7528569d9791c14decf5",
|
2011-08-07 06:41:18 +09:00
|
|
|
"rounds": 1,
|
2011-10-14 06:57:56 +09:00
|
|
|
"type": "eq"
|
2011-08-14 22:40:22 +09:00
|
|
|
},
|
|
|
|
{ "id": "ecma262-pdf",
|
|
|
|
"file": "pdfs/ecma262.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "763ead98f535578842891e5574e0af0f",
|
2011-08-14 22:40:22 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2014-04-08 03:50:27 +09:00
|
|
|
},
|
2016-01-06 02:53:31 +09:00
|
|
|
{ "id": "issue6286",
|
|
|
|
"file": "pdfs/issue6286.pdf",
|
|
|
|
"md5": "d13fd1b98fb1c9980356314fd1d3a91b",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue3694_reduced",
|
2016-01-06 05:21:14 +09:00
|
|
|
"file": "pdfs/issue3694_reduced.pdf",
|
2016-01-06 02:53:31 +09:00
|
|
|
"md5": "c1438c7bad12d70c4cd684f8ce04448f",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-10-13 05:36:50 +09:00
|
|
|
{ "id": "bug847420",
|
|
|
|
"file": "pdfs/bug847420.pdf",
|
|
|
|
"md5": "0decd96fec4ef858c2c663a6de24e887",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-04-08 03:50:27 +09:00
|
|
|
{ "id": "bug878026",
|
|
|
|
"file": "pdfs/bug878026.pdf",
|
|
|
|
"md5": "13072db0586f2b4e96de189e23fc7395",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
2011-08-15 02:26:48 +09:00
|
|
|
},
|
2014-04-11 04:36:37 +09:00
|
|
|
{ "id": "issue4550-text",
|
|
|
|
"file": "pdfs/issue4550.pdf",
|
|
|
|
"md5": "d64cfc4b50e225f596130d9938e8d5cc",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2011-08-15 02:26:48 +09:00
|
|
|
{ "id": "jai-pdf",
|
|
|
|
"file": "pdfs/jai.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "1f5dd128c3757420a881a155f2f8ace3",
|
2011-08-15 02:26:48 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-08-29 06:36:58 +09:00
|
|
|
},
|
|
|
|
{ "id": "cable",
|
|
|
|
"file": "pdfs/cable.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "09a41b9a759d60c698228224ab85b46d",
|
2011-08-29 06:36:58 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-08-31 12:32:56 +09:00
|
|
|
},
|
|
|
|
{ "id": "pdkids",
|
|
|
|
"file": "pdfs/pdkids.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "278982bf016dbe46d2066f9245d9b3e6",
|
2011-08-31 12:32:56 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-09-15 11:29:32 +09:00
|
|
|
},
|
2011-09-14 09:23:49 +09:00
|
|
|
{ "id": "artofwar",
|
|
|
|
"file": "pdfs/artofwar.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "7bdd51c327b74f1f7abdd90eedb2f912",
|
2011-09-14 09:23:49 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-09-15 11:45:12 +09:00
|
|
|
},
|
2013-06-24 03:20:47 +09:00
|
|
|
{ "id": "issue3371",
|
|
|
|
"file": "pdfs/issue3371.pdf",
|
|
|
|
"password": "ELXRTQWS",
|
|
|
|
"md5": "db2fedbd36d6fa27d4e52f9bd2d96b8c",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-02-28 20:58:53 +09:00
|
|
|
{ "id": "issue5334",
|
|
|
|
"file": "pdfs/issue5334.pdf",
|
|
|
|
"md5": "5575020f37f6e5b3c43b8183bf7f96ae",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-05 03:52:45 +09:00
|
|
|
{ "id": "issue5044",
|
|
|
|
"file": "pdfs/issue5044.pdf",
|
|
|
|
"md5": "44788cd31dcb4a2495ded34a84c4a765",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2015-02-28 20:58:53 +09:00
|
|
|
},
|
2015-07-25 19:26:36 +09:00
|
|
|
{ "id": "bug1186827",
|
|
|
|
"file": "pdfs/bug1186827.pdf",
|
|
|
|
"md5": "6c5526ae1a9d66cb517153001afc196e",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue215",
|
|
|
|
"file": "pdfs/issue215.pdf",
|
|
|
|
"md5": "31f3dc60ecf008987d970edfd2b1df61",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-04-08 20:07:29 +09:00
|
|
|
{ "id": "bug850854",
|
|
|
|
"file": "pdfs/bug850854.pdf",
|
|
|
|
"md5": "346a034a80120d123b9fefc42bcb11da",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-09-18 00:32:42 +09:00
|
|
|
{ "id": "wdsg_fitc",
|
|
|
|
"file": "pdfs/wdsg_fitc.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "5bb1c2b83705d4cdfc43197ee74f07f9",
|
2011-09-18 00:32:42 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-09-18 01:23:34 +09:00
|
|
|
},
|
2011-10-02 11:24:11 +09:00
|
|
|
{ "id": "unix01",
|
|
|
|
"file": "pdfs/unix01.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "2742999f0bf9b9c035dbb0736096e220",
|
2011-10-02 11:24:11 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-06-26 05:16:08 +09:00
|
|
|
{ "id": "issue4909",
|
|
|
|
"file": "pdfs/issue4909.pdf",
|
|
|
|
"md5": "ecd62637532aa8383837ef11d72a96b9",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-26 23:02:12 +09:00
|
|
|
{ "id": "issue4914",
|
|
|
|
"file": "pdfs/issue4914.pdf",
|
|
|
|
"md5": "6e1da9c5283d9acef0314d87ce953659",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
2015-12-21 23:15:26 +09:00
|
|
|
"annotations": true,
|
2015-09-26 23:02:12 +09:00
|
|
|
"about": "PDF with annotations, some of which have the Hidden flag set."
|
|
|
|
},
|
2015-11-07 21:04:03 +09:00
|
|
|
{ "id": "issue4665-text",
|
|
|
|
"file": "pdfs/issue4665.pdf",
|
|
|
|
"md5": "0de1308432819c101881df7ca4424575",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2011-10-12 08:26:25 +09:00
|
|
|
{ "id": "fit11-talk",
|
|
|
|
"file": "pdfs/fit11-talk.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "eb7b224107205db4fea9f7df0185f77d",
|
2011-10-12 08:26:25 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-09-15 11:29:32 +09:00
|
|
|
{ "id": "fips197",
|
|
|
|
"file": "pdfs/fips197.pdf",
|
2012-10-17 00:30:14 +09:00
|
|
|
"md5": "4742c3f470cd8c4686a0dbb3da808b71",
|
2011-09-15 11:29:32 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
2011-10-13 07:52:11 +09:00
|
|
|
"type": "eq"
|
2011-09-21 07:42:52 +09:00
|
|
|
},
|
2014-04-29 03:09:00 +09:00
|
|
|
{ "id": "issue4650",
|
|
|
|
"file": "pdfs/issue4650.pdf",
|
|
|
|
"md5": "ad736804f57f9f96f5ac108e514e1686",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
2014-06-15 05:51:13 +09:00
|
|
|
},
|
2016-02-25 03:48:02 +09:00
|
|
|
{ "id": "issue6721_reduced",
|
|
|
|
"file": "pdfs/issue6721_reduced.pdf",
|
|
|
|
"md5": "719aa66d8081a15e3ba6032ed4279237",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-06-27 07:41:44 +09:00
|
|
|
{ "id": "issue5010",
|
|
|
|
"file": "pdfs/issue5010.pdf",
|
|
|
|
"md5": "419f4b13403a0871c463ec69d96e342c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-03-09 22:36:45 +09:00
|
|
|
{ "id": "franz",
|
|
|
|
"file": "pdfs/franz.pdf",
|
|
|
|
"md5": "12f0bbdec09900cbdd86e1737ed5f992",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Type1 font with |Ref|s in the Differences array of the Encoding dictionary."
|
|
|
|
},
|
2015-09-28 22:09:24 +09:00
|
|
|
{ "id": "franz_2",
|
|
|
|
"file": "pdfs/franz_2.pdf",
|
|
|
|
"md5": "9d301ed8816e879891115b5cc3c39559",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "XObject with BBox array containing indirect object."
|
|
|
|
},
|
2014-06-15 05:51:13 +09:00
|
|
|
{ "id": "issue4934",
|
|
|
|
"file": "pdfs/issue4934.pdf",
|
|
|
|
"md5": "6099da44f677702ae65a648b51a2226d",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
2014-04-29 03:09:00 +09:00
|
|
|
},
|
2015-01-02 22:21:56 +09:00
|
|
|
{ "id": "issue4061",
|
|
|
|
"file": "pdfs/issue4061.pdf",
|
|
|
|
"md5": "236aaa8840a47c3c061f8e3034549764",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue5202",
|
|
|
|
"file": "pdfs/issue5202.pdf",
|
|
|
|
"md5": "bb9cc69211112e66aab40828086a4e5a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-08-31 21:03:25 +09:00
|
|
|
{ "id": "issue5238",
|
|
|
|
"file": "pdfs/issue5238.pdf",
|
|
|
|
"md5": "6ddecda00893be1793de20a70c83a3c2",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-11-05 00:16:48 +09:00
|
|
|
{ "id": "issue5470",
|
|
|
|
"file": "pdfs/issue5470.pdf",
|
|
|
|
"md5": "4805fdcd7e142e8df3c04c6ba06025af",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-01 21:46:03 +09:00
|
|
|
{ "id": "xref_command_missing",
|
|
|
|
"file": "pdfs/xref_command_missing.pdf",
|
|
|
|
"md5": "06cdb0f13cfeff41d6bfb24b7bbe1268",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-01-11 22:54:12 +09:00
|
|
|
{ "id": "issue5501",
|
|
|
|
"file": "pdfs/issue5501.pdf",
|
|
|
|
"md5": "55a60699728fc92f491a2d7d490474e4",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-12-01 05:15:18 +09:00
|
|
|
{ "id": "issue5509",
|
|
|
|
"file": "pdfs/issue5509.pdf",
|
|
|
|
"md5": "1975ef8db7355b1d691bc79d0749574b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2014-12-30 23:43:04 +09:00
|
|
|
{ "id": "issue5599",
|
|
|
|
"file": "pdfs/issue5599.pdf",
|
|
|
|
"md5": "529a4a9409ac024aeb57a047210280fe",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-11-06 23:54:50 +09:00
|
|
|
{ "id": "issue1045",
|
|
|
|
"file": "pdfs/issue1045.pdf",
|
|
|
|
"md5": "61d7e9bfbc03cd457dcefeab3e78a687",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2015-06-19 04:53:15 +09:00
|
|
|
{ "id": "issue5677",
|
|
|
|
"file": "pdfs/issue5677.pdf",
|
|
|
|
"md5": "c9101578fcb806269145132724d24ac1",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-28 22:10:30 +09:00
|
|
|
{ "id": "issue5946",
|
|
|
|
"file": "pdfs/issue5946.pdf",
|
|
|
|
"md5": "1217a3c8e2ee4ceb96d85a2f27e437b4",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-05-20 22:08:55 +09:00
|
|
|
{ "id": "issue5954",
|
|
|
|
"file": "pdfs/issue5954.pdf",
|
|
|
|
"md5": "4f60ec0d9bbeec845b681242b8982361",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-09-21 07:42:52 +09:00
|
|
|
{ "id": "txt2pdf",
|
|
|
|
"file": "pdfs/txt2pdf.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "02cefa0f5e8d96313bb05163b2f88c8c",
|
2011-09-21 07:42:52 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-09-22 02:04:21 +09:00
|
|
|
},
|
|
|
|
{ "id": "f1040",
|
|
|
|
"file": "pdfs/f1040.pdf",
|
2013-12-17 09:37:10 +09:00
|
|
|
"md5": "7323b50c6d28d959b8b4b92c469b2469",
|
2011-09-22 02:04:21 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-09-23 05:17:28 +09:00
|
|
|
},
|
2015-03-26 20:40:37 +09:00
|
|
|
{ "id": "bug1046314",
|
|
|
|
"file": "pdfs/bug1046314.pdf",
|
|
|
|
"md5": "fc658439f44cd2dd27c8bee7e7a8344e",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-04-02 23:26:14 +09:00
|
|
|
{ "id": "bug1050040",
|
|
|
|
"file": "pdfs/bug1050040.pdf",
|
|
|
|
"md5": "9076b29bd157e2646b457f29a4472a07",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-01 20:31:02 +09:00
|
|
|
{ "id": "bug1200096",
|
|
|
|
"file": "pdfs/bug1200096.pdf",
|
|
|
|
"md5": "b6bd8df094b5d511c13ed095d2a07515",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-09-23 05:17:28 +09:00
|
|
|
{ "id": "hudsonsurvey",
|
|
|
|
"file": "pdfs/hudsonsurvey.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "bf0e6576a7b6c2fe7485bce1b78e006f",
|
2011-09-23 05:17:28 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2011-09-24 23:44:50 +09:00
|
|
|
},
|
2011-09-24 06:37:44 +09:00
|
|
|
{ "id": "extgstate",
|
|
|
|
"file": "pdfs/extgstate.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "001bb4ec04463a01d93aad748361f049",
|
2011-09-24 06:37:44 +09:00
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
2011-10-14 06:57:56 +09:00
|
|
|
"type": "eq"
|
2011-09-24 23:57:59 +09:00
|
|
|
},
|
2011-10-08 12:24:26 +09:00
|
|
|
{ "id": "usmanm-bad",
|
|
|
|
"file": "pdfs/usmanm-bad.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "38afb822433aaf07fc8f54807cd4f61a",
|
2011-10-08 12:24:26 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-01-27 22:17:14 +09:00
|
|
|
{ "id": "personwithdog",
|
|
|
|
"file": "pdfs/personwithdog.pdf",
|
|
|
|
"md5": "cd68fb2ce00dab97801b3e51495b99e3",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-07-31 20:59:02 +09:00
|
|
|
{ "id": "issue2948",
|
|
|
|
"file": "pdfs/issue2948.pdf",
|
|
|
|
"md5": "26210bed6a57d5466042aff22f0249f0",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-21 03:22:06 +09:00
|
|
|
{ "id": "issue6541",
|
|
|
|
"file": "pdfs/issue6541.pdf",
|
|
|
|
"md5": "81bc5b146404207ea40f2c55301b2bb6",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-01 00:55:51 +09:00
|
|
|
{ "id": "issue6231_1",
|
|
|
|
"file": "pdfs/issue6231_1.pdf",
|
|
|
|
"md5": "eb13a9366a5142833a858472c68b4749",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-04-13 03:37:49 +09:00
|
|
|
{ "id": "usmanm-bad-auto-fetch",
|
|
|
|
"file": "pdfs/usmanm-bad.pdf",
|
|
|
|
"md5": "38afb822433aaf07fc8f54807cd4f61a",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"enableAutoFetch": true
|
|
|
|
},
|
2011-10-02 09:01:58 +09:00
|
|
|
{ "id": "vesta-bad",
|
|
|
|
"file": "pdfs/vesta.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "0afebc109b7c17b95619ea3fab5eafe6",
|
2011-10-02 09:01:58 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-11-13 05:41:16 +09:00
|
|
|
{ "id": "issue6621",
|
|
|
|
"file": "pdfs/issue6621.pdf",
|
|
|
|
"md5": "8079ce514fb2cdded4251eade6380ba9",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-08 06:30:09 +09:00
|
|
|
{ "id": "issue5084",
|
|
|
|
"file": "pdfs/issue5084.pdf",
|
|
|
|
"md5": "a42a076ba90e20e3aae9af869eb4de45",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-09 10:17:24 +09:00
|
|
|
{ "id": "scan-bad",
|
|
|
|
"file": "pdfs/scan-bad.pdf",
|
|
|
|
"md5": "4cf988f01ab83f61aca57f406dfd6584",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2016-02-13 02:05:19 +09:00
|
|
|
{ "id": "issue6549",
|
|
|
|
"file": "pdfs/issue6549.pdf",
|
|
|
|
"md5": "699aeea73a6f45375022ffc6cc80f12a",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 2,
|
|
|
|
"lastPage": 3,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2011-09-24 23:44:50 +09:00
|
|
|
{ "id": "ibwa-bad",
|
|
|
|
"file": "pdfs/ibwa-bad.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "6ca059d32b74ac2688ae06f727fee755",
|
2011-09-24 23:44:50 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"skipPages": [ 16 ],
|
|
|
|
"type": "load"
|
2011-09-29 09:54:40 +09:00
|
|
|
},
|
2012-04-18 02:39:17 +09:00
|
|
|
{ "id": "mixedfonts",
|
|
|
|
"file": "pdfs/mixedfonts.pdf",
|
|
|
|
"md5": "a582b83fa1b3a25a6f13803a367c71ec",
|
|
|
|
"link": false,
|
2011-09-29 09:54:40 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-10-05 00:52:15 +09:00
|
|
|
},
|
2011-10-12 09:45:55 +09:00
|
|
|
{ "id": "pal-o47",
|
|
|
|
"file": "pdfs/pal-o47.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "81ae15e539e89f0f0b41169d923b611b",
|
2011-10-12 09:45:55 +09:00
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-07-31 05:15:06 +09:00
|
|
|
{ "id": "issue4800",
|
|
|
|
"file": "pdfs/issue4800.pdf",
|
|
|
|
"md5": "80d285dfdb8e8e0dd66a2353f0c78b05",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "TrueType font with (0, 1) cmap."
|
|
|
|
},
|
2014-06-24 03:55:51 +09:00
|
|
|
{ "id": "issue4801",
|
|
|
|
"file": "pdfs/issue4801.pdf",
|
|
|
|
"md5": "7f32764717447a8b5c8eac08c9ab8380",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-05-04 00:28:30 +09:00
|
|
|
{ "id": "glyph_accent",
|
|
|
|
"file": "pdfs/glyph_accent.pdf",
|
|
|
|
"md5": "1526e4edaa3ec439ebf156d0a0b385aa",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Glyph accent drawn as curves."
|
|
|
|
},
|
2014-10-03 02:58:56 +09:00
|
|
|
{ "id": "issue5138",
|
|
|
|
"file": "pdfs/issue5138.pdf",
|
|
|
|
"md5": "9931686d7dee0df62640fbf58bed3323",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Glyph that gets mapped to unicode non-breaking-space."
|
|
|
|
},
|
2011-10-04 08:36:01 +09:00
|
|
|
{ "id": "simpletype3font",
|
|
|
|
"file": "pdfs/simpletype3font.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "b374c7543920840c61999e9e86939f99",
|
2011-10-04 08:36:01 +09:00
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
2011-10-05 01:06:51 +09:00
|
|
|
"type": "eq"
|
2011-10-29 06:11:14 +09:00
|
|
|
},
|
2012-09-15 03:37:00 +09:00
|
|
|
{ "id": "simpletype3font-text",
|
|
|
|
"file": "pdfs/simpletype3font.pdf",
|
|
|
|
"md5": "b374c7543920840c61999e9e86939f99",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2011-10-28 22:38:55 +09:00
|
|
|
{ "id": "close-path-bug",
|
|
|
|
"file": "pdfs/close-path-bug.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "48dd17ef58393857d2d038d33699cac5",
|
2011-10-28 22:38:55 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-11-01 00:51:45 +09:00
|
|
|
},
|
2011-10-29 06:11:14 +09:00
|
|
|
{ "id": "alphatrans",
|
|
|
|
"file": "pdfs/alphatrans.pdf",
|
2011-11-05 01:14:52 +09:00
|
|
|
"md5": "5ca2d3da0c5f20b3a5a14e895ad24b65",
|
2011-10-29 06:11:14 +09:00
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-11-10 02:39:55 +09:00
|
|
|
},
|
2015-11-26 21:27:12 +09:00
|
|
|
{ "id": "issue6692",
|
|
|
|
"file": "pdfs/issue6692.pdf",
|
|
|
|
"md5": "ba078e0ddd59cda4b6c51ea10599f49a",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 11,
|
|
|
|
"lastPage": 11,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-11-12 07:44:47 +09:00
|
|
|
{ "id": "devicen",
|
|
|
|
"file": "pdfs/devicen.pdf",
|
2011-11-23 02:06:53 +09:00
|
|
|
"md5": "aac6a91725435d1376c6ff492dc5cb75",
|
2011-11-12 07:44:47 +09:00
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-11-23 03:39:26 +09:00
|
|
|
},
|
2015-06-14 04:05:13 +09:00
|
|
|
{ "id": "issue5939",
|
|
|
|
"file": "pdfs/issue5939.pdf",
|
|
|
|
"md5": "43c61e06ad407c158763f0860c99bb04",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-11-10 02:39:55 +09:00
|
|
|
{ "id": "cmykjpeg",
|
|
|
|
"file": "pdfs/cmykjpeg.pdf",
|
2011-11-23 03:39:26 +09:00
|
|
|
"md5": "85d162b48ce98503a382d96f574f70a2",
|
2011-11-10 02:39:55 +09:00
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-11-30 08:47:53 +09:00
|
|
|
},
|
2016-03-02 10:05:33 +09:00
|
|
|
{ "id": "issue4402_reduced",
|
|
|
|
"file": "pdfs/issue4402_reduced.pdf",
|
|
|
|
"md5": "6cc7e61a581889eec3ed7402d87161c4",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-11-30 08:47:53 +09:00
|
|
|
{ "id": "protectip",
|
|
|
|
"file": "pdfs/protectip.pdf",
|
|
|
|
"md5": "676e7a7b8f96d04825361832b1838a93",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-11-30 13:22:30 +09:00
|
|
|
},
|
2013-07-30 05:24:32 +09:00
|
|
|
{ "id": "issue3427",
|
|
|
|
"file": "pdfs/issue3427.pdf",
|
|
|
|
"md5": "61979ede77f4557c65d4eb3c1a6dceeb",
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-11-30 13:22:30 +09:00
|
|
|
{ "id": "piperine",
|
|
|
|
"file": "pdfs/piperine.pdf",
|
|
|
|
"md5": "603ca43dc5732dbba1579f122958c0c2",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-12-02 21:55:04 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue840",
|
|
|
|
"file": "pdfs/issue840.pdf",
|
|
|
|
"md5": "20d88011dd7e3c4fb5274979094dab93",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-12-06 11:42:39 +09:00
|
|
|
},
|
2016-01-26 06:56:34 +09:00
|
|
|
{ "id": "issue1536",
|
|
|
|
"file": "pdfs/issue1536.pdf",
|
|
|
|
"md5": "bcaa52e6216399592ad5aa9fc49f1436",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 6,
|
|
|
|
"lastPage": 6,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue2098",
|
|
|
|
"file": "pdfs/issue2098.pdf",
|
|
|
|
"md5": "e9fa2b7cb935ffb95b510322d1e047e1",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-08 14:30:48 +09:00
|
|
|
{ "id": "bpl13210",
|
|
|
|
"file": "pdfs/bpl13210.pdf",
|
|
|
|
"md5": "8a08512baa9fa95378d9ad4b995947c7",
|
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 5,
|
2011-12-08 14:30:48 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-06 11:42:39 +09:00
|
|
|
{ "id": "tutorial",
|
|
|
|
"file": "pdfs/tutorial.pdf",
|
|
|
|
"md5": "6e122f618c27f3aa9a689423e3be6b8d",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-12-07 13:33:59 +09:00
|
|
|
},
|
|
|
|
{ "id": "geothermal.pdf",
|
|
|
|
"file": "pdfs/geothermal.pdf",
|
|
|
|
"md5": "ecffc0ce38ffdf1e90dc952f186e9a91",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 5,
|
2011-12-07 13:33:59 +09:00
|
|
|
"skipPages": [1],
|
|
|
|
"type": "eq"
|
2011-12-08 11:59:44 +09:00
|
|
|
},
|
2011-12-10 12:21:58 +09:00
|
|
|
{ "id": "issue919",
|
|
|
|
"file": "pdfs/issue919.pdf",
|
|
|
|
"md5": "3a1716a512aca4d7a8d6106bd4885d14",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 3,
|
2011-12-10 12:21:58 +09:00
|
|
|
"type": "eq"
|
2011-12-13 08:34:11 +09:00
|
|
|
},
|
2016-02-08 21:49:30 +09:00
|
|
|
{ "id": "issue6066",
|
|
|
|
"file": "pdfs/issue6066.pdf",
|
|
|
|
"md5": "b26eb08fc5ab2518ba8fde603bdfc46b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 2,
|
|
|
|
"lastPage": 2,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-10-27 13:30:01 +09:00
|
|
|
{ "id": "issue1905",
|
|
|
|
"file": "pdfs/issue1905.pdf",
|
|
|
|
"md5": "b1bbd72ca6522ae1502aa26320f81994",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-13 12:42:39 +09:00
|
|
|
{ "id": "issue918",
|
|
|
|
"file": "pdfs/issue918.pdf",
|
|
|
|
"md5": "d582cc0f2592ae82936589ced2a47e55",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-12-15 06:41:36 +09:00
|
|
|
},
|
2013-05-04 03:13:45 +09:00
|
|
|
{ "id": "issue3188",
|
|
|
|
"file": "pdfs/issue3188.pdf",
|
|
|
|
"md5": "161b72604d86f40ab2f765ddd3b61227",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-04-24 12:14:58 +09:00
|
|
|
{ "id": "issue1586",
|
2012-04-25 08:53:11 +09:00
|
|
|
"file": "pdfs/pdfjsbad1586.pdf",
|
|
|
|
"md5": "793d0870f0b0c613799b0677d64daca4",
|
2012-04-24 12:14:58 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2016-01-12 20:55:31 +09:00
|
|
|
{ "id": "aboutstacks",
|
|
|
|
"file": "pdfs/aboutstacks.pdf",
|
|
|
|
"md5": "6e7c8416a293ba2d83bc8dd20c6ccf51",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-17 03:54:31 +09:00
|
|
|
{ "id": "smaskdim",
|
|
|
|
"file": "pdfs/smaskdim.pdf",
|
2011-12-19 10:28:25 +09:00
|
|
|
"md5": "de80aeca7cbf79940189fd34d59671ee",
|
2011-12-17 03:54:31 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2011-12-30 05:39:00 +09:00
|
|
|
},
|
2013-03-05 05:28:04 +09:00
|
|
|
{ "id": "endchar",
|
|
|
|
"file": "pdfs/endchar.pdf",
|
|
|
|
"md5": "90a59acdd62252fdb4fefa482e12d6b3",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2011-12-31 02:24:13 +09:00
|
|
|
{ "id": "type4psfunc",
|
2011-12-30 05:39:00 +09:00
|
|
|
"file": "pdfs/type4psfunc.pdf",
|
|
|
|
"md5": "7e6027a02ff78577f74dccdf84e37189",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2012-01-05 10:55:04 +09:00
|
|
|
},
|
2014-04-12 01:55:39 +09:00
|
|
|
{ "id": "issue4573",
|
|
|
|
"file": "pdfs/issue4573.pdf",
|
|
|
|
"md5": "34b0c4fdee19e57033275b766c5f57a3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Seac with differences array that messes up mapping."
|
|
|
|
},
|
2014-09-27 20:14:25 +09:00
|
|
|
{ "id": "issue2840",
|
|
|
|
"file": "pdfs/issue2840.pdf",
|
|
|
|
"md5": "d9df49f6d62668d099e0fb7e74f8f337",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
Apply Patterns, if necessary, when rendering text
Currently we're not applying Patterns for text, but only for graphics.
This patch is unfortunately not a complete solution, but rather a step on the way, since there are still some PDF files where the Patterns look more like a solid colour, rather than the intended gradient.
I've been unable to fix these issues completely, and I've not managed to determine if the remaining issues are caused either by the pattern code, the canvas code, or perhaps both.
However, given that even this simple patch improves the current situation quite a bit, I figured that it couldn't hurt to submit it as-is.
- Fixes 5804.
- Fixes 6130.
- Improves 3988 a lot, since the text is now visible. However, it looks like the text is *one* solid colour, instead of the correct gradient.
- Improves 5432, since the text is no longer gray. (This file also suffers from the same problem as the previous one.)
2015-12-30 01:57:10 +09:00
|
|
|
{ "id": "issue5804",
|
|
|
|
"file": "pdfs/issue5804.pdf",
|
|
|
|
"md5": "442f27939edb6aaf173ceff38d69bb14",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "ShowText-ShadingPattern",
|
|
|
|
"file": "pdfs/ShowText-ShadingPattern.pdf",
|
|
|
|
"md5": "fe683725db037ffe19d390969610a652",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Please note that this file currently renders incorrectly."
|
|
|
|
},
|
2015-01-17 20:53:32 +09:00
|
|
|
{ "id": "issue5644",
|
|
|
|
"file": "pdfs/issue5644.pdf",
|
|
|
|
"md5": "6f9313c5043b3ecb0ab2df321d3e1847",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 6,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-05-18 07:57:06 +09:00
|
|
|
{ "id": "bug866395",
|
|
|
|
"file": "pdfs/bug866395.pdf",
|
|
|
|
"md5": "f03bc77e84637241980b09a0a220f575",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Font with an empty font file."
|
|
|
|
},
|
2012-01-05 10:55:04 +09:00
|
|
|
{ "id": "ocs",
|
|
|
|
"file": "pdfs/ocs.pdf",
|
|
|
|
"md5": "2ade57e954ae7632749cf328daeaa7a8",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
2012-01-05 10:57:08 +09:00
|
|
|
},
|
2013-02-23 23:04:17 +09:00
|
|
|
{ "id": "issue2139",
|
|
|
|
"file": "pdfs/issue2139.pdf",
|
|
|
|
"md5": "ee4072992e7c5ffd5063181916a2fcae",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-01-12 13:19:21 +09:00
|
|
|
{ "id": "issue1010",
|
|
|
|
"file": "pdfs/issue1010.pdf",
|
|
|
|
"md5": "f991ef093484a107fe9f59dff18fc155",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-05-19 01:14:09 +09:00
|
|
|
{ "id": "issue1709",
|
|
|
|
"file": "pdfs/issue1709.pdf",
|
|
|
|
"md5": "84497bd23b7c82d03d2681a1cb1d9ed0",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 10,
|
2012-05-19 01:14:09 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-02-23 13:08:46 +09:00
|
|
|
{ "id": "issue2642",
|
|
|
|
"file": "pdfs/issue2642.pdf",
|
|
|
|
"md5": "b6679861fdce3bbab0c1fa51bb7f5077",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-14 08:27:46 +09:00
|
|
|
{ "id": "issue3848",
|
|
|
|
"file": "pdfs/issue3848.pdf",
|
|
|
|
"md5": "2498cf0650cc97ceca3e24dfa0425a73",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load",
|
|
|
|
"about": "Document tree with pages and page nodes on the same level."
|
|
|
|
},
|
2012-01-05 04:49:37 +09:00
|
|
|
{ "id": "issue1015",
|
|
|
|
"file": "pdfs/issue1015.pdf",
|
|
|
|
"md5": "b61503d1b445742b665212866afb60e2",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-01-10 11:37:39 +09:00
|
|
|
},
|
2012-01-22 08:18:36 +09:00
|
|
|
{ "id": "issue1096",
|
|
|
|
"file": "pdfs/issue1096.pdf",
|
|
|
|
"md5": "7f75d2b4b93c78d401ff39e8c1b00612",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 9,
|
2012-01-22 08:18:36 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-01-27 09:51:58 +09:00
|
|
|
{ "id": "issue1127",
|
|
|
|
"file": "pdfs/issue1127.pdf",
|
|
|
|
"md5": "4fb2be5ffefeafda4ba977de2a1bb4d8",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-03-18 22:07:54 +09:00
|
|
|
{ "id": "issue4461-load",
|
|
|
|
"file": "pdfs/issue4461.pdf",
|
|
|
|
"md5": "9df4ecaae429adb5dc93d9342a53159d",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load",
|
|
|
|
"about": "Document without /Resources entry in page dictionary"
|
|
|
|
},
|
2012-02-20 11:12:57 +09:00
|
|
|
{ "id": "issue1249-load",
|
|
|
|
"file": "pdfs/issue1249.pdf",
|
|
|
|
"md5": "4f81339fa09422a7db980f34ea963609",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2012-01-10 11:37:39 +09:00
|
|
|
{ "id": "liveprogramming",
|
|
|
|
"file": "pdfs/liveprogramming.pdf",
|
|
|
|
"md5": "7bd4dad1188232ef597d36fd72c33e52",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 3,
|
2012-01-10 11:37:39 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
2012-01-12 11:14:49 +09:00
|
|
|
},
|
2015-04-30 19:40:54 +09:00
|
|
|
{ "id": "bug1142033",
|
|
|
|
"file": "pdfs/bug1142033.pdf",
|
|
|
|
"md5": "1d9afd397e89a0f52c056f449ec93daa",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue5874",
|
|
|
|
"file": "pdfs/issue5874.pdf",
|
|
|
|
"md5": "25922edf223aa91bc259663d0a34a6ab",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-31 23:55:25 +09:00
|
|
|
{ "id": "pr4731",
|
|
|
|
"file": "pdfs/pr4731.pdf",
|
|
|
|
"md5": "0121642027e525c4b95357f1b5669e64",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-10-04 20:45:07 +09:00
|
|
|
{ "id": "pr4897",
|
|
|
|
"file": "pdfs/pr4897.pdf",
|
|
|
|
"md5": "26897633eea5e6d10345a130b1c1777c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-04 20:19:32 +09:00
|
|
|
{ "id": "issue1940",
|
|
|
|
"file": "pdfs/issue1940.pdf",
|
|
|
|
"md5": "4f0a0b92c1b5e6e86e1a82490087e6e5",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2016-03-02 05:39:33 +09:00
|
|
|
{ "id": "issue7020",
|
|
|
|
"file": "pdfs/issue7020.pdf",
|
|
|
|
"md5": "93b464e21c649e64ae92eeafe99fc31b",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-04 20:19:32 +09:00
|
|
|
{ "id": "pr4606",
|
|
|
|
"file": "pdfs/pr4606.pdf",
|
|
|
|
"md5": "6574fde2314648600056bd0e229df98c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2012-01-12 11:14:49 +09:00
|
|
|
{ "id": "S2-eq",
|
|
|
|
"file": "pdfs/S2.pdf",
|
|
|
|
"md5": "d0b6137846df6e0fe058f234a87fb588",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2012-01-19 11:14:43 +09:00
|
|
|
},
|
2012-01-18 04:40:52 +09:00
|
|
|
{ "id": "issue1055",
|
2015-11-18 21:47:56 +09:00
|
|
|
"file": "pdfs/issue1055r.pdf",
|
|
|
|
"md5": "4aa72bb4779e3f301c45492f2a590459",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2012-01-18 13:50:49 +09:00
|
|
|
},
|
2012-05-18 08:34:31 +09:00
|
|
|
{ "id": "issue1629",
|
|
|
|
"file": "pdfs/issue1629.pdf",
|
|
|
|
"md5": "0f2cbbf268383a377e95e6bbe36c6a9a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-07 00:16:31 +09:00
|
|
|
{ "id": "issue6410",
|
|
|
|
"file": "pdfs/issue6410.pdf",
|
|
|
|
"md5": "fd5c5898d5b9754bb546724b7d31bf59",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-09-04 05:29:12 +09:00
|
|
|
{ "id": "issue6413",
|
|
|
|
"file": "pdfs/issue6413.pdf",
|
|
|
|
"md5": "08926ac7a46e27a4abbb31256b3a7b29",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-08-12 13:05:41 +09:00
|
|
|
{ "id": "issue1685",
|
|
|
|
"file": "pdfs/issue1685.pdf",
|
|
|
|
"md5": "b22c3741e6bd0e613d3eb3325ad31f7d",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-08-12 13:05:41 +09:00
|
|
|
"link": true,
|
2012-05-18 08:34:31 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-05 03:45:18 +09:00
|
|
|
{ "id": "issue1169",
|
|
|
|
"file": "pdfs/issue1169.pdf",
|
|
|
|
"md5": "3df3ed21fd43ac7fdb21e2015c8a7809",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-21 06:01:48 +09:00
|
|
|
{ "id": "issue6360",
|
|
|
|
"file": "pdfs/issue6360.pdf",
|
|
|
|
"md5": "58c5455ffd84b1c07ad2d0fa90cd5e26",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-21 23:57:08 +09:00
|
|
|
{ "id": "issue5752",
|
|
|
|
"file": "pdfs/issue5752.pdf",
|
|
|
|
"md5": "aa20ad7cff71e9481c0cd623ddbff3b7",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-07-31 20:46:11 +09:00
|
|
|
{ "id": "issue2931",
|
|
|
|
"file": "pdfs/issue2931.pdf",
|
|
|
|
"md5": "ea40940eaf3541b312bda9329167da11",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-09-04 04:57:57 +09:00
|
|
|
{ "id": "ZapfDingbats",
|
|
|
|
"file": "pdfs/ZapfDingbats.pdf",
|
|
|
|
"md5": "980df9b1c86715a3d8aa2d3c807a2b2c",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-11-08 21:18:23 +09:00
|
|
|
{ "id": "TrueType_without_cmap",
|
|
|
|
"file": "pdfs/TrueType_without_cmap.pdf",
|
|
|
|
"md5": "afca8bb11f2e1f7298b4e5dd85785fb0",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-07-31 20:46:11 +09:00
|
|
|
{ "id": "issue3323",
|
|
|
|
"file": "pdfs/issue3323.pdf",
|
|
|
|
"md5": "1a14ff574013caeafa9d598269988764",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue4304",
|
|
|
|
"file": "pdfs/issue4304.pdf",
|
|
|
|
"md5": "1b1205bf0d7c1ad22a154b60da8e694d",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-12-30 00:28:23 +09:00
|
|
|
{ "id": "issue4379",
|
|
|
|
"file": "pdfs/issue4379.pdf",
|
|
|
|
"md5": "09715ec1a7b0f3a7ae02b3046f627b9f",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-04 20:12:07 +09:00
|
|
|
{ "id": "issue4387",
|
|
|
|
"file": "pdfs/issue4387.pdf",
|
|
|
|
"md5": "e06da177b5b9e36016fa2442510d62da",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2014-12-12 01:29:26 +09:00
|
|
|
{ "id": "issue4722",
|
|
|
|
"file": "pdfs/issue4722.pdf",
|
|
|
|
"md5": "a42ca858af7d179358f92f47e57c0fed",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-08-04 01:34:52 +09:00
|
|
|
{ "id": "issue4875",
|
|
|
|
"file": "pdfs/issue4875.pdf",
|
|
|
|
"md5": "9a558e18029a42c0ef4e9a8755e24733",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue4881",
|
|
|
|
"file": "pdfs/issue4881.pdf",
|
|
|
|
"md5": "e1f06be05eda4ddf734e9764f3f067f1",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-10-25 18:35:13 +09:00
|
|
|
{ "id": "issue5291",
|
|
|
|
"file": "pdfs/issue5291.pdf",
|
|
|
|
"md5": "edae085495c702069ffdbf785a826556",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-08-29 21:15:19 +09:00
|
|
|
{ "id": "issue5244",
|
|
|
|
"file": "pdfs/issue5244.pdf",
|
|
|
|
"md5": "a50cd364c3976c744627b4b9bb90c761",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-05-11 04:48:17 +09:00
|
|
|
{ "id": "issue5994",
|
|
|
|
"file": "pdfs/issue5994.pdf",
|
|
|
|
"md5": "6799733a39d29b3828d6628bf2c5c382",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-11-24 00:57:43 +09:00
|
|
|
{ "id": "issue6612-text",
|
|
|
|
"file": "pdfs/issue6612.pdf",
|
|
|
|
"md5": "657f33236496916597cd70ef1222509a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2012-01-18 13:50:49 +09:00
|
|
|
{ "id": "zerowidthline",
|
|
|
|
"file": "pdfs/zerowidthline.pdf",
|
|
|
|
"md5": "295d26e61a85635433f8e4b768953f60",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2012-02-02 07:48:44 +09:00
|
|
|
},
|
2012-02-13 12:11:44 +09:00
|
|
|
{ "id": "html5checker",
|
|
|
|
"file": "pdfs/html5checker.pdf",
|
|
|
|
"md5": "74bbd80d1e7eb5f2951582233ef9ebab",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 7,
|
2012-02-13 12:11:44 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-07 08:13:41 +09:00
|
|
|
{ "id": "issue5704",
|
|
|
|
"file": "pdfs/issue5704.pdf",
|
|
|
|
"md5": "6e0b62585feef24dff2d7e7687cd8128",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-20 19:19:21 +09:00
|
|
|
{ "id": "issue5747",
|
|
|
|
"file": "pdfs/issue5747.pdf",
|
|
|
|
"md5": "5c36afc931dd1a3321ffa2e88952d174",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
2015-02-07 08:13:41 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-06-10 00:52:36 +09:00
|
|
|
{ "id": "issue6099",
|
|
|
|
"file": "pdfs/issue6099.pdf",
|
|
|
|
"md5": "f8e9a26637c1b0d35f2bc653122a9c73",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-04 05:34:12 +09:00
|
|
|
{
|
2015-12-06 03:33:25 +09:00
|
|
|
"id": "bug1123803",
|
|
|
|
"file": "pdfs/bug1123803.pdf",
|
|
|
|
"md5": "0f3870ac5ad8899aec34d734e045a514",
|
2015-12-04 05:34:12 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-11-04 00:03:08 +09:00
|
|
|
{
|
|
|
|
"id": "issue6019-text",
|
|
|
|
"file": "pdfs/issue6019.pdf",
|
|
|
|
"md5": "7a2e5dda3b0fc5c2e9060e378a8cdc4e",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2015-02-07 08:13:41 +09:00
|
|
|
{ "id": "bug893730",
|
|
|
|
"file": "pdfs/bug893730.pdf",
|
|
|
|
"md5": "2587379fb1b3bbff89c14f0863e78383",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-09 19:31:05 +09:00
|
|
|
{ "id": "issue6336",
|
|
|
|
"file": "pdfs/issue6336.pdf",
|
|
|
|
"md5": "1c457c12b3606e1de610235d6768bd78",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-03-07 19:39:10 +09:00
|
|
|
{ "id": "issue5801",
|
|
|
|
"file": "pdfs/issue5801.pdf",
|
|
|
|
"md5": "e9548650ad40e13e00d2a486bbc2bb1b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-05-10 18:28:15 +09:00
|
|
|
{ "id": "issue5972",
|
|
|
|
"file": "pdfs/issue5972.pdf",
|
|
|
|
"md5": "51f03e1d38410b04c9dda7e75fe8a0a3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2012-03-02 12:23:36 +09:00
|
|
|
{ "id": "pdfkit_compressed",
|
|
|
|
"file": "pdfs/pdfkit_compressed.pdf",
|
|
|
|
"md5": "ffe9c571d0a1572e234253e6c7cdee6c",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-06-07 01:00:14 +09:00
|
|
|
{ "id": "issue6068",
|
|
|
|
"file": "pdfs/issue6068.pdf",
|
|
|
|
"md5": "bbcedb94776b40352729c16940a5b2bd",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2016-01-18 06:03:21 +09:00
|
|
|
{ "id": "issue6889",
|
|
|
|
"file": "pdfs/issue6889.pdf",
|
|
|
|
"md5": "397fa92da1a8bfa83dc8c20287854d15",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-03-18 07:35:04 +09:00
|
|
|
{ "id": "tamreview",
|
|
|
|
"file": "pdfs/TAMReview.pdf",
|
|
|
|
"md5": "8039aba56790d3597d2bc8c794a51301",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 5,
|
2012-03-18 07:35:04 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-03-26 06:30:44 +09:00
|
|
|
{ "id": "preistabelle",
|
|
|
|
"file": "pdfs/preistabelle.pdf",
|
|
|
|
"md5": "d2f0b2086160d4f3d325c79a5dc1fb4d",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-03-26 06:30:44 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-03 21:36:44 +09:00
|
|
|
{ "id": "ichiji",
|
|
|
|
"file": "pdfs/ichiji.pdf",
|
|
|
|
"md5": "66b645802d33513cd598886e017392b8",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-03-20 01:09:42 +09:00
|
|
|
{ "id": "issue1350",
|
|
|
|
"file": "pdfs/issue1350.pdf",
|
|
|
|
"md5": "92f72a04a4d9d05b2dd433b51f32ab1f",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-01-03 09:44:11 +09:00
|
|
|
{ "id": "bug864847",
|
|
|
|
"file": "pdfs/bug864847.pdf",
|
|
|
|
"md5": "2b62cbba5d40a769be8e611eb5b61bfe",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-20 15:12:22 +09:00
|
|
|
{ "id": "issue925",
|
|
|
|
"file": "pdfs/issue925.pdf",
|
|
|
|
"md5": "f58fe943090aff89dcc8e771bc0db4c2",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-24 00:01:08 +09:00
|
|
|
{ "id": "issue5751",
|
|
|
|
"file": "pdfs/issue5751.pdf",
|
|
|
|
"md5": "9334a52dc85747f1e3422767e0cd3ee9",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2016-01-06 10:07:21 +09:00
|
|
|
{ "id": "issue6782",
|
|
|
|
"file": "pdfs/issue6782.pdf",
|
|
|
|
"md5": "b423f709600daa5745cc6d8234f7c608",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-06-22 08:02:58 +09:00
|
|
|
{ "id": "bug867484",
|
|
|
|
"file": "pdfs/bug867484.pdf",
|
|
|
|
"md5": "347af7b0ef7279b1a7f43b03bfda4548",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-10-31 23:10:08 +09:00
|
|
|
{ "id": "bug860632",
|
|
|
|
"file": "pdfs/bug860632.pdf",
|
|
|
|
"md5": "b3cabf9249c8fee76f61f6b3b7fdd5fd",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-05 20:22:09 +09:00
|
|
|
{ "id": "IdentityToUnicodeMap_charCodeOf",
|
|
|
|
"file": "pdfs/IdentityToUnicodeMap_charCodeOf.pdf",
|
|
|
|
"md5": "da030686418c5e37d889127a05dafb83",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2015-02-19 21:58:03 +09:00
|
|
|
{ "id": "bug894572",
|
|
|
|
"file": "pdfs/bug894572.pdf",
|
|
|
|
"md5": "e54a6b0451939f685ed37e3d46e16158",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-07 05:58:01 +09:00
|
|
|
{ "id": "bug1108301",
|
|
|
|
"file": "pdfs/bug1108301.pdf",
|
|
|
|
"md5": "cc94cc7e5f5e281dfa7e21020dd90cc7",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-05 06:47:03 +09:00
|
|
|
{ "id": "bug1020858",
|
|
|
|
"file": "pdfs/bug1020858.pdf",
|
|
|
|
"md5": "cde53bcf75df14ff59c8a5a96fe437b9",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2015-04-25 20:27:10 +09:00
|
|
|
{ "id": "bug1157493",
|
|
|
|
"file": "pdfs/bug1157493.pdf",
|
|
|
|
"md5": "df96eddacf186c28a91e699800180c4f",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-04-05 01:50:20 +09:00
|
|
|
{ "id": "issue1466",
|
|
|
|
"file": "pdfs/issue1466.pdf",
|
|
|
|
"md5": "8a8877432e5bb10cfd50d60488d947bb",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-12-06 22:12:37 +09:00
|
|
|
{ "id": "bug1064894",
|
|
|
|
"file": "pdfs/bug1064894.pdf",
|
|
|
|
"md5": "22971b6a24912bca9c773379c10ef18a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-10-09 04:11:41 +09:00
|
|
|
{ "id": "bug1065245",
|
|
|
|
"file": "pdfs/bug1065245.pdf",
|
|
|
|
"md5": "844b3af0a1d338a2e1bbe742f474bbb7",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Inline JPEG images."
|
|
|
|
},
|
2012-08-12 10:10:31 +09:00
|
|
|
{ "id": "issue1655",
|
2015-11-15 23:32:11 +09:00
|
|
|
"file": "pdfs/issue1655r.pdf",
|
|
|
|
"md5": "569f48449ba57c15c4f9ade151a651c5",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2012-08-12 10:10:31 +09:00
|
|
|
},
|
2012-10-13 12:33:56 +09:00
|
|
|
{ "id": "issue1687",
|
|
|
|
"file": "pdfs/issue1687.pdf",
|
|
|
|
"md5": "ea79d83821d1dd0663414b037080add5",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-02 07:48:44 +09:00
|
|
|
{ "id": "issue1133",
|
|
|
|
"file": "pdfs/issue1133.pdf",
|
|
|
|
"md5": "d1b61580cb100e3df93d33703af1773a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-02-07 09:11:52 +09:00
|
|
|
},
|
2012-08-21 05:57:21 +09:00
|
|
|
{ "id": "issue1658",
|
|
|
|
"file": "pdfs/issue1658.pdf",
|
|
|
|
"md5": "b71a0f641e83ad427b8bcfc180899a05",
|
|
|
|
"rounds": 1,
|
|
|
|
"skipPages": [1, 2, 3, 4, 5, 6, 7, 8, 9],
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 10,
|
2012-08-21 05:57:21 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-01-21 08:41:01 +09:00
|
|
|
{ "id": "issue1049",
|
|
|
|
"file": "pdfs/issue1049.pdf",
|
|
|
|
"md5": "15473fffcdde9fb8f3756a4cf1aab347",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-02-15 04:55:39 +09:00
|
|
|
},
|
2015-06-16 19:47:50 +09:00
|
|
|
{ "id": "issue6117",
|
|
|
|
"file": "pdfs/issue6117.pdf",
|
|
|
|
"md5": "691f5f8268e07f3831e8293258a68da7",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 6,
|
|
|
|
"lastPage": 6,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-07-21 06:30:05 +09:00
|
|
|
{ "id": "issue6238",
|
|
|
|
"file": "pdfs/issue6238.pdf",
|
|
|
|
"md5": "6d7731ee22fbbdf746c8da01b8922d50",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 3,
|
|
|
|
"lastPage": 3,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-14 04:06:09 +09:00
|
|
|
{ "id": "cid_cff",
|
|
|
|
"file": "pdfs/cid_cff.pdf",
|
|
|
|
"md5": "a19a18eaa626262cc45e0760004d6de9",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-15 04:55:39 +09:00
|
|
|
{ "id": "issue1155",
|
2016-01-16 23:51:10 +09:00
|
|
|
"file": "pdfs/issue1155r.pdf",
|
|
|
|
"md5": "8d772a3c6109bda860b8d80d42d4c08c",
|
2012-02-15 04:55:39 +09:00
|
|
|
"rounds": 1,
|
2016-01-16 23:51:10 +09:00
|
|
|
"link": false,
|
2012-02-15 04:55:39 +09:00
|
|
|
"type": "eq"
|
2012-02-19 06:01:53 +09:00
|
|
|
},
|
2013-03-26 18:41:56 +09:00
|
|
|
{ "id": "link-annotation-border",
|
|
|
|
"file": "pdfs/link-annotation-border.pdf",
|
2013-05-29 07:31:54 +09:00
|
|
|
"md5": "a0550889b010df9fabe4e2107662c8c4",
|
2013-03-26 18:41:56 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
2015-12-19 06:29:22 +09:00
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
2013-03-26 18:41:56 +09:00
|
|
|
},
|
2012-03-11 12:12:33 +09:00
|
|
|
{ "id": "issue1002",
|
|
|
|
"file": "pdfs/issue1002.pdf",
|
|
|
|
"md5": "af62d6cd95079322d4af18edd960d15c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-05-22 12:15:09 +09:00
|
|
|
{ "id": "issue1721",
|
|
|
|
"file": "pdfs/issue1721.pdf",
|
|
|
|
"md5": "b47177f9e5197a76ec498733ecab60e6",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-05-22 12:15:09 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-10-14 01:41:44 +09:00
|
|
|
{ "id": "issue1233",
|
|
|
|
"file": "pdfs/issue1233.pdf",
|
|
|
|
"md5": "2d3565b0a286e29955796c37c66326c1",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2012-10-14 01:41:44 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-19 06:01:53 +09:00
|
|
|
{ "id": "issue1243",
|
|
|
|
"file": "pdfs/issue1243.pdf",
|
|
|
|
"md5": "130c849b83513d5ac5e03c6421fc7489",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-02-19 06:01:53 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-02-21 08:19:12 +09:00
|
|
|
},
|
2014-07-24 21:59:21 +09:00
|
|
|
{ "id": "issue5039",
|
|
|
|
"file": "pdfs/issue5039.pdf",
|
|
|
|
"md5": "5c131f458ee6b65cc096ccaf0474ee3a",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-07-29 01:41:47 +09:00
|
|
|
{ "id": "issue5070",
|
|
|
|
"file": "pdfs/issue5070.pdf",
|
|
|
|
"md5": "ec2ca0b4954c8390a5b3b0ffd79a8e92",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-02-21 08:19:12 +09:00
|
|
|
{ "id": "issue1257",
|
|
|
|
"file": "pdfs/issue1257.pdf",
|
|
|
|
"md5": "9111533826bc21ed774e8e01603a2f54",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-02-21 08:19:12 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-03-18 13:13:54 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue1309",
|
|
|
|
"file": "pdfs/issue1309.pdf",
|
|
|
|
"md5": "e835fb7f3dab3073ad37d0bd3c6399fa",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-11-16 08:26:42 +09:00
|
|
|
{
|
|
|
|
"id": "issue6006",
|
|
|
|
"file": "pdfs/issue6006.pdf",
|
|
|
|
"md5": "65558dcdd2f20d4372458419c10bfa72",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-06-22 19:59:53 +09:00
|
|
|
{ "id": "issue1810",
|
|
|
|
"file": "pdfs/issue1810.pdf",
|
|
|
|
"md5": "b173a9dfb7bf00e1a298c6e8cb95c03e",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 3,
|
2012-06-22 19:59:53 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-04-24 07:50:02 +09:00
|
|
|
{ "id": "issue1597",
|
|
|
|
"file": "pdfs/issue1597.pdf",
|
|
|
|
"md5": "a5ebef467fd6e2fc0aeb56c9eb725ae3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-07-20 02:58:07 +09:00
|
|
|
{ "id": "issue1419.pdf",
|
|
|
|
"file": "pdfs/issue1419.pdf",
|
|
|
|
"md5": "b5b6c6405d7b48418bccf97277957664",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
2015-08-28 23:05:34 +09:00
|
|
|
"lastPage": 2,
|
2012-07-20 02:58:07 +09:00
|
|
|
"skipPages": [1],
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-03-18 13:13:54 +09:00
|
|
|
{ "id": "issue1317",
|
|
|
|
"file": "pdfs/issue1317.pdf",
|
|
|
|
"md5": "6fb46275b30c48c8985617d4f86199e3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-03-30 00:53:51 +09:00
|
|
|
},
|
2015-08-19 05:25:37 +09:00
|
|
|
{ "id": "issue6364",
|
|
|
|
"file": "pdfs/issue6364.pdf",
|
|
|
|
"md5": "b290328531ecdddf6b4c794b4b2fec28",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-28 20:42:01 +09:00
|
|
|
{ "id": "issue6387-canvas",
|
|
|
|
"file": "pdfs/issue6387.pdf",
|
|
|
|
"md5": "08c39ac6d0aab1596e6e59793eaf3ee4",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue6387-text",
|
|
|
|
"file": "pdfs/issue6387.pdf",
|
|
|
|
"md5": "08c39ac6d0aab1596e6e59793eaf3ee4",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text",
|
|
|
|
"about": "Note that the text layer seems to be off to the right."
|
|
|
|
},
|
2015-08-19 05:33:09 +09:00
|
|
|
{ "id": "issue4890",
|
|
|
|
"file": "pdfs/issue4890.pdf",
|
|
|
|
"md5": "1666feb4cd26318c2bdbea6a175dce87",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-09-26 02:32:04 +09:00
|
|
|
{ "id": "bug898853.pdf",
|
|
|
|
"file": "pdfs/bug898853.pdf",
|
|
|
|
"md5": "37c37702bf98d33f9f74e2380c4d1a3f",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Has a multi-byte char codes."
|
|
|
|
},
|
2016-01-09 19:50:48 +09:00
|
|
|
{ "id": "issue4684-text",
|
|
|
|
"file": "pdfs/issue4684.pdf",
|
|
|
|
"md5": "af5056fcdfb08bd7adc1710d36e4b5b5",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text",
|
|
|
|
"about": "Invisible (and broken) TrueType font used for text-selection."
|
|
|
|
},
|
2012-10-14 05:35:23 +09:00
|
|
|
{ "id": "issue1912",
|
|
|
|
"file": "pdfs/issue1912.pdf",
|
|
|
|
"md5": "15305b7c2cba971e7423de3f6ad38fef",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-03-30 00:53:51 +09:00
|
|
|
{ "id": "gradientfill",
|
|
|
|
"file": "pdfs/gradientfill.pdf",
|
|
|
|
"md5": "cbc1988e4803f647fa83467a85f0e231",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2012-06-14 02:29:02 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue1796",
|
|
|
|
"file": "pdfs/issue1796.pdf",
|
|
|
|
"md5": "9b9b60dc2a4cc3ea05932785d71304fe",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-06-14 02:29:02 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-07-12 08:29:07 +09:00
|
|
|
},
|
2014-04-17 21:52:33 +09:00
|
|
|
{ "id": "issue4630",
|
|
|
|
"file": "pdfs/issue4630.pdf",
|
|
|
|
"md5": "46690a12b953c9ad660f3f6453f8785c",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-14 19:59:10 +09:00
|
|
|
{ "id": "issue5734-text",
|
|
|
|
"file": "pdfs/issue5734.pdf",
|
|
|
|
"md5": "2cf88f1786b039ba080623085c87beb9",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2015-05-14 21:08:43 +09:00
|
|
|
{ "id": "issue5896-text",
|
|
|
|
"file": "pdfs/issue5896.pdf",
|
|
|
|
"md5": "08f69084d72dabc5dfdcf5c1ff2a719f",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2012-08-12 01:57:42 +09:00
|
|
|
{ "id": "issue845",
|
2015-11-17 07:38:23 +09:00
|
|
|
"file": "pdfs/issue845r.pdf",
|
|
|
|
"md5": "b5f8fe4005cf3fb685fdb4a4c44ee4a2",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2012-08-12 01:57:42 +09:00
|
|
|
},
|
2013-08-24 02:57:11 +09:00
|
|
|
{ "id": "helloworld-bad",
|
|
|
|
"file": "pdfs/helloworld-bad.pdf",
|
|
|
|
"md5": "bf5ab1cf7fe3a502c3754f55e6ceeabd",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2012-07-12 08:29:07 +09:00
|
|
|
{ "id": "issue818",
|
|
|
|
"file": "pdfs/issue818.pdf",
|
|
|
|
"md5": "dd2f8a5bd65164ad74da2b45a6ca90cc",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2012-07-12 08:29:07 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2012-08-04 08:11:43 +09:00
|
|
|
},
|
2013-10-31 00:54:19 +09:00
|
|
|
{ "id": "issue3405",
|
2015-11-17 01:03:59 +09:00
|
|
|
"file": "pdfs/issue3405r.pdf",
|
|
|
|
"md5": "12e8c6b3437e659f9138d892d10c7d3d",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2013-10-31 00:54:19 +09:00
|
|
|
},
|
2012-11-25 06:13:13 +09:00
|
|
|
{ "id": "issue2006",
|
|
|
|
"file": "pdfs/issue2006.pdf",
|
|
|
|
"md5": "71ec73831ece9b508ad20efa6ff28642",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2012-11-25 06:13:13 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-08-04 08:11:43 +09:00
|
|
|
{ "id": "issue1729",
|
|
|
|
"file": "pdfs/issue1729.pdf",
|
|
|
|
"md5": "29b0eddc3e1dcb23a44384037032d470",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2012-08-04 08:11:43 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
2012-08-17 07:22:28 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue1985",
|
|
|
|
"file": "pdfs/issue1985.pdf",
|
|
|
|
"md5": "2ac7c68e26a8ef797aead15e4875cc6d",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2012-08-29 09:19:31 +09:00
|
|
|
},
|
2015-07-03 06:47:47 +09:00
|
|
|
{ "id": "issue5540",
|
|
|
|
"file": "pdfs/issue5540.pdf",
|
|
|
|
"md5": "12b69b19e366232422812ad8b2534f37",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-12-15 05:44:39 +09:00
|
|
|
{ "id": "issue2176",
|
|
|
|
"file": "pdfs/issue2176.pdf",
|
|
|
|
"md5": "ca5cbbc7e2b717997f0b24ffa485eac6",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-12-21 04:14:10 +09:00
|
|
|
{ "id": "issue1453",
|
|
|
|
"file": "pdfs/issue1453.pdf",
|
|
|
|
"md5": "cee0ee8ea3a0643cbd716d57fd44f628",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-30 08:23:52 +09:00
|
|
|
{ "id": "issue6113",
|
|
|
|
"file": "pdfs/issue6113.pdf",
|
|
|
|
"md5": "365fa2d369c51ee3ff195dae907b6e25",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-24 01:20:57 +09:00
|
|
|
{ "id": "issue6151",
|
|
|
|
"file": "pdfs/issue6151.pdf",
|
|
|
|
"md5": "926f8c6b25e6f0978759f7947d70e079",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-03-12 02:23:47 +09:00
|
|
|
{ "id": "blendmode",
|
|
|
|
"file": "pdfs/blendmode.pdf",
|
2013-04-03 00:23:25 +09:00
|
|
|
"md5": "5a86e7e9333e93c58abc3f382e1e6ea2",
|
2013-03-12 02:23:47 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Every blend mode that PDF supports."
|
|
|
|
},
|
2013-03-13 09:20:38 +09:00
|
|
|
{ "id": "transparency_group",
|
|
|
|
"file": "pdfs/transparency_group.pdf",
|
|
|
|
"md5": "10391f76434128e5da70cff5fc485ff0",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Rotated transparency group with blend mode."
|
|
|
|
},
|
2015-05-14 00:25:42 +09:00
|
|
|
{ "id": "issue6010_1",
|
|
|
|
"file": "pdfs/issue6010_1.pdf",
|
|
|
|
"md5": "b58adce5dbb08936ddb0d904f0da8716",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load",
|
|
|
|
"password": "abc"
|
|
|
|
},
|
|
|
|
{ "id": "issue6010_2",
|
|
|
|
"file": "pdfs/issue6010_2.pdf",
|
|
|
|
"md5": "73a8091d0ab2a47af5ca45047f04da99",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "load",
|
|
|
|
"password": "\u00E6\u00F8\u00E5",
|
2016-01-14 00:40:21 +09:00
|
|
|
"about": "The password (æøå) is UTF8 encoded."
|
2015-05-14 00:25:42 +09:00
|
|
|
},
|
2015-09-28 05:43:23 +09:00
|
|
|
{ "id": "High-Pressure-Measurement-WP-001287",
|
|
|
|
"file": "pdfs/High-Pressure-Measurement-WP-001287.pdf",
|
|
|
|
"md5": "aeba7e47bbe50cbf08bb8bdff78fec8c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 3,
|
|
|
|
"lastPage": 3,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-07-23 06:52:44 +09:00
|
|
|
{ "id": "issue3458.pdf",
|
|
|
|
"file": "pdfs/issue3458.pdf",
|
|
|
|
"md5": "dab8bd3ad1acfc8dc82a8381a3c8ff94",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Pattern with current transform different than base transform."
|
|
|
|
},
|
2015-06-05 04:28:14 +09:00
|
|
|
{ "id": "issue6081",
|
|
|
|
"file": "pdfs/issue6081.pdf",
|
|
|
|
"md5": "854326ce9178d10ff4a0ff2aedf67e45",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-12-21 04:14:10 +09:00
|
|
|
{ "id": "issue2462",
|
|
|
|
"file": "pdfs/issue2462.pdf",
|
|
|
|
"md5": "d4e3dddfdd35464c71cf0310bff29b42",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-12-01 00:07:39 +09:00
|
|
|
{ "id": "issue1998",
|
|
|
|
"file": "pdfs/issue1998.pdf",
|
|
|
|
"md5": "586e0213be2f461360ec26770b5a4e48",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-12-01 00:07:39 +09:00
|
|
|
"link": true,
|
2013-04-04 02:36:09 +09:00
|
|
|
"type": "eq"
|
2012-12-01 00:07:39 +09:00
|
|
|
},
|
2013-01-31 09:20:04 +09:00
|
|
|
{ "id": "issue2627",
|
|
|
|
"file": "pdfs/issue2627.pdf",
|
|
|
|
"md5": "1b6b2f19f4e1e1b926afb353b41fe6b2",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 4,
|
|
|
|
"lastPage": 4,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-04-16 08:14:07 +09:00
|
|
|
{ "id": "issue3061",
|
|
|
|
"file": "pdfs/issue3061.pdf",
|
|
|
|
"md5": "696a7cb1b194d095ca3f7861779a606b",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "CFF CID font with font matrices in main top dict and sub top dict."
|
|
|
|
},
|
2013-08-23 02:12:16 +09:00
|
|
|
{ "id": "issue3566",
|
|
|
|
"file": "pdfs/issue3566.pdf",
|
|
|
|
"md5": "e9ab02aa769f4c040a6fa52f00d6e3f0",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"lastPage": 1,
|
|
|
|
"about": "CFF font with multiply-encoded glyph and no pdf encoding dict."
|
2013-04-16 08:14:07 +09:00
|
|
|
},
|
2015-07-03 20:14:41 +09:00
|
|
|
{ "id": "bug1151216",
|
|
|
|
"file": "pdfs/bug1151216.pdf",
|
|
|
|
"md5": "e66ea6ee0e0cdd5119224eb073055eca",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "bug1175962",
|
|
|
|
"file": "pdfs/bug1175962.pdf",
|
|
|
|
"md5": "012a5ea0d2733408ac7f8b88f7352bba",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "The same PDF file as in bug1175943."
|
|
|
|
},
|
2012-11-04 13:03:52 +09:00
|
|
|
{ "id": "issue1878",
|
|
|
|
"file": "pdfs/issue1878.pdf",
|
|
|
|
"md5": "b4fb0ce7c19368e7104dce3d0d34bcb3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-10-11 04:41:11 +09:00
|
|
|
{ "id": "bigboundingbox",
|
|
|
|
"file": "pdfs/bigboundingbox.pdf",
|
|
|
|
"md5": "e5c5e2cb80826d6ebf535413865270cd",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "When the bounding box for the xobject is transformed it creates a huge bounding box."
|
|
|
|
},
|
2012-12-09 14:04:37 +09:00
|
|
|
{ "id": "issue2386",
|
|
|
|
"file": "pdfs/issue2386.pdf",
|
|
|
|
"md5": "7dc787639aa6765214e9ff5494d231ed",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 2,
|
2012-12-09 14:04:37 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-10 10:33:59 +09:00
|
|
|
{ "id": "issue1936",
|
|
|
|
"file": "pdfs/issue1936.pdf",
|
|
|
|
"md5": "7302eb9b6a626308e2a933aaed9e1756",
|
|
|
|
"rounds": 1,
|
2013-01-31 04:31:08 +09:00
|
|
|
"lastPage": 1,
|
2013-01-10 10:33:59 +09:00
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-30 06:10:38 +09:00
|
|
|
{ "id": "bug951051",
|
|
|
|
"file": "pdfs/bug951051.pdf",
|
|
|
|
"md5": "05d325a5112bd3f6022367dab7bc07b9",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-07-09 11:03:59 +09:00
|
|
|
{ "id": "issue3062",
|
|
|
|
"file": "pdfs/issue3062.pdf",
|
|
|
|
"md5": "206715f1258f0e117df4180d98dd4d68",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "issue2442",
|
|
|
|
"file": "pdfs/issue2442.pdf",
|
|
|
|
"md5": "4656e36c44f44c71a499f02ce6c781d3",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-10-14 04:21:15 +09:00
|
|
|
{ "id": "issue2074",
|
|
|
|
"file": "pdfs/issue2074.pdf",
|
|
|
|
"md5": "5e4ba2241fc35d20e44eb52289a569ab",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-08-29 09:19:31 +09:00
|
|
|
{ "id": "colorkeymask",
|
|
|
|
"file": "pdfs/colorkeymask.pdf",
|
|
|
|
"md5": "9f11e815b485f7f0e1fa5c116c636cf9",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2013-01-13 04:21:30 +09:00
|
|
|
},
|
2013-03-14 04:24:55 +09:00
|
|
|
{ "id": "annotation-as",
|
|
|
|
"file": "pdfs/annotation-as.pdf",
|
|
|
|
"md5": "e51500c8adc9edcdcc8ebc6a575c90ab",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-07-03 04:27:06 +09:00
|
|
|
{ "id": "bug888437",
|
|
|
|
"file": "pdfs/bug888437.pdf",
|
|
|
|
"md5": "93370cd589a08732a05601441c899bcb",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-08-20 08:33:20 +09:00
|
|
|
{ "id": "issue3584",
|
|
|
|
"file": "pdfs/issue3584.pdf",
|
|
|
|
"md5": "7a00646865a840eefc76f05c588b60ce",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "CFF font that is drawn with clipping."
|
|
|
|
},
|
2013-06-01 06:13:23 +09:00
|
|
|
{ "id": "annotation-tx",
|
|
|
|
"file": "pdfs/annotation-tx.pdf",
|
|
|
|
"md5": "56321ea830be9c4f8437ca17ac535b2d",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
2015-12-19 06:29:22 +09:00
|
|
|
"annotations": true,
|
2013-06-01 06:13:23 +09:00
|
|
|
"about": "Text widget annotation witout appearance streams."
|
|
|
|
},
|
2013-03-19 21:37:31 +09:00
|
|
|
{ "id": "gesamt",
|
|
|
|
"file": "pdfs/gesamt.pdf",
|
2013-12-17 09:37:10 +09:00
|
|
|
"md5": "743aaa6f46ed0a42864f079d632d942e",
|
2013-03-19 21:37:31 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-03 13:38:40 +09:00
|
|
|
{ "id": "javauninstall-7",
|
2015-09-16 20:52:57 +09:00
|
|
|
"file": "pdfs/javauninstall-7r.pdf",
|
|
|
|
"md5": "c0089082a86826fa0195eeeb73f7f895",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
2013-03-03 13:38:40 +09:00
|
|
|
},
|
2013-02-23 20:46:20 +09:00
|
|
|
{ "id": "jst2007-5",
|
|
|
|
"file": "pdfs/JST2007-5.pdf",
|
|
|
|
"md5": "9efa6c37fc771b36a60535036d1910bb",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 2,
|
|
|
|
"lastPage": 2,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-24 17:48:39 +09:00
|
|
|
{ "id": "kdchart",
|
|
|
|
"file": "pdfs/kdchart.pdf",
|
|
|
|
"md5": "2556a1d197d7cbe1f5edfc5c3557582b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-16 19:44:54 +09:00
|
|
|
{ "id": "mao",
|
|
|
|
"file": "pdfs/mao.pdf",
|
|
|
|
"md5": "797093d67c4d4d4231ac6e1fb66bf6c3",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-13 04:21:30 +09:00
|
|
|
{ "id": "noembed-identity",
|
|
|
|
"file": "pdfs/noembed-identity.pdf",
|
|
|
|
"md5": "05d3803b6c22451e18cb60d8d8c75c0c",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2013-01-12 10:10:09 +09:00
|
|
|
},
|
2013-07-02 23:46:14 +09:00
|
|
|
{ "id": "bug887152",
|
|
|
|
"file": "pdfs/bug887152.pdf",
|
|
|
|
"md5": "783a3e7b1de2cf40a47ffe1f36a41d4f",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-03-10 21:07:09 +09:00
|
|
|
{ "id": "bug1140761",
|
|
|
|
"file": "pdfs/bug1140761.pdf",
|
|
|
|
"md5": "b74eced7634d4f248dc6265f8225d432",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-08-19 07:57:52 +09:00
|
|
|
{ "id": "bug1011159",
|
|
|
|
"file": "pdfs/bug1011159.pdf",
|
|
|
|
"md5": "4532e22deb92d4cd2992d0cfe255582a",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Type3 font with negative HScale and font size"
|
|
|
|
},
|
2014-10-05 07:12:47 +09:00
|
|
|
{ "id": "bug1077808",
|
|
|
|
"file": "pdfs/bug1077808.pdf",
|
|
|
|
"md5": "4a4bfc27e3fafe2f74e7a4a4cd04b8dc",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Inline image with ASCII85Decode filter."
|
|
|
|
},
|
2014-12-09 09:07:38 +09:00
|
|
|
{ "id": "bug1108753",
|
|
|
|
"file": "pdfs/bug1108753.pdf",
|
|
|
|
"md5": "a7aaf92d55b4602afb0ca3d75198b56b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-02-14 05:17:27 +09:00
|
|
|
{ "id": "issue5726",
|
|
|
|
"file": "pdfs/issue5726.pdf",
|
|
|
|
"md5": "f52f31ad3da316b599cade875ab049db",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-05-02 08:42:25 +09:00
|
|
|
{ "id": "bug816075",
|
|
|
|
"file": "pdfs/bug816075.pdf",
|
|
|
|
"md5": "7ec87c115c1f9ec41234cc7002555e82",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "A CIDFontType0 font with a CFF font that isn't actually CID."
|
|
|
|
},
|
2013-10-01 13:40:28 +09:00
|
|
|
{ "id": "bug921409",
|
|
|
|
"file": "pdfs/bug921409.pdf",
|
|
|
|
"md5": "920e88dde0f5436ebe0df0281e1c30ca",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "A CIDFontType0 font that actually has a Type1C font file."
|
|
|
|
},
|
2013-01-24 01:15:02 +09:00
|
|
|
{ "id": "noembed-identity-2",
|
|
|
|
"file": "pdfs/noembed-identity-2.pdf",
|
2013-01-30 02:46:17 +09:00
|
|
|
"md5": "13b7d9ab9579d45c10bc8d499d087f21",
|
2013-01-24 01:15:02 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-17 00:13:34 +09:00
|
|
|
{ "id": "noembed-jis7",
|
|
|
|
"file": "pdfs/noembed-jis7.pdf",
|
|
|
|
"md5": "a0f6cf5a830f23d0c35994a6aaf92b3d",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "noembed-eucjp",
|
|
|
|
"file": "pdfs/noembed-eucjp.pdf",
|
|
|
|
"md5": "d270f2d46db99b70235b4d37cbc313ad",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
|
|
|
{ "id": "noembed-sjis",
|
|
|
|
"file": "pdfs/noembed-sjis.pdf",
|
|
|
|
"md5": "51f9d150bf4afe498019b3029d451072",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-02 15:28:27 +09:00
|
|
|
{ "id": "ohkubo-ss04",
|
|
|
|
"file": "pdfs/ohkubo-SS04.pdf",
|
|
|
|
"md5": "b8c334073ff5be74fac1f36130943ea5",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-03-15 06:06:44 +09:00
|
|
|
{ "id": "issue2770",
|
|
|
|
"file": "pdfs/issue2770.pdf",
|
|
|
|
"md5": "36070d756d06eaa35c2227efb069fb1b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Has a 4 bit per component image with mask and decode."
|
|
|
|
},
|
2013-06-26 02:33:53 +09:00
|
|
|
{ "id": "issue2984",
|
|
|
|
"file": "pdfs/issue2984.pdf",
|
2013-12-17 09:37:10 +09:00
|
|
|
"md5": "a8e81e7b7c6d8b0ec26bbfee9954f110",
|
2013-06-26 02:33:53 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq",
|
|
|
|
"lastPage": 1,
|
|
|
|
"about": "Type3 fonts with lots of switching between them."
|
|
|
|
},
|
2013-05-01 07:29:25 +09:00
|
|
|
{ "id": "bug808084",
|
|
|
|
"file": "pdfs/bug808084.pdf",
|
|
|
|
"md5": "b1c400de699af29ea3f1983bb26870ab",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-04-11 01:51:06 +09:00
|
|
|
{ "id": "issue3064",
|
|
|
|
"file": "pdfs/issue3064.pdf",
|
|
|
|
"md5": "0307415b7d69b13acaf8bd4285d9544b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "True type font with encoding dict with no base encoding but with differences."
|
|
|
|
},
|
2014-10-19 05:29:21 +09:00
|
|
|
{ "id": "issue5421",
|
|
|
|
"file": "pdfs/issue5421.pdf",
|
|
|
|
"md5": "273f6813758a2349090003c7c8a0d85e",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Invisible Type3 font used for text selection and searching."
|
|
|
|
},
|
2015-03-03 20:58:20 +09:00
|
|
|
{ "id": "issue5421-text",
|
|
|
|
"file": "pdfs/issue5421.pdf",
|
|
|
|
"md5": "273f6813758a2349090003c7c8a0d85e",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "text"
|
|
|
|
},
|
2015-09-05 19:29:16 +09:00
|
|
|
{ "id": "pr4922",
|
|
|
|
"file": "pdfs/pr4922.pdf",
|
|
|
|
"md5": "178a55510931bc6ecd2f0f848a8fcacc",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Type3 font with a missing /CharProcs resource."
|
|
|
|
},
|
2015-02-05 23:25:23 +09:00
|
|
|
{ "id": "issue5701",
|
|
|
|
"file": "pdfs/issue5701.pdf",
|
|
|
|
"md5": "7ec476aee12e8bd6be79140223d329c1",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-09-09 22:29:31 +09:00
|
|
|
{ "id": "issue5280",
|
|
|
|
"file": "pdfs/issue5280.pdf",
|
|
|
|
"md5": "0ea1230e2964e74cb6db063a89b78803",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "DecodeParams can be an indirect object"
|
|
|
|
},
|
2013-06-22 07:03:03 +09:00
|
|
|
{ "id": "bug878194",
|
|
|
|
"file": "pdfs/bug878194.pdf",
|
|
|
|
"md5": "c616b21fd2a1a65acc2de0f41e59a8b5",
|
|
|
|
"link": "true",
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 4,
|
|
|
|
"lastPage": 4,
|
2014-10-23 21:19:05 +09:00
|
|
|
"type": "eq"
|
2013-06-22 07:03:03 +09:00
|
|
|
},
|
2013-03-02 11:02:35 +09:00
|
|
|
{ "id": "p020121130574743273239",
|
|
|
|
"file": "pdfs/P020121130574743273239.pdf",
|
|
|
|
"md5": "271b65885d42d174cbc597ca89becb1a",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-02-26 21:06:07 +09:00
|
|
|
{ "id": "sfaa_japanese",
|
|
|
|
"file": "pdfs/SFAA_Japanese.pdf",
|
|
|
|
"md5": "b961bbc0d05bdd6d91041bca60ec8e8b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-02-08 21:29:22 +09:00
|
|
|
{ "id": "vertical",
|
|
|
|
"file": "pdfs/vertical.pdf",
|
|
|
|
"md5": "8a74d33504701edcefeef2afd022765e",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-03 07:07:13 +09:00
|
|
|
{ "id": "issue3438",
|
|
|
|
"file": "pdfs/issue3438.pdf",
|
|
|
|
"md5": "5aa3340b0920b65a377f697587668f89",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-10-16 05:56:29 +09:00
|
|
|
{ "id": "bug1072164",
|
|
|
|
"file": "pdfs/bug1072164.pdf",
|
|
|
|
"md5": "cfee3c51e8464aa44218f4eaf27e084b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "CMYK jpeg with mask"
|
|
|
|
},
|
2013-06-26 06:22:03 +09:00
|
|
|
{ "id": "bug886717",
|
|
|
|
"file": "pdfs/bug886717.pdf",
|
|
|
|
"md5": "8ba614192797a1324765610231a1bc9d",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load",
|
|
|
|
"about": "Annotation that has no resources."
|
|
|
|
},
|
2013-05-17 01:39:39 +09:00
|
|
|
{ "id": "issue3263",
|
2015-11-14 00:47:02 +09:00
|
|
|
"file": "pdfs/issue3263r.pdf",
|
|
|
|
"md5": "0ef82d7a6998c3919cf5595dd47b31a6",
|
2013-05-17 01:39:39 +09:00
|
|
|
"rounds": 1,
|
2015-11-14 00:47:02 +09:00
|
|
|
"link": false,
|
2013-05-17 01:39:39 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-04-04 02:36:09 +09:00
|
|
|
{ "id": "issue2761",
|
|
|
|
"file": "pdfs/issue2761.pdf",
|
|
|
|
"md5": "35df0b8cff4afec0c08f08c6a5bc9857",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Image with indexed colorspace that has a base lab colorspace."
|
|
|
|
},
|
2013-03-10 11:21:44 +09:00
|
|
|
{ "id": "20130226130259",
|
|
|
|
"file": "pdfs/20130226130259.pdf",
|
|
|
|
"md5": "c33e90a1b369c508573023d2434b950f",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-01-12 10:10:09 +09:00
|
|
|
{ "id": "issue2099-1",
|
|
|
|
"file": "pdfs/issue2099-1.pdf",
|
|
|
|
"md5": "c7eca682d70a976dfc4b7e64d3e9f1ce",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2013-02-28 09:56:12 +09:00
|
|
|
},
|
2013-05-17 01:21:47 +09:00
|
|
|
{ "id": "issue3207",
|
2015-11-15 21:27:48 +09:00
|
|
|
"file": "pdfs/issue3207r.pdf",
|
|
|
|
"md5": "617bcf475c109365a113cf9fb6711b0a",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2013-05-17 01:21:47 +09:00
|
|
|
},
|
2014-06-14 08:22:22 +09:00
|
|
|
{ "id": "issue3591",
|
|
|
|
"file": "pdfs/issue3591.pdf",
|
|
|
|
"md5": "f76b3e9d1a44621b73063cf10556c6ff",
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "JPX with 0xFF55 marker"
|
|
|
|
},
|
2014-10-22 17:40:50 +09:00
|
|
|
{ "id": "bug865858",
|
|
|
|
"file": "pdfs/bug865858.pdf",
|
|
|
|
"md5": "7a81bd987dc1d95e9a0be46b7c3f2e18",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "JPX packets"
|
|
|
|
},
|
2013-06-26 02:35:34 +09:00
|
|
|
{ "id": "bug766138",
|
|
|
|
"file": "pdfs/bug766138.pdf",
|
|
|
|
"md5": "b171f5cf8d9834348112fba60ee54f8c",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-07-12 03:33:29 +09:00
|
|
|
{ "id": "bug889327",
|
|
|
|
"file": "pdfs/bug889327.pdf",
|
|
|
|
"md5": "b45cd63419241c40731f98d0e1dac082",
|
|
|
|
"link": true,
|
|
|
|
"lastPage": 1,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-02 07:13:31 +09:00
|
|
|
{ "id": "issue1171.pdf",
|
|
|
|
"file": "pdfs/issue1171.pdf",
|
|
|
|
"md5": "2a6188a42a5874c7874b88eebd4acaf0",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-08-11 17:35:56 +09:00
|
|
|
{ "id": "issue3521.pdf",
|
|
|
|
"file": "pdfs/issue3521.pdf",
|
|
|
|
"md5": "df95d31443e20a38efa29c3a635a045b",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Support for CMap GBKp-EUC-H"
|
|
|
|
},
|
2013-02-28 09:56:12 +09:00
|
|
|
{ "id": "issue2829",
|
|
|
|
"file": "pdfs/issue2829.pdf",
|
|
|
|
"md5": "f32b28cf8792f6ccc470446bfbb38584",
|
|
|
|
"link": true,
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2012-12-27 16:35:25 +09:00
|
|
|
},
|
2013-03-18 22:06:59 +09:00
|
|
|
{ "id": "issue2956",
|
|
|
|
"file": "pdfs/issue2956.pdf",
|
|
|
|
"md5": "d8f68cbbb4bf54cde9f7f878acb6d7cd",
|
|
|
|
"rounds": 1,
|
2013-11-02 06:30:28 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-09 02:38:36 +09:00
|
|
|
{ "id": "issue2799",
|
|
|
|
"file": "pdfs/issue2799.pdf",
|
|
|
|
"md5": "3d3224eae54bbae5fc76224a2af49486",
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-02 06:30:28 +09:00
|
|
|
{ "id": "issue3025",
|
|
|
|
"file": "pdfs/issue3025.pdf",
|
|
|
|
"md5": "8e4e8eacbd7c4c248deeca0ec49d38da",
|
|
|
|
"rounds": 1,
|
2013-03-18 22:06:59 +09:00
|
|
|
"type": "eq"
|
|
|
|
},
|
2012-12-27 16:35:25 +09:00
|
|
|
{ "id": "issue2177-eq",
|
|
|
|
"file": "pdfs/issue2177.pdf",
|
|
|
|
"md5": "48a808278bf31de8414c4e03ecd0900a",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2013-06-25 00:21:12 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue3384",
|
|
|
|
"file": "pdfs/issue3384.pdf",
|
|
|
|
"md5": "57e31e83c165f16609528ad5ec5825ba",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
2013-08-09 02:02:11 +09:00
|
|
|
},
|
2013-04-26 04:26:42 +09:00
|
|
|
{ "id": "calgray",
|
|
|
|
"file": "pdfs/calgray.pdf",
|
|
|
|
"md5": "ee784999bfa1ed373f55cdabbb580df1",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-03-18 03:38:00 +09:00
|
|
|
{ "id": "calrgb",
|
|
|
|
"file": "pdfs/calrgb.pdf",
|
2014-08-16 17:37:52 +09:00
|
|
|
"md5": "625068e9a7dd80e4f70b24ce97b3ec5c",
|
2014-03-18 03:38:00 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 8,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-18 22:48:06 +09:00
|
|
|
{ "id": "bug900822",
|
|
|
|
"file": "pdfs/bug900822.pdf",
|
|
|
|
"md5": "70e2a3c5922574eeda169c955cf9d084",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
|
|
|
},
|
2013-08-09 02:02:11 +09:00
|
|
|
{ "id": "issue2853",
|
|
|
|
"file": "pdfs/issue2853.pdf",
|
|
|
|
"md5": "9f0ad95ef0b243ee8813c4eca0f7a042",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
2013-09-27 03:49:02 +09:00
|
|
|
},
|
2014-04-25 01:48:18 +09:00
|
|
|
{ "id": "issue4668",
|
|
|
|
"file": "pdfs/issue4668.pdf",
|
|
|
|
"md5": "a749d5ca995ad745411406d29156b04e",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-09-27 03:49:02 +09:00
|
|
|
{ "id": "issue3666",
|
|
|
|
"file": "pdfs/issue3666.pdf",
|
2016-01-12 05:24:50 +09:00
|
|
|
"md5": "cbcaf533d8a4e825d7f12cb4f137babd",
|
2013-09-27 03:49:02 +09:00
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 2,
|
|
|
|
"type": "eq"
|
2013-11-07 02:06:00 +09:00
|
|
|
},
|
2014-06-03 22:56:16 +09:00
|
|
|
{ "id": "issue4883",
|
|
|
|
"file": "pdfs/issue4883.pdf",
|
|
|
|
"md5": "2fac0d9a189ca5fcef8626153d050be8",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "CMYK JPEG with Decode"
|
|
|
|
},
|
2013-11-14 04:45:59 +09:00
|
|
|
{ "id": "bug903856",
|
|
|
|
"file": "pdfs/bug903856.pdf",
|
|
|
|
"md5": "286eaa9d06a5809f4f08f2093cef8f3f",
|
|
|
|
"rounds": 1,
|
|
|
|
"firstPage": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2013-11-07 02:06:00 +09:00
|
|
|
{ "id": "issue3205",
|
2015-09-10 23:59:30 +09:00
|
|
|
"file": "pdfs/issue3205r.pdf",
|
|
|
|
"md5": "379cd3f2f0d651215c6df5ac6182d013",
|
2013-11-07 02:06:00 +09:00
|
|
|
"rounds": 1,
|
2015-09-10 23:59:30 +09:00
|
|
|
"link": false,
|
2013-11-07 02:06:00 +09:00
|
|
|
"type": "eq"
|
2014-02-06 03:58:14 +09:00
|
|
|
},
|
2015-08-04 00:34:30 +09:00
|
|
|
{ "id": "issue4227",
|
|
|
|
"file": "pdfs/coons-allflags-withfunction.pdf",
|
|
|
|
"md5": "c5f79c24bf9eb66698be0e4ecaa1bdf8",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-10-23 22:15:06 +09:00
|
|
|
{ "id": "issue4575",
|
|
|
|
"file": "pdfs/issue4575.pdf",
|
|
|
|
"md5": "9ea15032afd330916a4d7475cbdb55f6",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": false,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-08-05 06:55:55 +09:00
|
|
|
{ "id": "issue6305-part-1",
|
|
|
|
"file": "pdfs/tensor-allflags-withfunction.pdf",
|
|
|
|
"md5": "b47260d50f6a0f26aaccbfa3b7176ae8",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-02-06 03:58:14 +09:00
|
|
|
{ "id": "issue4246",
|
|
|
|
"file": "pdfs/issue4246.pdf",
|
|
|
|
"md5": "ed81787b83cc317c9f049643b853bea3",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Image mask in higher resolution than the image itself"
|
2014-03-19 21:25:46 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue4436",
|
2015-09-10 19:49:41 +09:00
|
|
|
"file": "pdfs/issue4436r.pdf",
|
|
|
|
"md5": "4e43d692d213f56674fcac92110c7364",
|
2014-03-19 21:25:46 +09:00
|
|
|
"rounds": 1,
|
2015-09-10 19:49:41 +09:00
|
|
|
"link": false,
|
2014-03-19 21:25:46 +09:00
|
|
|
"type": "eq"
|
2014-06-13 09:37:41 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue4926",
|
|
|
|
"file": "pdfs/issue4926.pdf",
|
|
|
|
"md5": "ed881c8ea2f9bc4be94ecb7f2b2c149b",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
2014-12-18 06:42:06 +09:00
|
|
|
},
|
2014-12-30 06:28:03 +09:00
|
|
|
{ "id": "issue5592",
|
|
|
|
"file": "pdfs/issue5592.pdf",
|
|
|
|
"md5": "a0750f95afa80c880f7966df7062616c",
|
|
|
|
"rounds": 1,
|
|
|
|
"link": true,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-11-25 16:44:06 +09:00
|
|
|
{ "id": "issue6296.pdf",
|
|
|
|
"file": "pdfs/issue6296.pdf",
|
|
|
|
"md5": "734e191aab1372e6fd7523ca7751fcf0",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2015-12-24 02:17:23 +09:00
|
|
|
{ "id": "issue6298.pdf",
|
|
|
|
"file": "pdfs/issue6298.pdf",
|
|
|
|
"md5": "214340be34f463611fc3127ad0695034",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
|
|
|
},
|
2014-12-18 06:42:06 +09:00
|
|
|
{ "id": "issue5549.pdf",
|
|
|
|
"file": "pdfs/issue5549.pdf",
|
|
|
|
"md5": "6c36df6ebc583c9e18aad0ad00d257b8",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Free image obtained from www.unsplash.com"
|
2014-12-18 06:46:47 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue5475.pdf",
|
|
|
|
"file": "pdfs/issue5475.pdf",
|
|
|
|
"md5": "bda962373570ac4dfe0fbd1ad4f0d9ef",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Free image obtained from www.unsplash.com"
|
2014-12-19 05:26:02 +09:00
|
|
|
},
|
2014-12-26 05:04:01 +09:00
|
|
|
{ "id": "annotation-border-styles.pdf",
|
|
|
|
"file": "pdfs/annotation-border-styles.pdf",
|
|
|
|
"md5": "22930fc09c7386e1131b14d936e554af",
|
|
|
|
"rounds": 1,
|
2015-12-19 06:29:22 +09:00
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
2014-12-26 05:04:01 +09:00
|
|
|
},
|
2014-12-19 05:26:02 +09:00
|
|
|
{ "id": "issue5481.pdf",
|
|
|
|
"file": "pdfs/issue5481.pdf",
|
|
|
|
"md5": "cf00bd25b15b7e23542b48a626585c36",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"about": "Free image obtained from www.unsplash.com"
|
2015-02-10 07:32:16 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue5567",
|
|
|
|
"file": "pdfs/issue5567.pdf",
|
|
|
|
"md5": "d5b37f8bf1b3aafa1b4fcf19ebdc7c74",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq"
|
2015-04-04 15:15:31 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue5909",
|
|
|
|
"file": "pdfs/issue5909.pdf",
|
|
|
|
"md5": "51a724136c0c10008bd061a78ea4b8fc",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2015-07-11 03:18:53 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue6069",
|
|
|
|
"file": "pdfs/issue6069.pdf",
|
|
|
|
"md5": "d0ad8871f4116bca8e39513ffa8b7d8e",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2015-07-11 19:15:43 +09:00
|
|
|
},
|
2016-02-23 08:21:28 +09:00
|
|
|
{ "id": "issue7014",
|
|
|
|
"file": "pdfs/issue7014.pdf",
|
|
|
|
"md5": "b410891d7a01af791364e9c530d61b17",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2015-12-23 05:31:56 +09:00
|
|
|
{ "id": "annotation-link-text-popup",
|
|
|
|
"file": "pdfs/annotation-link-text-popup.pdf",
|
|
|
|
"md5": "4bbf56e81d47232de5f305124ab0ba27",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
|
|
|
{ "id": "annotation-text-without-popup",
|
|
|
|
"file": "pdfs/annotation-text-without-popup.pdf",
|
|
|
|
"md5": "7c2d241babe00139e34b9f8369a909eb",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true,
|
|
|
|
"about": "Text annotation without a separate Popup annotation"
|
|
|
|
},
|
2015-12-28 08:33:41 +09:00
|
|
|
{ "id": "annotation-underline",
|
|
|
|
"file": "pdfs/annotation-underline.pdf",
|
|
|
|
"md5": "c24b3aba771de52f9bac25e854c39458",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2015-12-29 23:09:28 +09:00
|
|
|
{ "id": "annotation-strikeout",
|
|
|
|
"file": "pdfs/annotation-strikeout.pdf",
|
|
|
|
"md5": "6624e6b5bedd2f2855b6ab12bbf93c57",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2015-12-30 23:28:26 +09:00
|
|
|
{ "id": "annotation-squiggly",
|
|
|
|
"file": "pdfs/annotation-squiggly.pdf",
|
|
|
|
"md5": "38661e731ac6c525af5894d2d20c6e71",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2016-01-01 23:31:46 +09:00
|
|
|
{ "id": "annotation-highlight",
|
|
|
|
"file": "pdfs/annotation-highlight.pdf",
|
|
|
|
"md5": "e13e198e3a69c32dc9ebdc704d3105e1",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2016-02-15 05:27:53 +09:00
|
|
|
{ "id": "annotation-fileattachment",
|
|
|
|
"file": "pdfs/annotation-fileattachment.pdf",
|
|
|
|
"md5": "d20ecee4b53c81b2dd44c8715a1b4a83",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "eq",
|
|
|
|
"annotations": true
|
|
|
|
},
|
2015-07-11 19:15:43 +09:00
|
|
|
{ "id": "issue6108",
|
|
|
|
"file": "pdfs/issue6108.pdf",
|
|
|
|
"md5": "8961cb55149495989a80bf0487e0f076",
|
|
|
|
"rounds": 1,
|
|
|
|
"type": "load"
|
2016-02-10 01:09:17 +09:00
|
|
|
},
|
|
|
|
{ "id": "issue6961",
|
|
|
|
"file": "pdfs/issue6961.pdf",
|
|
|
|
"md5": "a80e4357a8fda758d96c2c76f2980b03",
|
|
|
|
"link": false,
|
|
|
|
"rounds": 1,
|
|
|
|
"lastPage": 1,
|
|
|
|
"type": "load"
|
Initial import of first test harness
The harness (test.py) operates as follows. First it locates executable browsers
(or symlinks or scripts) named "[browser][version]", e.g. "firefox4".
It then launches the located browsers and asks them to load the file
test_slave.html. At the same time, test.py sets up an HTTP server on
localhost:8080 (there's a race condition here currently ;). After
test_slave loads in the browser(s), it fetches the task manifest
(test_manifest.json). The entries in the manifest specify which PDF
to load and how many times to cycle through page rendering. This will
probably evolve over time. test_slave then performs the requested
tasks and POSTs the results back to test.py, which saves them. When
all the results of for a task are in, test.py checks them.
There are three types of tests currently. "==" tests compare the
rendering of a PDF against a master copy. This is not yet implemented
because setting up a master copy is complicated. "fbf" tests render
all a PDF's pages, then go back to page 1 and render all pages a
second time. The renderings from the first round must match the ones
from the second round. "load" tests just check that a PDF's pages
load without errors.
Currently the test harness will only launch a "firefox4" target. This
can be a bash script in your pdf.js checkout, pdf.js/firefox4,
something like the following
#!/bin/bash
dist="/path/to/firefox4/installation"
profile=`mktemp -dt 'pdf.js-test-ff-profile-XXXXXXXXXX'`
$dist/firefox -no-remote -profile $profile $*
rm -rf $profile
(Yes, this script doesn't clean up properly on early termination.)
It's possible to run the tests in a normal browsing session, but that
might be annoying. With that set up, run the harness like so
python test.py
If all goes well, you'll see all "TEST-PASS" messages printed to
stdout. If something goes wrong, you'll see "TEST-UNEXPECTED-FAIL"
printed to stdout.
2011-06-19 10:09:21 +09:00
|
|
|
}
|
|
|
|
]
|