blob: ab4d41bb4ee0737f9303f3c2b77414b6b4ce4761 [file] [log] [blame] [edit]
<html><head>
<script>
async function runTest() {
var dcont = document.getElementById("dcont");
var e = document.createElement('frameset');
var span = document.createElement('span');
e.appendChild(span);
dcont.appendChild(e);
testRunner?.waitUntilDone();
await testRunner?.displayAndTrackRepaints();
testRunner?.notifyDone();
}
</script>
</head><body onload="runTest()">
<div>This tests that putting an inline element (such as a span) inside of an element doesn't cause an assertion failure.</div>
<div id="dcont">
</div>
</body></html>