зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
387 B
HTML
19 строки
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var e = document.getElementsByTagName("mo")[0];
|
|
e.setAttribute("style", "position: absolute; top: 0px;");
|
|
document.documentElement.offsetHeight;
|
|
e.setAttribute("style", "position: absolute; top: 100px;");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<math><mo>boom!</mo></math>
|
|
</body>
|
|
</html>
|