OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
3 <html> | 3 <html> |
4 <!-- | 4 <!-- |
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 5 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
7 found in the LICENSE file. | 7 found in the LICENSE file. |
8 --> | 8 --> |
9 <head> | 9 <head> |
10 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> | 10 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 tester, | 101 tester, |
102 'bad_manifest_uses_nexes', | 102 'bad_manifest_uses_nexes', |
103 'ppapi_bad_manifest_uses_nexes.nmf', | 103 'ppapi_bad_manifest_uses_nexes.nmf', |
104 'NaCl module load failed: manifest: missing \'program\' section.'); | 104 'NaCl module load failed: manifest: missing \'program\' section.'); |
105 | 105 |
106 // 'bad_manifest_bad_files' loads a manifest with a bad 'files' section. | 106 // 'bad_manifest_bad_files' loads a manifest with a bad 'files' section. |
107 badLoadTest( | 107 badLoadTest( |
108 tester, | 108 tester, |
109 'bad_manifest_bad_files', | 109 'bad_manifest_bad_files', |
110 'ppapi_bad_manifest_bad_files.nmf', | 110 'ppapi_bad_manifest_bad_files.nmf', |
111 'NaCl module load failed: manifest: no version of file.txt given for curre
nt arch and no portable version found.'); | 111 // Manifest loader expects either 'url' or 'pnacl-translate' key present. |
| 112 // If neither is found, it complains about the last one. |
| 113 'NaCl module load failed: manifest: file.txt property \'unknown_arch\' doe
s not have required key: \'pnacl-translate\'.'); |
112 | 114 |
113 // 'bad_manifest_nexe_arch' loads a manifest with no program entry for the | 115 // 'bad_manifest_nexe_arch' loads a manifest with no program entry for the |
114 // user's architecture | 116 // user's architecture |
115 badLoadTest( | 117 badLoadTest( |
116 tester, | 118 tester, |
117 'bad_manifest_nexe_arch', | 119 'bad_manifest_nexe_arch', |
118 'ppapi_bad_manifest_nexe_arch.nmf', | 120 'ppapi_bad_manifest_nexe_arch.nmf', |
119 'NaCl module load failed: manifest: no version of program given for curren
t arch and no portable version found.'); | 121 'NaCl module load failed: manifest: no version of program given for curren
t arch and no portable version found.'); |
120 | 122 |
121 ////////////////////////////////////// | 123 ////////////////////////////////////// |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 style="background-color:gray" | 217 style="background-color:gray" |
216 type="application/pdf" /> | 218 type="application/pdf" /> |
217 | 219 |
218 <script type="text/javascript"> | 220 <script type="text/javascript"> |
219 //<![CDATA[ | 221 //<![CDATA[ |
220 runTests(); | 222 runTests(); |
221 //]]> | 223 //]]> |
222 </script> | 224 </script> |
223 </body> | 225 </body> |
224 </html> | 226 </html> |
OLD | NEW |