mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
24 lines
249 B
HTML
24 lines
249 B
HTML
<html>
|
|
<head>
|
|
|
|
<style>
|
|
#fl:first-line { }
|
|
</style>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("s").style.overflow = "auto";
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<div id="fl">
|
|
<b><span id="s">Foo</a></b>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|