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