blob: 2aba8733c682fc9ee625214bbd93503a7dda8614 [file] [edit]
<script src="../../resources/ui-helper.js"></script>
<span>This text is inside an inline box.</span> This text should also disappear after clearing body innerHTML in quirks mode.
<script>
window.testRunner?.waitUntilDone();
window.testRunner?.dontForceRepaint();
async function runTest() {
await UIHelper.renderingUpdate();
document.body.innerHTML = "";
await UIHelper.renderingUpdate();
await UIHelper.renderingUpdate();
window.testRunner?.notifyDone();
}
window.addEventListener('load', runTest);
</script>