Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 div {
6 min-height: 36px;
7 }
8 </style>
9 <script>
10 function test() {
11 var d = document.querySelector("div");
12 d.appendChild(document.createTextNode(""));
13 d.focus();
14 }
15 function focusTriggered() {
16 document.documentElement.removeAttribute("class");
17 }
18 </script>
19 </head>
20 <body onload="test()">
21 <div contenteditable onfocus="focusTriggered()"></div>
22 </body>
23 </html>