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

Side by Side Diff: tests/ppapi_bad/ppapi_bad.html

Issue 6452010: Remove the x-ppapi-nacl-srpc and x-nacl-srpc mime types in favor of the singl... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/photo/photo.html ('k') | tests/ppapi_core/ppapi_core.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <!-- Copyright 2011 Google Inc. All rights reserved. --> 4 <!-- Copyright 2011 Google Inc. All rights reserved. -->
5 <head> 5 <head>
6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> 6 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
7 <META HTTP-EQUIV="Expires" CONTENT="-1" /> 7 <META HTTP-EQUIV="Expires" CONTENT="-1" />
8 </head> 8 </head>
9 <h1>Native Client: Bad Nexes</h1> 9 <h1>Native Client: Bad Nexes</h1>
10 <body> 10 <body>
11 The following error messages should appear on the JavaScript console.<br> 11 The following error messages should appear on the JavaScript console.<br>
12 12
13 <br>NaCl module load failed: not an ELF executable: bad magic number.<br> 13 <br>NaCl module load failed: not an ELF executable: bad magic number.<br>
14 <embed id="naclModule" 14 <embed id="naclModule"
15 name="naclModule" 15 name="naclModule"
16 width=100 height=20 16 width=100 height=20
17 src="ppapi_bad.html" 17 src="ppapi_bad.html"
18 style="background-color:gray" 18 style="background-color:gray"
19 type="application/x-ppapi-nacl-srpc" /> 19 type="application/x-nacl" />
20 <br>NaCl module load failed: could not load url.<br> 20 <br>NaCl module load failed: could not load url.<br>
21 <embed id="naclModule" 21 <embed id="naclModule"
22 name="naclModule" 22 name="naclModule"
23 width=100 height=20 23 width=100 height=20
24 src="http://www.google.com/crossorigin.nexe" 24 src="http://www.google.com/crossorigin.nexe"
25 style="background-color:gray" 25 style="background-color:gray"
26 type="application/x-ppapi-nacl-srpc" /> 26 type="application/x-nacl" />
27 <br>NaCl module load failed: could not load url.<br> 27 <br>NaCl module load failed: could not load url.<br>
28 <embed id="naclModule" 28 <embed id="naclModule"
29 name="naclModule" 29 name="naclModule"
30 width=100 height=20 30 width=100 height=20
31 src="doesnotexist.nexe" 31 src="doesnotexist.nexe"
32 style="background-color:gray" 32 style="background-color:gray"
33 type="application/x-ppapi-nacl-srpc" /> 33 type="application/x-nacl" />
34 <br>NaCl module load failed: could not load manifest url.<br> 34 <br>NaCl module load failed: could not load manifest url.<br>
35 <embed id="naclModule" 35 <embed id="naclModule"
36 name="naclModule" 36 name="naclModule"
37 width=100 height=20 37 width=100 height=20
38 nacl="http://www.google.com/crossorigin.manifest" 38 nacl="http://www.google.com/crossorigin.manifest"
39 style="background-color:gray" 39 style="background-color:gray"
40 type="application/x-ppapi-nacl-srpc" /> 40 type="application/x-nacl" />
41 <br>NaCl module load failed: could not load manifest url.<br> 41 <br>NaCl module load failed: could not load manifest url.<br>
42 <embed id="naclModule" 42 <embed id="naclModule"
43 name="naclModule" 43 name="naclModule"
44 width=100 height=20 44 width=100 height=20
45 nacl="doesnotexist.manifest" 45 nacl="doesnotexist.manifest"
46 style="background-color:gray" 46 style="background-color:gray"
47 type="application/x-ppapi-nacl-srpc" /> 47 type="application/x-nacl" />
48 <br>NaCl module load failed: could not read manifest file.<br> 48 <br>NaCl module load failed: could not read manifest file.<br>
49 <embed id="naclModule" 49 <embed id="naclModule"
50 name="naclModule" 50 name="naclModule"
51 width=100 height=20 51 width=100 height=20
52 nacl="ppapi_bad.html" 52 nacl="ppapi_bad.html"
53 style="background-color:gray" 53 style="background-color:gray"
54 type="application/x-ppapi-nacl-srpc" /> 54 type="application/x-nacl" />
55 <br>NaCl module proxy failed: could not initialize module.<br> 55 <br>NaCl module proxy failed: could not initialize module.<br>
56 <embed id="naclModule" 56 <embed id="naclModule"
57 name="naclModule" 57 name="naclModule"
58 width=100 height=20 58 width=100 height=20
59 src="ppapi_bad.nexe" 59 src="ppapi_bad.nexe"
60 style="background-color:gray" 60 style="background-color:gray"
61 type="application/x-ppapi-nacl-srpc" /> 61 type="application/x-nacl" />
62 <br><br> 62 <br><br>
63 </body> 63 </body>
64 </html> 64 </html>
OLDNEW
« no previous file with comments | « tests/photo/photo.html ('k') | tests/ppapi_core/ppapi_core.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698