Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: functional/pdf.py

Issue 6297014: Adding web pdf files to the tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/test/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« functional/find_in_page.py ('K') | « functional/find_in_page.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'):
« functional/find_in_page.py ('K') | « functional/find_in_page.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698