| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> | 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> |
| 4 <style> | 4 <style> |
| 5 div.table { display: table; } | 5 div.table { display: table; } |
| 6 div.section { display: table-row-group; } | 6 div.section { display: table-row-group; } |
| 7 div.caption { display: table-caption; } | 7 div.caption { display: table-caption; } |
| 8 div.colgroup { display: table-column-group; } | 8 div.colgroup { display: table-column-group; } |
| 9 div.col { display: table-column; } | 9 div.col { display: table-column; } |
| 10 div.cell { display: table-cell; width: 50px; height: 50px; background-color:
blue; } | 10 div.cell { display: table-cell; width: 50px; height: 50px; background-color:
blue; } |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 insertCell("table-2", "row"); | 107 insertCell("table-2", "row"); |
| 108 insertCell("table-3", "caption"); | 108 insertCell("table-3", "caption"); |
| 109 insertCell("table-4", "colgroup"); | 109 insertCell("table-4", "colgroup"); |
| 110 insertRow("table-5", "tbody-5"); | 110 insertRow("table-5", "tbody-5"); |
| 111 insertCell("table-6", "col-6"); | 111 insertCell("table-6", "col-6"); |
| 112 insertCell("table-7", "block"); | 112 insertCell("table-7", "block"); |
| 113 insertBlock("table-8", "cell"); | 113 insertBlock("table-8", "cell"); |
| 114 </script> | 114 </script> |
| 115 </body> | 115 </body> |
| 116 </html> | 116 </html> |
| OLD | NEW |