mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1afa2b0fbf
--HG-- extra : rebase_source : c41d8fb0048e6c6eea70db12d5b6e976fc442b69
24 lines
757 B
HTML
24 lines
757 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<title>Test for bug 641731</title>
|
|
<script>
|
|
function snapshot() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
function delay_snapshot() {
|
|
setTimeout(snapshot, 100); // delay snapshot to allow time for
|
|
// :visited style inside the image to
|
|
// resolve (which it hopefully won't)
|
|
}
|
|
document.addEventListener("MozReftestInvalidate", delay_snapshot, false);
|
|
</script>
|
|
</head>
|
|
<body style="margin: 0">
|
|
<img src="svg-image-visited-1-helper.svg">
|
|
</body>
|
|
</html>
|