1 <div id="outerdiv" contenteditable="true">
2 <div>There should be a single H1 block with a single BR below.</div>
3 <div id="div"><br></div>
4 <div id="div">There should be a single H1 block with a single BR above.</div>
10 if (window.layoutTestController)
11 layoutTestController.dumpAsText();
13 function log(message) {
14 var console = document.getElementById("console");
15 var text = document.createTextNode(message);
16 console.appendChild(text);
19 div = document.getElementById("div");
20 window.getSelection().setPosition(div, 0);
21 document.execCommand("FormatBlock", false, "h1");
23 log(document.getElementById('outerdiv').innerHTML);