mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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>
|