Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/crashtests/mtd-blockify-children.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<math>
<mtable>
<mtr>
<mtd id="target"></mtd>
</mtr>
</mtable>
</math>
<script>
const target = document.getElementById('target');
const caption = document.createElement('caption');
target.appendChild(caption);
document.body.offsetTop;
target.insertBefore(document.createTextNode('text'), caption);
</script>