4 <button type=
"button" id=
"button1">FOOO
</button>
5 <input type=
"text" id=
"input1">
8 window
.testRunner
.dumpAsText();
9 var button1
= document
.getElementById('button1');
10 var input1
= document
.getElementById('input1');
11 input1
.setSelectionRange(0);
13 var oSelection
= window
.getSelection();
14 document
.execCommand('SelectAll');
15 oSelection
.deleteFromDocument();
18 <p>Pass if it doesn't crash
</p>