mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 10:20:19 +01:00
24 lines
285 B
HTML
24 lines
285 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function m0 ()
|
|
{
|
|
document.getElementById('ds').innerHTML="<span>text before table <div style='display:block;'>block</div> text after table</span>";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
|
|
<body onload="m0(); m0();">
|
|
|
|
<div id="ds">
|
|
orig contents of ds
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |