Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <script src="../../resources/testharness.js"></script> | |
| 3 <script src="../../resources/testharnessreport.js"></script> | |
| 4 <iframe></iframe> | |
| 5 <script> | |
| 6 iframe = document.querySelector('iframe'); | |
| 7 iframe.contentDocument.onselectstart = () => iframe.remove(); | |
| 8 | |
| 9 test(() => iframe.contentDocument.execCommand('selectAll'), | |
| 10 'Should not crash if selectstart event handler detaches frame'); | |
| 11 </script> | |
| OLD | NEW |