|
1 <html class="reftest-wait"> |
|
2 <head> |
|
3 <script type="text/javascript"> |
|
4 |
|
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 } |
|
15 |
|
16 </script> |
|
17 </head> |
|
18 |
|
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> |
|
21 |