https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3b8a635106f0d2986e6592c5a11738d1dad2c7f3 authored by Mozilla Releng Treescript on 14 June 2024, 02:44:31 UTC
no bug - Merge android-l10n translations from mozilla-central r=release a=l10n
Tip revision: 3b8a635
565125-1.html
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var a = document.createTextNode(" ");
  (document.documentElement).appendChild(a);
  var b = document.createElement("span");
  (document.documentElement).appendChild(b);
  var c = document.createTextNode(" ");
  (document.documentElement).appendChild(c);
  var r = document.createRange();
  r.setStart(a, 0); 
  r.setEnd(c, 0); 
  try {
    r.surroundContents(document.documentElement); 
  } catch(e) {
  }
  document.documentElement.appendChild(b);
}

</script>
</head>
<body onload="boom();"></body>
</html>
back to top