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

Side by Side Diff: tests/client_translator/translator.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/cdom_perf/cdom_perf.html ('k') | tests/contest_issues/issue42.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 2008 Google Inc. All rights reserved. --> 4 <!-- Copyright 2008 Google Inc. All rights reserved. -->
5 <head> 5 <head>
6 <title>Client Translator Test</title> 6 <title>Client Translator Test</title>
7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> 7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
8 <META HTTP-EQUIV="Expires" CONTENT="-1" /> 8 <META HTTP-EQUIV="Expires" CONTENT="-1" />
9 <script type="application/x-javascript"> 9 <script type="application/x-javascript">
10 //<![CDATA[ 10 //<![CDATA[
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 <table border=5 cellpadding=5% summary="Test status table"> 114 <table border=5 cellpadding=5% summary="Test status table">
115 <tr> 115 <tr>
116 <td><b>General test output</b></td> 116 <td><b>General test output</b></td>
117 </tr> 117 </tr>
118 <tr> 118 <tr>
119 <td valign=top><pre id="GeneralOutput"></pre></td> 119 <td valign=top><pre id="GeneralOutput"></pre></td>
120 </tr> 120 </tr>
121 </table> 121 </table>
122 <div id="status">NO-STATUS</div> 122 <div id="status">NO-STATUS</div>
123 123
124 <embed type="application/x-nacl-srpc" id="translator" name="nacl_module" 124 <embed type="application/x-nacl" id="translator" name="nacl_module"
125 width="0" height="0" src="translator.nexe" /> 125 width="0" height="0" src="translator.nexe" />
126 126
127 <!-- 127 <!--
128 <embed type="application/x-nacl-srpc" id="llc" 128 <embed type="application/x-nacl" id="llc"
129 width="0" height="0" src="llc.nexe" /> 129 width="0" height="0" src="llc.nexe" />
130 130
131 <embed type="application/x-nacl-srpc" id="as" 131 <embed type="application/x-nacl" id="as"
132 width="0" height="0" src="as.nexe" /> 132 width="0" height="0" src="as.nexe" />
133 133
134 <embed type="application/x-nacl-srpc" id="ld" 134 <embed type="application/x-nacl" id="ld"
135 width="0" height="0" src="ld.nexe" /> 135 width="0" height="0" src="ld.nexe" />
136 --> 136 -->
137 137
138 <script type="text/javascript" src="../nacl_js_lib.js"></script> 138 <script type="text/javascript" src="../nacl_js_lib.js"></script>
139 <script type="text/javascript"> 139 <script type="text/javascript">
140 //<![CDATA[ 140 //<![CDATA[
141 var nacllib = new NaclLib("nacl_module", "status", 500); 141 var nacllib = new NaclLib("nacl_module", "status", 500);
142 142
143 // Returns true ("wait") to the NaclLib test driver until the 143 // Returns true ("wait") to the NaclLib test driver until the
144 // translation is complete. I.e., either all translators have 144 // translation is complete. I.e., either all translators have
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 return 'Generic failure.'; 189 return 'Generic failure.';
190 } else { 190 } else {
191 return ''; 191 return '';
192 } 192 }
193 } 193 }
194 //]]> 194 //]]>
195 </script> 195 </script>
196 </body> 196 </body>
197 </html> 197 </html>
198 198
OLDNEW
« no previous file with comments | « tests/cdom_perf/cdom_perf.html ('k') | tests/contest_issues/issue42.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698