| OLD | NEW |
| 1 <html><head> | 1 <html><head> |
| 2 | 2 |
| 3 <title>table creation</title><style type="text/css"> | 3 <title>table creation</title><style type="text/css"> |
| 4 caption { color: green; background-color: lightyellow; } | 4 caption { color: green; background-color: lightyellow; } |
| 5 </style> | 5 </style> |
| 6 <script type="text/javascript"> | 6 <script type="text/javascript"> |
| 7 function createTable (caption) { | 7 function createTable (caption) { |
| 8 var table = document.createElement('table'); | 8 var table = document.createElement('table'); |
| 9 table.border = 1; | 9 table.border = 1; |
| 10 document.body.appendChild(table); | 10 document.body.appendChild(table); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 }</script></head> | 39 }</script></head> |
| 40 <body> | 40 <body> |
| 41 <script type="text/javascript"> | 41 <script type="text/javascript"> |
| 42 createTable('Where is the table?'); | 42 createTable('Where is the table?'); |
| 43 document.body.appendChild(document.createElement('hr')); | 43 document.body.appendChild(document.createElement('hr')); |
| 44 createTable(); | 44 createTable(); |
| 45 document.body.appendChild(document.createElement('hr')); | 45 document.body.appendChild(document.createElement('hr')); |
| 46 createTable1('Here is the table'); | 46 createTable1('Here is the table'); |
| 47 </script><table border="1"><thead><tr><td>Header</td></tr></thead><caption>Where
is the table?</caption><tbody><tr><td>Kibology</td></tr></tbody></table><hr><ta
ble border="1"><thead><tr><td>Header</td></tr></thead><tbody><tr><td>Kibology</t
d></tr></tbody></table><hr><table border="1"><thead><tr><td>Header</td></tr></th
ead><caption>Here is the table</caption><tbody><tr><td>Kibology</td></tr></tbody
></table> | 47 </script><table border="1"><thead><tr><td>Header</td></tr></thead><caption>Where
is the table?</caption><tbody><tr><td>Kibology</td></tr></tbody></table><hr><ta
ble border="1"><thead><tr><td>Header</td></tr></thead><tbody><tr><td>Kibology</t
d></tr></tbody></table><hr><table border="1"><thead><tr><td>Header</td></tr></th
ead><caption>Here is the table</caption><tbody><tr><td>Kibology</td></tr></tbody
></table> |
| 48 </body></html> | 48 </body></html> |
| OLD | NEW |