mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
493 B
HTML
35 lines
493 B
HTML
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.body.style.direction = "rtl";
|
||
|
tbody = document.getElementById("tbody");
|
||
|
tbody.contentEditable = "true";
|
||
|
tbody.focus();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">
|
||
|
|
||
|
<table border="1">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<table border="1" style="border-collapse: collapse;"><tbody id="tbody"><tr></tr>
|
||
|
<tr>
|
||
|
<td></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|