blob: 924392757b318ffa5d9e75fc0630247a4207c2ac (
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
|
<!DOCTYPE html>
<html>
<body>
<math class="hidden">
<mi>x</mi>
<mo>=</mo>
</math>
<script>
window.onload = function() {
let s = document.createElement("style");
s.textContent = `
body {
line-height: 1.42857143;
}
.hidden {
display: none;
}
`;
document.body.appendChild(s);
};
</script>
</body>
</html>
|