mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
356 B
HTML
20 lines
356 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
window.addEventListener("DOMSubtreeModified", function(){}, false);
|
||
|
|
||
|
var MATHML_NS = "http://www.w3.org/1998/Math/MathML";
|
||
|
var ms = document.createElementNS(MATHML_NS, "ms");
|
||
|
document.body.appendChild(ms);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();"></body>
|
||
|
</html>
|