Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html class="reftest-wait">
2 <head>
3 <script type="text/javascript">
5 function boom()
6 {
7 document.execCommand("selectAll", false, null);
8 document.execCommand("formatBlock", false, "<h5>");
9 document.execCommand("justifyfull", false, null);
10 document.execCommand("indent", false, null);
11 document.execCommand("outdent", false, null);
12 document.getElementById("q").appendChild(document.createTextNode('v'));
13 document.documentElement.removeAttribute("class");
14 }
16 </script>
17 </head>
19 <body onload="boom();" style="width: 800px; -moz-column-count: 4; column-count: 4;"><div contenteditable="true" style="height: 80px;"><div><div><hr><span> </span></div></div></div><div id="q" style="height: 80px;"><div style="float: left; height: 10px; width: 10px;"></div><div style="padding: 180px; -moz-column-count: 1; column-count: 1; clear: right;"></div></div></body>
20 </html>