https://github.com/mozilla/gecko-dev
Raw File
Tip revision: cce5fb62801b2dc2d43fed147961f47cb033ca97 authored by Matt Brubeck on 09 June 2011, 18:11:04 UTC
Backed out changeset 08a50378d37c (landed on relbranch by accident). a=backout
Tip revision: cce5fb6
484400-1.html
<html class="reftest-wait">
<head>
<style>
  div::first-letter { color: red; font-size: 200%; background-color: blue; }
</style>
<script>
function boom() {
  document.documentElement.offsetWidth;
  var s = document.getElementById("s");
  s.parentNode.removeChild(s);
  document.documentElement.offsetWidth;
  document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">
  <div>
    <span id="s" style="position: absolute;">abcdefh</span>T
  </div>
</body>
back to top