blob: badda71d8e6afda3b8deb563956b5a9deda584ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){});
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>
|