Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .c3 { -webkit-appearance: button; } | |
| 4 .c3:nth-last-child(even) { display: table-row; } | |
| 5 .c14 { float: left; } | |
| 6 .c14::first-letter { float: inherit; } | |
| 7 </style> | |
| 8 <div id="div" class="c14"> | |
| 9 <div class="c3"> | |
| 10 Test passes if it doesn't crash. | |
| 11 </div> | |
| 12 </div> | |
| 13 <script> | |
| 14 setTimeout('div.appendChild(document.createElement("div"));', 0); | |
| 15 </script> | |
| OLD | NEW |