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