Mypal/layout/reftests/svg/as-image/svg-image-visited-2.html

24 lines
757 B
HTML
Raw Normal View History

2019-03-11 03:26:37 -07:00
<!--
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-2-helper.svg">
</body>
</html>