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

Side by Side Diff: tests/ppapi_geturl/ppapi_geturl.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/ppapi_geturl/build.scons ('k') | tests/ppapi_proxy/basic_object.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 2010 Google Inc. All rights reserved. --> 4 <!-- Copyright 2010 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 <style type="text/css"> 8 <style type="text/css">
9 pre.notrun { background-color: skyblue } 9 pre.notrun { background-color: skyblue }
10 pre.pass { background-color: lime } 10 pre.pass { background-color: lime }
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 <tr><td><pre id='LogValid' class='notrun'></pre> 147 <tr><td><pre id='LogValid' class='notrun'></pre>
148 <td><pre id='LogValidFile' class='notrun'></pre> 148 <td><pre id='LogValidFile' class='notrun'></pre>
149 <tr><td><pre id='LogCrossOrigin' class='notrun'></pre> 149 <tr><td><pre id='LogCrossOrigin' class='notrun'></pre>
150 <td><pre id='LogCrossOriginFile' class='notrun'></pre> 150 <td><pre id='LogCrossOriginFile' class='notrun'></pre>
151 <tr><td><pre id='LogInvalid' class='notrun'></pre> 151 <tr><td><pre id='LogInvalid' class='notrun'></pre>
152 <td><pre id='LogInvalidFile' class='notrun'></pre> 152 <td><pre id='LogInvalidFile' class='notrun'></pre>
153 </table> 153 </table>
154 154
155 <div id="status">NO-STATUS</div> 155 <div id="status">NO-STATUS</div>
156 156
157 <embed type="application/x-ppapi-nacl-srpc" id="nacl" name="nacl_module" 157 <embed type="application/x-nacl" id="nacl" name="nacl_module"
158 src="ppapi_geturl.nexe" width="0" height="0" /> 158 src="ppapi_geturl.nexe" width="0" height="0" />
159 159
160 <script type="text/javascript" src="nacl_js_lib.js"></script> 160 <script type="text/javascript" src="nacl_js_lib.js"></script>
161 <script type="text/javascript"> 161 <script type="text/javascript">
162 //<![CDATA[ 162 //<![CDATA[
163 var nacllib = new NaclLib('nacl_module', 'status', 500); 163 var nacllib = new NaclLib('nacl_module', 'status', 500);
164 164
165 // Returns true (for "wait") to the NaclLib test driver until all of the 165 // Returns true (for "wait") to the NaclLib test driver until all of the
166 // tests are complete. I.e., either all of the file load callbacks have 166 // tests are complete. I.e., either all of the file load callbacks have
167 // completed successfully or an error has occurred. 167 // completed successfully or an error has occurred.
(...skipping 21 matching lines...) Expand all
189 } else if (testTimedOut) { 189 } else if (testTimedOut) {
190 return 'Test timed out.'; 190 return 'Test timed out.';
191 } else { 191 } else {
192 return 'Test failed.'; 192 return 'Test failed.';
193 } 193 }
194 } 194 }
195 //]]> 195 //]]>
196 </script> 196 </script>
197 </body> 197 </body>
198 </html> 198 </html>
OLDNEW
« no previous file with comments | « tests/ppapi_geturl/build.scons ('k') | tests/ppapi_proxy/basic_object.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698