puppeteer/third_party/phantomjs/test/www/regression/webkit-60448.html

15 lines
292 B
HTML
Raw Normal View History

2017-05-11 07:06:41 +00:00
<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>