Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 262998-1.html
blob79eccd7ff767a53aae5065e9d1121bd01eeb23f2
1 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <body onload="setTimeout(doTest,0);">
5 <iframe id="edit" style="display:none;" src=""></iframe>
7 <script>
8 var x=document.getElementById('edit');
9 function doTest(){
10 x.style.display='block';
11 x.contentDocument.body.innerHTML="This is a test";
12 x.contentDocument.designMode='on';
13 x.contentDocument.execCommand("selectAll", false, "");
14 x.contentDocument.execCommand("bold", false, "");
15 x.contentDocument.execCommand("justifyCenter", false, "");
16 x.contentWindow.getSelection().removeAllRanges();
17 document.documentElement.className = "";
19 </script>
20 </body>
21 </html>