blob: f25ce28f141c1e97d0feb1470b2e7934fa06efe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
document.getElementById("math").setAttribute("class", "li");
document.documentElement.offsetHeight;
document.documentElement.appendChild(document.createTextNode("\n"));
}
</script>
<style type="text/css">
[class="li"] { display: list-item; }
</style>
</head>
<body onload="boom();"><math xmlns="http://www.w3.org/1998/Math/MathML" id="math"/></body>
</html>
|