mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
25 lines
513 B
HTML
25 lines
513 B
HTML
<!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>
|