Mypal/layout/generic/crashtests/388175-1.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>