mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|