3 <body contenteditable
></body>
4 <script src=
"../../resources/dump-as-markup.js"></script>
8 testRunner
.dumpAsText();
10 while (script
= document
.querySelector('script'))
11 script
.parentNode
.removeChild(script
);
13 getSelection().collapse(document
.body
, 0);
14 document
.execCommand("InsertImage",false);
15 document
.execCommand("Indent");
16 document
.execCommand("Bold");
17 document
.execCommand("InsertLineBreak");
18 document
.execCommand("Outdent");
20 Markup
.description('This test outdents an empty paragraph with inline style.');
21 Markup
.dump(document
.body
);