Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/non-replaced-elements/the-frameset-and-frame-elements/multicol-table-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body style="columns:2">
<div id="parent" style="display:table-caption"></div>
<script>
const caption = document.querySelector('#parent');
const frameset = caption.appendChild(document.createElement('frameset'));
frameset.setAttribute('rows', '100%');
frameset.setAttribute('cols', '100%');
frameset.innerHTML = '<frame srcdoc=""></frame><frame srcdoc=""></frame>';
</script>
</body>