no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / dom / tests / reftest / bug439965.html
blobda3f90ebe235cd402b008c68560eeb0e638578eb
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script>
5 function doe(aEl) {
6 aEl.style.display = '';
7 var doc = aEl.contentDocument;
8 doc.designMode = 'on';
10 try {
11 doc.execCommand("insertHTML",false,'some text');
12 } catch(e) {
13 document.getElementById('result').innerHTML = e;
16 </script>
18 <iframe onload="doe(this)" style="display:none"></iframe><br>
19 <pre id="result" style="background-color: red; width: 300px; white-space: -moz-pre-wrap;"></pre>
20 </body>
21 </html>