diff options
Diffstat (limited to 'image/test/reftest/apng')
-rw-r--r-- | image/test/reftest/apng/bug411852-1-ref.html | 6 | ||||
-rw-r--r-- | image/test/reftest/apng/bug411852-1-ref.png | bin | 0 -> 164 bytes | |||
-rw-r--r-- | image/test/reftest/apng/bug411852-1.png | bin | 0 -> 606 bytes | |||
-rw-r--r-- | image/test/reftest/apng/bug546272-ref.html | 6 | ||||
-rw-r--r-- | image/test/reftest/apng/bug546272-ref.png | bin | 0 -> 712 bytes | |||
-rw-r--r-- | image/test/reftest/apng/bug546272.png | bin | 0 -> 1391 bytes | |||
-rw-r--r-- | image/test/reftest/apng/delaytest.html | 58 | ||||
-rw-r--r-- | image/test/reftest/apng/reftest.list | 6 |
8 files changed, 76 insertions, 0 deletions
diff --git a/image/test/reftest/apng/bug411852-1-ref.html b/image/test/reftest/apng/bug411852-1-ref.html new file mode 100644 index 0000000000..ce346c87ca --- /dev/null +++ b/image/test/reftest/apng/bug411852-1-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE HTML> +<html> +<body> +<img src="bug411852-1-ref.png"> +</body> +</html> diff --git a/image/test/reftest/apng/bug411852-1-ref.png b/image/test/reftest/apng/bug411852-1-ref.png Binary files differnew file mode 100644 index 0000000000..04b862a1d9 --- /dev/null +++ b/image/test/reftest/apng/bug411852-1-ref.png diff --git a/image/test/reftest/apng/bug411852-1.png b/image/test/reftest/apng/bug411852-1.png Binary files differnew file mode 100644 index 0000000000..643f87e176 --- /dev/null +++ b/image/test/reftest/apng/bug411852-1.png diff --git a/image/test/reftest/apng/bug546272-ref.html b/image/test/reftest/apng/bug546272-ref.html new file mode 100644 index 0000000000..43afef15e1 --- /dev/null +++ b/image/test/reftest/apng/bug546272-ref.html @@ -0,0 +1,6 @@ +<!DOCTYPE HTML> +<html> +<body> +<img src="bug546272-ref.png"> +</body> +</html> diff --git a/image/test/reftest/apng/bug546272-ref.png b/image/test/reftest/apng/bug546272-ref.png Binary files differnew file mode 100644 index 0000000000..85dfd8ccfd --- /dev/null +++ b/image/test/reftest/apng/bug546272-ref.png diff --git a/image/test/reftest/apng/bug546272.png b/image/test/reftest/apng/bug546272.png Binary files differnew file mode 100644 index 0000000000..5232d7f8f2 --- /dev/null +++ b/image/test/reftest/apng/bug546272.png diff --git a/image/test/reftest/apng/delaytest.html b/image/test/reftest/apng/delaytest.html new file mode 100644 index 0000000000..ee79254a2b --- /dev/null +++ b/image/test/reftest/apng/delaytest.html @@ -0,0 +1,58 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<head> +<title>Delayed image reftest wrapper</title> +</head> +<body> +<!-- non-empty alt to avoid the broken image icon --> +<img id="image1" alt=" "> +<script> + +window.addEventListener("MozReftestInvalidate", reftestInvalidateListener); + +// This loads a externally specified image, forces a draw (in case of +// decode-on-draw), waits 100ms, and then triggers the reftest snapshot. +// This allows the animation on the page to complete. +// +// Use as "delaytest.html?animation.png" +// + +// Get the image URL from our URL +var imgURL = document.location.search.substr(1); + +// Load the image +var img = document.images[0]; +img.src = imgURL; +img.onload = forceDecode; + +let decodeComplete = false; +let gotReftestInvalidate = false; + +function forceDecode() { + img.decode().then(function() { + decodeComplete = true; + maybeStartTimer(); + }, function() { + decodeComplete = true; + maybeStartTimer(); + }); +} + +function reftestInvalidateListener() { + gotReftestInvalidate = true; + maybeStartTimer(); +} + +function maybeStartTimer() { + if (decodeComplete && gotReftestInvalidate) { + startTimer(); + } +} + +function startTimer() { + const delay = 100; + setTimeout("document.documentElement.className = '';", delay); +} +</script> +</body> +</html> diff --git a/image/test/reftest/apng/reftest.list b/image/test/reftest/apng/reftest.list new file mode 100644 index 0000000000..7ff6e561fe --- /dev/null +++ b/image/test/reftest/apng/reftest.list @@ -0,0 +1,6 @@ +# APNG tests +# +# delaytest.html delays the reftest snapshot to allow time for the +# animation to complete. +== delaytest.html?bug411852-1.png bug411852-1-ref.html +== delaytest.html?bug546272.png bug546272-ref.html |