mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
14 lines
375 B
HTML
14 lines
375 B
HTML
<!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>
|