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

Side by Side Diff: tests/ppapi_core/ppapi_core.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_bad/ppapi_bad.html ('k') | tests/ppapi_example_2d/ppapi_example_2d.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 <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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <tr><td><pre id='getTimeTicks' class='notrun'></pre> 120 <tr><td><pre id='getTimeTicks' class='notrun'></pre>
121 <tr><td><pre id='isOnMainThread' class='notrun'></pre> 121 <tr><td><pre id='isOnMainThread' class='notrun'></pre>
122 <tr><td><pre id='memAllocAndMemFree' class='notrun'></pre> 122 <tr><td><pre id='memAllocAndMemFree' class='notrun'></pre>
123 <tr><td><pre id='addAndReleaseResource' class='notrun'></pre> 123 <tr><td><pre id='addAndReleaseResource' class='notrun'></pre>
124 <tr><td><pre id='addAndReleaseInvalidResource' class='notrun'></pre> 124 <tr><td><pre id='addAndReleaseInvalidResource' class='notrun'></pre>
125 <tr><td><pre id='callOnMainThread' class='notrun'></pre> 125 <tr><td><pre id='callOnMainThread' class='notrun'></pre>
126 </table> 126 </table>
127 127
128 <div id="status">NO-STATUS</div> 128 <div id="status">NO-STATUS</div>
129 129
130 <embed type="application/x-ppapi-nacl-srpc" id="nacl" 130 <embed type="application/x-nacl" id="nacl"
131 name="nacl_module" 131 name="nacl_module"
132 nacl="ppapi_core.nmf" 132 nacl="ppapi_core.nmf"
133 width="0" height="0" /> 133 width="0" height="0" />
134 134
135 <script type="text/javascript" src="nacl_js_lib.js"></script> 135 <script type="text/javascript" src="nacl_js_lib.js"></script>
136 <script type="text/javascript"> 136 <script type="text/javascript">
137 //<![CDATA[ 137 //<![CDATA[
138 var nacllib = new NaclLib('nacl_module', 'status', 500); 138 var nacllib = new NaclLib('nacl_module', 'status', 500);
139 139
140 // Returns true (for "wait") to the NaclLib test driver until all of the 140 // Returns true (for "wait") to the NaclLib test driver until all of the
(...skipping 23 matching lines...) Expand all
164 } else if (testTimedOut) { 164 } else if (testTimedOut) {
165 return 'Test timed out.'; 165 return 'Test timed out.';
166 } else { 166 } else {
167 return 'Test failed.'; 167 return 'Test failed.';
168 } 168 }
169 } 169 }
170 //]]> 170 //]]>
171 </script> 171 </script>
172 </body> 172 </body>
173 </html> 173 </html>
OLDNEW
« no previous file with comments | « tests/ppapi_bad/ppapi_bad.html ('k') | tests/ppapi_example_2d/ppapi_example_2d.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698