blob: 99d6873bb19e1f3677d299709cd13a38d421fc80 [file] [edit]
<style>
summary {
visibility: hidden;
}
#target {
columns: 2;
}
</style>
<!-- PASS if no crash or assert -->
<body onload=runTest()>
<details>
<summary>the summary</summary>
<div id="target">content</div>
</details>
</body>
<script>
function runTest() {
if (window.testRunner)
testRunner.dumpAsText();
target.appendChild(document.createElement("div"));
document.caretPositionFromPoint(0, 0);
}
</script>