| 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 <!-- 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |