Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <style> | |
| 3 .container { | |
| 4 display: inline-block; | |
| 5 width: 1280px; | |
| 6 position: relative | |
| 7 } | |
| 8 .outerspan { | |
| 9 position: absolute; | |
| 10 left: 0; | |
| 11 right: 0; | |
| 12 } | |
| 13 </style> | |
| 14 <div class="container"> | |
| 15 <span class="outerspan"> | |
| 16 <span>This test checks that list item don't make non-overflowable box overfl owing</span> | |
| 17 </span> | |
| 18 </div> | |
| 19 This test has passed if it doesn't crash. | |
| 20 <script> | |
| 21 if (window.testRunner) | |
| 22 testRunner.dumpAsText(); | |
| 23 document.designMode = 'on'; | |
| 24 document.execCommand('SelectAll'); | |
| 25 document.execCommand('Strikethrough'); | |
| 26 document.execCommand('InsertOrderedList'); | |
| 27 </script> | |
| OLD | NEW |