mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +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> |