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