summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/611922-1.html
blob: f6affa0de1260b65b6b1df738190e9c556e9a478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html class="reftest-wait">
  <body onload="setTimeout(boom, 100)">
    <a id="x" href=""><span>This link starts out visited</span></a>
    <script>
      function boom() {
        document.getElementById("x").removeAttribute("href");
        document.body.offsetWidth;
        document.documentElement.className = "";
      }
    </script>
  </body>
</body>