https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2d3f88083affe7381bb6ecac6a1d33b32239416d authored by Julien Cristau on 08 July 2020, 15:51:58 UTC
Bug 1650162 - Turn security.allow_disjointed_external_uri_loads back on to fix regressions opening external applications. r=Gijs, a=jcristau
Tip revision: 2d3f880
700090-2.html
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var mo = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mo");
  var t1 = document.createTextNode("123456 ");
  mo.appendChild(t1);
  document.body.appendChild(mo);
  var t2 = document.createTextNode("x");
  document.body.appendChild(t2);

  var r1 = document.createRange();
  r1.setEnd(t1, 7);
  var r3 = document.createRange();
  r3.setStart(t1, 7);

  document.documentElement.offsetHeight;

  t1.splitText(t1.length);
}

</script>
</head>

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