mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
465 B
HTML
21 lines
465 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var mspace = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mspace");
|
||
|
var emptyset = document.createElementNS("http://www.w3.org/1998/Math/MathML", "emptyset");
|
||
|
emptyset.setAttributeNS(null, "mathvariant", "3");
|
||
|
mspace.appendChild(emptyset);
|
||
|
document.body.appendChild(mspace);
|
||
|
emptyset.removeAttribute('mathvariant');
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom()"></body>
|
||
|
</html>
|