mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-01 00:33:57 +00:00
20 lines
247 B
HTML
20 lines
247 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var j = document.createTextNode("j");
|
|
var r = document.createRange();
|
|
r.setEnd(j, 1);
|
|
j.splitText(0);
|
|
r.setEnd(j, 0);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
|
|
</html> |