Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script> | |
| 2 onload = function() { | |
| 3 document.execCommand('selectAll'); | |
| 4 selection = document.getSelection(); | |
| 5 selection.deleteFromDocument(); | |
| 6 } | |
| 7 </script> | |
| 8 <textarea autofocus > | |
| 9 text | |
| 10 text2 | |
| 11 text3</textarea> | |
| 12 <iframe srcdoc="foo"></iframe> | |
| OLD | NEW |