blob: d624d7d3b98a7c615951f10e381e99fb1266c424 [file] [log] [blame] [edit]
<html>
<head>
<script>
function boom()
{
document.getElementById("div").contentEditable = "true";
document.getElementById("div").focus();
document.getElementById("div").contentEditable = "false";
document.getElementById("table").contentEditable = "true";
}
</script>
</head>
<body onload="boom();">
<table id="table"><td></td></table><div id="div"></div>
</body>
</html>