Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div {
6 margin: 0;
7 padding: 10px;
8 font-size: 40px;
9 height: 100px;
10 width: 100px;
11 border: 1px solid red;
12 outline: none;
13 }
14 </style>
15 </head>
16 <body onload="document.getElementById('i').focus()">
17 <div contenteditable id="i"></div>
18 </body>
19 </html>