gecko-dev/layout/style/crashtests/1403465.html
J. Ryan Stinnett 521920fe39 Bug 1403465 - Crashtest. r=emilio
MozReview-Commit-ID: 9jYSE2oErnH
Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io>
2017-09-29 00:05:58 +02:00

25 lines
351 B
HTML

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