| 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> HTML Table Generation: JavaScript versus C </title> | 6 <title> HTML Table Generation: JavaScript versus C </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 <!-- | 10 <!-- |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 </script> | 135 </script> |
| 136 </head> | 136 </head> |
| 137 <body onload="InitNativeClient();" | 137 <body onload="InitNativeClient();" |
| 138 onunload="ShutdownNativeClient();" > | 138 onunload="ShutdownNativeClient();" > |
| 139 <script type="text/javascript" src="domtable.js"></script> | 139 <script type="text/javascript" src="domtable.js"></script> |
| 140 <script type="text/javascript" src="nacl_js_lib.js"></script> | 140 <script type="text/javascript" src="nacl_js_lib.js"></script> |
| 141 | 141 |
| 142 <embed name="nacl_module" | 142 <embed name="nacl_module" |
| 143 id="embed1" | 143 id="embed1" |
| 144 width=0 height=0 | 144 width=0 height=0 |
| 145 src="cdom_perf.nexe" | 145 nexe="cdom_perf" |
| 146 type="application/x-nacl-srpc" /> | 146 type="application/x-nacl-srpc"> |
| 147 <noembed> |
| 148 Your browser does not appear to support Native Client. |
| 149 Visit http://code.google.com/p/nativeclient/ to get started. |
| 150 <noembed/> |
| 151 </embed> |
| 147 <h1>HTML Table Generation: JavaScript versus C </h1> | 152 <h1>HTML Table Generation: JavaScript versus C </h1> |
| 148 <table cellpadding=5% summary="Control panel on left, output on right"> | 153 <table cellpadding=5% summary="Control panel on left, output on right"> |
| 149 <tr> | 154 <tr> |
| 150 <td valign=top> | 155 <td valign=top> |
| 151 <table border=5 cellpadding=5% summary="Values and buttons for control"> | 156 <table border=5 cellpadding=5% summary="Values and buttons for control"> |
| 152 <tr> | 157 <tr> |
| 153 <td colspan=2 align=center> <b> Control Panel </b> </td> | 158 <td colspan=2 align=center> <b> Control Panel </b> </td> |
| 154 </tr> | 159 </tr> |
| 155 <tr> | 160 <tr> |
| 156 <td align=center> Table columns </td> | 161 <td align=center> Table columns </td> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 </table> | 216 </table> |
| 212 </td> | 217 </td> |
| 213 </table> | 218 </table> |
| 214 <b> | 219 <b> |
| 215 First run starts automatically. Click afterwards to re-run. <br> | 220 First run starts automatically. Click afterwards to re-run. <br> |
| 216 Warning: Table with more than 100 | 221 Warning: Table with more than 100 |
| 217 </b> | 222 </b> |
| 218 <br/> | 223 <br/> |
| 219 </body> | 224 </body> |
| 220 </html> | 225 </html> |
| OLD | NEW |