mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
17 lines
372 B
HTML
17 lines
372 B
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
|
<script type="text/javascript">
|
|
function c()
|
|
{
|
|
document.getElementById("a").style.height = "10em";
|
|
document.body.offsetHeight;
|
|
document.getElementById("a").style.height = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="c();">
|
|
<span id="a"><span>a</span>b<span>א</span>c</span>
|
|
</body>
|
|
</html>
|