blob: 9e9a2879f03b39266b1abf92e6a9875656665641 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("tr").focus();
document.getElementById("b").focus();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<table border="1">
<tbody dir="rtl">
<tr id="tr" contenteditable="true"><td>a</td><td contenteditable="false">
<div id="b" contenteditable="true">b</div>
</td></tr>
</tbody>
</table>
</body>
</html>
|