mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
291 B
HTML
16 lines
291 B
HTML
<!DOCTYPE html><html><head><script>
|
|
function boom()
|
|
{
|
|
var a = document.getElementsByTagName('div')[0];
|
|
var b = a.firstChild;
|
|
|
|
var r = document.createRange();
|
|
r.setStart(b, 1);
|
|
r.setEnd(a, 1);
|
|
|
|
b.splitText(0);
|
|
}
|
|
</script></head><body onload="boom();">
|
|
<div>b</div>
|
|
</body></html>
|