6 testRunner
.dumpAsText();
9 // Insert "body" element into "div" element. Simple repetition of "body"
10 // element or renaming "body" to "div" doesn't reproduce bug.
11 var targetNode
= document
.getElementById('target');
12 targetNode
.appendChild(document
.body
.cloneNode(true));
14 document
.designMode
= 'on';
15 document
.execCommand('SelectAll');
16 document
.execCommand('JustifyRight');
17 document
.body
.textContent
= 'PASS if Blink doesn\'t crash.';
24 <div id=
"target" style=
"display:inline-table">foo
</div>