Sign in
webkit
/
WebKit
/
4bcb3438baef1cfe12aea6aa10c3a06a0ad5b00d
/
.
/
LayoutTests
/
imported
/
blink
/
editing
/
selection
/
deleteFromDocument-crash.html
blob: 079f25ad3554abf34f65de44e369cf2be78eb5ce [
file
] [
log
] [
blame
]
<textarea
id
=
"textarea"
>
text
text2
text3
</textarea>
<iframe
srcdoc
=
"foo"
></iframe>
<script>
textarea
.
focus
();
onload
=
function
()
{
document
.
execCommand
(
'selectAll'
);
selection
=
document
.
getSelection
();
selection
.
deleteFromDocument
();
}
</script>