mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
278 B
HTML
20 lines
278 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
s = document.getElementById("s");
|
|
document.body.insertBefore(document.createTextNode("\n"), s);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom()">
|
|
<span id="s" style="text-transform: uppercase;">
|
|
</span>
|
|
</body>
|
|
</html>
|