puppeteer/third_party/phantomjs/test/www/regression/webkit-60448.html
2017-05-11 00:06:41 -07:00

15 lines
292 B
HTML

<html>
<body onload="runTest()">
Test passes if it does not crash.
<script>
function runTest()
{
document.body.offsetTop;
child = document.getElementById('test');
child.parentNode.removeChild(child);
}
</script>
<br>
<span id="test"></span>
</body>
</html>