mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
289 B
HTML
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> |