blob: ada72cbc999c7781ee8fd1cbcc59443a87c69ea2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
column-count: 2;
}
details {
border-image: url(#foo);
}
</style>
</head>
<body>
<div><details><summary style="column-span: all"></summary></details></div>
PASS if no crash.
<script>
if (window.testRunner)
testRunner.dumpAsText();
r = document.caretRangeFromPoint(0, 0);
r.insertNode(document.createElement("summary"));
document.body.offsetHeight;
document.getElementsByTagName("summary")[1].remove();
</script>
</body>
</html>