no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / editor / reftests / 1443902-3.html
blob9fffb644b72fe1e3a3c5fd118a65305857b34a87
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function init()
7 document.getElementById("t1").focus();
8 document.getElementById("t1").setSelectionRange(0, 1);
9 document.getElementById("d1").setAttribute("contentEditable", "false");
11 </script>
12 </head>
13 <body onload="init()">
14 <div contenteditable=true id="d1">
15 <input type="text" id=t1 value="ABCD" readonly>
16 </div>
17 </body>
18 </html>