Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script>
5 function boom()
6 {
7 document.getElementById("tr").focus();
8 document.getElementById("b").focus();
9 document.documentElement.removeAttribute("class");
10 }
11 </script>
12 </head>
13 <body onload="setTimeout(boom, 30);">
15 <table border="1">
16 <tbody dir="rtl">
17 <tr id="tr" contenteditable="true"><td>a</td><td contenteditable="false">
18 <div id="b" contenteditable="true">b</div>
19 </td></tr>
20 </tbody>
21 </table>
23 </body>
24 </html>