OLD | NEW |
1 <!doctype HTML> | 1 <!DOCTYPE html> |
2 Passes if it does not crash. | 2 <style> |
| 3 .list{display:list-item;} |
| 4 .float{float:right;} |
| 5 </style> |
3 <ruby> | 6 <ruby> |
4 test | 7 crbug.com/619380: Passes if it does not crash. |
5 <rt> | 8 <rt> |
6 <rtc> | 9 <rtc> |
7 <a style="display:list-item"> | 10 <a class="list"> |
8 <input style="float:right"></input> | 11 <input class="float"> |
9 </rtc> | 12 </rtc> |
10 </a> | 13 </rt> |
11 </rt> | 14 </ruby> |
12 </ruby> | |
13 <script> | 15 <script> |
14 if (window.testRunner) | 16 if (window.testRunner) |
15 window.testRunner.dumpAsText(); | 17 window.testRunner.dumpAsText(); |
16 onload = function() { | 18 document.execCommand("SelectAll"); |
17 var mySelection=window.getSelection(); | 19 window.getSelection().deleteFromDocument(); |
18 document.execCommand("SelectAll"); | |
19 mySelection.deleteFromDocument(); | |
20 } | |
21 </script> | 20 </script> |
OLD | NEW |