5 testRunner
.dumpAsText();
7 window
.onload = function () {
8 document
.designMode
= 'on';
10 document
.body
.textContent
= 'aaaa';
11 document
.execCommand('SelectAll');
12 document
.execCommand('Italic');
13 window
.getSelection().deleteFromDocument();
15 document
.execCommand('Undo');
16 window
.getSelection().deleteFromDocument();
18 document
.body
.textContent
= 'PASS if Blink doesn\'t crash.';