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
718236-2.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.parentNode.removeChild(x);
}

  </script>
 </head>
 <body onload="boom();">
  <div><span>&#x0661;<span id="x"></span>&#x0663;</span>&#x062A;</div>
 </body>
</html>
back to top