| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 div { border:5px solid maroon; -webkit-column-count:2; width:750px; margin: 1em
0 } | 4 div { border:5px solid maroon; -webkit-column-count:2; width:750px; margin: 1em
0 } |
| 5 h2 { -webkit-column-span: all; background-color:#eeeeee } | 5 h2 { -webkit-column-span: all; background-color:#eeeeee } |
| 6 </style> | 6 </style> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 | 9 |
| 10 <div id="one"> | 10 <div id="one"> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 <script> | 73 <script> |
| 74 h2 = document.createElement("h2"); | 74 h2 = document.createElement("h2"); |
| 75 h2.appendChild(document.createTextNode("This is a first span.")); | 75 h2.appendChild(document.createTextNode("This is a first span.")); |
| 76 three = document.getElementById('three'); | 76 three = document.getElementById('three'); |
| 77 three.insertBefore(h2, document.getElementById('beforethree')); | 77 three.insertBefore(h2, document.getElementById('beforethree')); |
| 78 </script> | 78 </script> |
| 79 | 79 |
| 80 </body> | 80 </body> |
| 81 </html> | 81 </html> |
| OLD | NEW |