gecko-dev/layout/style/crashtests/1247865-1.html
L. David Baron 15f112aaec Bug 1247865 - Add crashtest for assertion. r=birtles
I confirmed locally that, without the following patch, the crashtest
harness does detect the single assertion.

MozReview-Commit-ID: FRkCdxSSa7V

--HG--
extra : transplant_source : xF%BC%7E%03%B3%1Bp%EF%07%D9%28%F6C%B5s%C7%C2%15%C1
2016-02-12 22:54:26 -08:00

20 lines
383 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.nav { display: table }
.nav:after { content: " " }
</style>
</head>
<body>
<div style="font-size: 1rem"></div>
<div class="nav">
</div>
<script>
document.documentElement.style.fontSize = "10px";
document.documentElement.offsetHeight;
document.documentElement.style.fontSize = "15px";
</script>
</body>
</html>