https://github.com/mozilla/gecko-dev
Raw File
Tip revision: dd2f462a971fdf6a72e7c3da774a4e4a5608ebfa authored by B2G Bumper Bot on 09 June 2014, 23:03:54 UTC
Bumping manifests a=b2g-bump
Tip revision: dd2f462
730562-1.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <script>

function boom()
{
  // Force frame construction
  document.documentElement.offsetHeight;

  // A dynamic change
  var x = document.getElementById("x");
  x.removeChild(x.firstChild);
  x.appendChild(document.createTextNode("\n\n\n"));
}

    </script>
  </head>
  <body onload="boom();">
    <div style="direction: rtl; white-space: pre;"><span style="outline: 1px solid red;" id="x">
	:p</span></div>
  </body>
</html>
back to top