gecko-dev/layout/style/crashtests/1403465.html

25 lines
351 B
HTML
Raw Normal View History

<!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>