3 var testContainer
= document
.createElement("span");
4 testContainer
.contentEditable
= true;
5 document
.body
.appendChild(testContainer
);
7 function queryFormatBlock(content
)
9 testContainer
.innerHTML
= content
;
10 while (testContainer
.firstChild
)
11 testContainer
= testContainer
.firstChild
;
12 window
.getSelection().collapse(testContainer
, 0);
13 document
.queryCommandValue('formatBlock');
16 queryFormatBlock('<ol>hello</ol>');