|
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);"> |
|
14 |
|
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> |
|
22 |
|
23 </body> |
|
24 </html> |