RetroZilla/layout/html/tests/block/bugs/41521.html
2015-10-20 23:03:22 -04:00

12 lines
289 B
HTML

<html>
<head>
<script>
function change()
{
document.getElementById("span").style.fontWeight = "bold";
}
</script>
<body onload="change();">
<span id="span">This is my happy span. <span style="display: block;">It's got an inline block.</span> It all should be bold.</span>
</body>
</html>