Chromium Code Reviews| Index: functional/pdf.py |
| =================================================================== |
| --- functional/pdf.py (revision 72215) |
| +++ functional/pdf.py (working copy) |
| @@ -41,6 +41,9 @@ |
| old_dmp_files = glob.glob(os.path.join(breakpad_folder, '*.dmp')) |
| pdf_files_path = os.path.join(self.DataDir(), 'pyauto_private', 'pdf') |
| pdf_files = glob.glob(os.path.join(pdf_files_path, '*.pdf')) |
| + # Adding a web pdf file url to the list of pdf files. |
|
Nirnimesh
2011/01/22 01:42:26
Add pdf files over http://
|
| + # crbug.com/70454 |
| + pdf_files = pdf_files + ['http://www.irs.gov/pub/irs-pdf/fw4.pdf'] |
|
Nirnimesh
2011/01/22 01:42:26
pdf_files += ['http...']
|
| for pdf_file in pdf_files: |
| # Some pdfs cause known crashes. Exclude them. crbug.com/63549 |
| if os.path.basename(pdf_file) in ('nullip.pdf', 'sample.pdf'): |