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

Unified Diff: functional/pdf.py

Issue 6359012: Adding pdf file to exceptions (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
« no previous file with comments | « no previous file | 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 72389)
+++ functional/pdf.py (working copy)
@@ -43,10 +43,11 @@
pdf_files = glob.glob(os.path.join(pdf_files_path, '*.pdf'))
# Add a pdf file over http:// to the list of pdf files.
# crbug.com/70454
- pdf_files += ['http://www.irs.gov/pub/irs-pdf/fw4.pdf']
+ pdf_files += ['http://www.irs.gov/pub/irs-pdf/fw9.pdf']
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'):
+ # crbug.com/70811
+ if os.path.basename(pdf_file) in ('nullip.pdf', 'sample.pdf', 'fw4.pdf'):
continue
url = self.GetFileURLForPath(pdf_file)
self.AppendTab(pyauto.GURL(url))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698