blob: f75336e15f1d7fd931bd892a1dfe95c1bba4d692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<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>
|