4 This test passes if it does not crash.
7 testRunner
.dumpAsText();
9 el1
= document
.createElement('li');
10 document
.body
.appendChild(el1
);
11 el2
= document
.createElement('thead');
13 el2
.parentNode
.insertBefore(document
.createElement('video'), el2
);
14 el2
.parentNode
.insertBefore(document
.createElement('input'), el2
);
15 document
.designMode
= 'on';
16 window
.getSelection().setBaseAndExtent(el1
, 2, el2
, 4);
17 document
.designMode
= 'off';
18 window
.getSelection().modify('extend', 'backward', 'character');
19 el1
.innerHTML
= "PASS";
20 document
.designMode
= 'on';
21 document
.execCommand('FontSizeDelta', false, '-1px');
22 document
.designMode
= 'off';