mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
15 lines
292 B
HTML
15 lines
292 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";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="c();">
|
|
<span id="a"><span>a</span>b<span>א</span>c</span>
|
|
</body>
|
|
</html>
|