Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <html> |
michael@0 | 2 | |
michael@0 | 3 | <head> |
michael@0 | 4 | <script> |
michael@0 | 5 | |
michael@0 | 6 | function boom() |
michael@0 | 7 | { |
michael@0 | 8 | document.body.style.direction = "rtl"; |
michael@0 | 9 | tbody = document.getElementById("tbody"); |
michael@0 | 10 | tbody.contentEditable = "true"; |
michael@0 | 11 | tbody.focus(); |
michael@0 | 12 | } |
michael@0 | 13 | |
michael@0 | 14 | </script> |
michael@0 | 15 | </head> |
michael@0 | 16 | |
michael@0 | 17 | <body onload="boom();"> |
michael@0 | 18 | |
michael@0 | 19 | <table border="1"> |
michael@0 | 20 | <tbody> |
michael@0 | 21 | <tr> |
michael@0 | 22 | <td> |
michael@0 | 23 | <table border="1" style="border-collapse: collapse;"><tbody id="tbody"><tr></tr> |
michael@0 | 24 | <tr> |
michael@0 | 25 | <td></td> |
michael@0 | 26 | </tr> |
michael@0 | 27 | </table> |
michael@0 | 28 | </td> |
michael@0 | 29 | </tr> |
michael@0 | 30 | </tbody> |
michael@0 | 31 | </table> |
michael@0 | 32 | |
michael@0 | 33 | </body> |
michael@0 | 34 | </html> |