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