mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
388 B
HTML
23 lines
388 B
HTML
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
var aaa = document.getElementById("aaa");
|
||
|
var bbb = document.getElementById("bbb");
|
||
|
aaa.parentNode.insertBefore(bbb, aaa);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">
|
||
|
|
||
|
<div><span><span style="display: table-caption;"></span><span id="aaa"><div></div></span></span></div>
|
||
|
|
||
|
<b id="bbb" style="display: table-caption;"></b>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|