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 2013 The Chromium Authors. All rights reserved. | 5 Copyright 2013 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 tester.loadErrorsAreOK(); | 190 tester.loadErrorsAreOK(); |
191 declareTests(tester); | 191 declareTests(tester); |
192 tester.run(); | 192 tester.run(); |
193 } | 193 } |
194 //]]> | 194 //]]> |
195 </script> | 195 </script> |
196 | 196 |
197 <!-- The tests will create and remove embeds from this div. --> | 197 <!-- The tests will create and remove embeds from this div. --> |
198 <div id="embeds"></div> | 198 <div id="embeds"></div> |
199 | 199 |
200 <!-- These two embeds are not automatically tested - visual inspection only. --> | |
201 | |
202 <embed id="cross_manifest_pdf" | |
203 width=100 height=20 | |
204 src="http://www.google.com/crossorigin.manifest" | |
205 style="background-color:gray" | |
206 type="application/pdf" /> | |
207 | |
208 <!-- This load would have succeeded if the NEXE was from a chrome-extension | |
209 URL and NaCl had been registered as handling the PDF MIME type using | |
210 the nacl_modules attribute in a Chrome extension manifest. --> | |
211 | |
212 <embed id="cross_origin_pdf" | |
213 width=100 height=20 | |
214 src="ppapi_bad_crossorigin.nmf" | |
215 style="background-color:gray" | |
216 type="application/pdf" /> | |
217 | |
218 <script type="text/javascript"> | 200 <script type="text/javascript"> |
219 //<![CDATA[ | 201 //<![CDATA[ |
220 runTests(); | 202 runTests(); |
221 //]]> | 203 //]]> |
222 </script> | 204 </script> |
223 </body> | 205 </body> |
224 </html> | 206 </html> |
OLD | NEW |