1600635.html (521B)
1 <style> 2 * { 3 overflow-inline: scroll; 4 } 5 </style> 6 <script> 7 window.addEventListener('load', () => { 8 const mbsubsup = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'msubsup') 9 const m = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'm') 10 const ms = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'ms') 11 mbsubsup.appendChild(m) 12 ms.innerHTML = '<figure>' 13 mbsubsup.appendChild(ms) 14 document.documentElement.appendChild(mbsubsup) 15 }) 16 </script>