RetroZilla/layout/html/tests/block/bugs/41521.html

12 lines
289 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<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>