jruderman%hmc.edu 951d8d0947 Add crashtest.
git-svn-id: svn://10.0.0.236/trunk@241325 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-15 05:19:54 +00:00

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>