diff options
Diffstat (limited to 'layout/reftests/svg/as-image/svg-image-visited-2.html')
-rw-r--r-- | layout/reftests/svg/as-image/svg-image-visited-2.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/svg/as-image/svg-image-visited-2.html b/layout/reftests/svg/as-image/svg-image-visited-2.html new file mode 100644 index 000000000..e1c66698c --- /dev/null +++ b/layout/reftests/svg/as-image/svg-image-visited-2.html @@ -0,0 +1,23 @@ +<!-- + 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> |