mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
294 B
HTML
24 lines
294 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function mO ()
|
|
{
|
|
document.getElementById('ds').innerHTML="<span>text before table<TABLE BGCOLOR=red><TR><TD>table</TD></TR></TABLE>text after table<\/span>";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
|
|
<body onload="mO();mO();">
|
|
|
|
<div id="ds">
|
|
orig contents of ds
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |