| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.layoutTestController) | 4 if (window.layoutTestController) |
| 5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
| 6 </script> | 6 </script> |
| 7 </head> | 7 </head> |
| 8 <style> | 8 <style> |
| 9 div { | 9 div { |
| 10 border: 5px solid maroon; | 10 border: 5px solid maroon; |
| 11 -webkit-column-count: 2; | 11 -webkit-column-count: 2; |
| 12 margin: 1em 0; | 12 margin: 1em 0; |
| 13 } | 13 } |
| 14 summary { | 14 summary { |
| 15 -webkit-column-span: all; | 15 -webkit-column-span: all; |
| 16 background-color: #eeeeee; | 16 background-color: #eeeeee; |
| 17 color: black; | 17 color: black; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <body onload="document.open()"> | 20 <body onload="document.open()"> |
| 21 <div> | 21 <div> |
| 22 <label>AAA | 22 <label>AAA |
| 23 <summary>BBB | 23 <summary>BBB |
| 24 </div> | 24 </div> |
| 25 </body> | 25 </body> |
| 26 </html> | 26 </html> |
| 27 | 27 |
| OLD | NEW |