summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-frameset-and-frame-elements/multicol-table-crash.html
blob: adfb76e15a4d7af987e7d5493ce678a015a8fb87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<link rel="help" href="http://crbug.com/1383361">
<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>