blob: 6d02bb0e6b9e48a6c15750299eb1c9143e252a12 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../../resources/js-test-pre.js"></script>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function doTest()
{
var iframe = document.querySelector('iframe');
var node = iframe.contentDocument.createElement('input');
node.setAttribute('type', 'range');
iframe.contentDocument.body.appendChild(node);
iframe.contentDocument.body.offsetWidth;
document.body.appendChild(node);
document.body.offsetWidth;
node.remove();
window.setTimeout(removeFrameAndGC, 0)
}
function removeFrameAndGC()
{
var iframe = document.querySelector('iframe');
iframe.remove();
iframe = undefined;
gc();
if (window.testRunner)
testRunner.notifyDone();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
This test should not crash or assert.
<iframe srcdoc="<body></body>"></iframe>
</body>
</html>