Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/make-parent-element-editable-after-making-focused-editing-host-non-editable.html - WPT Dashboard Interop Dashboard
<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>