blob: a0166559f288457d53d0e018d14e6962e8eedf2f [file] [log] [blame]
<html>
<body onload="runTest();">
<div id="table" style="display: table;">
<em id="em"></em>
<audio controls="arbitrary" style="display: table-caption;" />
<img id="img" />
</div>
<div id="result"></div>
<script type="text/javascript">
if (window.layoutTestController)
layoutTestController.dumpAsText();
function runTest()
{
var img = document.getElementById('img');
var em = document.getElementById('em');
em.parentNode.replaceChild(img, em);
document.body.offsetTop;
document.body.removeChild(document.getElementById('table'));
document.getElementById("result").innerHTML = "PASS";
}
</script>
</body>
</html>