blob: 329aaca22f8ef02c05750cc221fc03e577ac8e7f (
plain)
1
2
3
4
5
6
7
8
9
|
<!doctype html>
<style>
div { display: contents; }
</style>
<math></math>
<script>
let div = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'div');
document.querySelector('math').appendChild(div);
</script>
|