mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
377 B
HTML
24 lines
377 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var s = document.getElementById("s");
|
|
document.body.removeChild(s);
|
|
document.body.appendChild(s);
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<span style="word-spacing: -379660px">a </span>
|
|
<span id="s"><br style="clear: both;"/></span>
|
|
</body>
|
|
|
|
</html>
|