summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2016-10-09 14:33:09 -0400
committerMatt A. Tobin <email@mattatobin.com>2016-10-09 14:33:09 -0400
commit2fd8d1d6c6ecd00e6d485dab2dacea3ee70bf51a (patch)
tree484d825e17f0e5df027263c5f7def6bc079ed544 /python
parent15649bc602a62069fea42b2484942b49e3883f7e (diff)
downloadpalemoon-gre-2fd8d1d6c6ecd00e6d485dab2dacea3ee70bf51a.tar.gz
Oust PDF.js - Part 5: Remove special cases in docshell and dom as well as mozbuild backend tests
Diffstat (limited to 'python')
-rw-r--r--python/mozbuild/mozpack/test/test_chrome_manifest.py2
-rw-r--r--python/mozbuild/mozpack/test/test_files.py4
2 files changed, 0 insertions, 6 deletions
diff --git a/python/mozbuild/mozpack/test/test_chrome_manifest.py b/python/mozbuild/mozpack/test/test_chrome_manifest.py
index 4f8bc8a37..2c72ae178 100644
--- a/python/mozbuild/mozpack/test/test_chrome_manifest.py
+++ b/python/mozbuild/mozpack/test/test_chrome_manifest.py
@@ -39,7 +39,6 @@ class TestManifest(unittest.TestCase):
'skin global classic/1.0 content/skin/classic/ application=foo' +
' os=WINNT',
'',
- 'manifest pdfjs/chrome.manifest',
'resource gre-resources toolkit/res/',
'override chrome://global/locale/netError.dtd' +
' chrome://browser/locale/netError.dtd',
@@ -70,7 +69,6 @@ class TestManifest(unittest.TestCase):
ManifestSkin('', 'global', 'classic/1.0', 'content/skin/classic/'),
ManifestSkin('', 'global', 'classic/1.0', 'content/skin/classic/',
'application=foo', 'os=WINNT'),
- Manifest('', 'pdfjs/chrome.manifest'),
ManifestResource('', 'gre-resources', 'toolkit/res/'),
ManifestOverride('', 'chrome://global/locale/netError.dtd',
'chrome://browser/locale/netError.dtd'),
diff --git a/python/mozbuild/mozpack/test/test_files.py b/python/mozbuild/mozpack/test/test_files.py
index 99bd40b5e..422143c29 100644
--- a/python/mozbuild/mozpack/test/test_files.py
+++ b/python/mozbuild/mozpack/test/test_files.py
@@ -611,8 +611,6 @@ class TestManifestFile(TestWithTmpDir):
f = ManifestFile('chrome')
f.add(ManifestContent('chrome', 'global', 'toolkit/content/global/'))
f.add(ManifestResource('chrome', 'gre-resources', 'toolkit/res/'))
- f.add(ManifestResource('chrome/pdfjs', 'pdfjs', './'))
- f.add(ManifestContent('chrome/pdfjs', 'pdfjs', 'pdfjs'))
f.add(ManifestLocale('chrome', 'browser', 'en-US',
'en-US/locale/browser/'))
@@ -620,8 +618,6 @@ class TestManifestFile(TestWithTmpDir):
self.assertEqual(open(self.tmppath('chrome.manifest')).readlines(), [
'content global toolkit/content/global/\n',
'resource gre-resources toolkit/res/\n',
- 'resource pdfjs pdfjs/\n',
- 'content pdfjs pdfjs/pdfjs\n',
'locale browser en-US en-US/locale/browser/\n',
])