diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/apng | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/apng')
4 files changed, 40 insertions, 0 deletions
diff --git a/testing/web-platform/tests/apng/META.yml b/testing/web-platform/tests/apng/META.yml new file mode 100644 index 0000000000..a660c7e19e --- /dev/null +++ b/testing/web-platform/tests/apng/META.yml @@ -0,0 +1,5 @@ +spec: https://wiki.mozilla.org/APNG_Specification +suggested_reviewers: + - stuartparmenter + - svgeesus + - leonscroggins diff --git a/testing/web-platform/tests/apng/animated-png-timeout-ref.html b/testing/web-platform/tests/apng/animated-png-timeout-ref.html new file mode 100644 index 0000000000..c46bb90164 --- /dev/null +++ b/testing/web-platform/tests/apng/animated-png-timeout-ref.html @@ -0,0 +1 @@ +<img src=../images/green.png> diff --git a/testing/web-platform/tests/apng/animated-png-timeout.html b/testing/web-platform/tests/apng/animated-png-timeout.html new file mode 100644 index 0000000000..6975bd9c4e --- /dev/null +++ b/testing/web-platform/tests/apng/animated-png-timeout.html @@ -0,0 +1,11 @@ +<html class="reftest-wait"> +<title>APNG: Second frame displays quickly, replacing red with green.</title> +<link rel="match" href="animated-png-timeout-ref.html"/> +<img src=../images/apng.png onload="loaded()"/> +<script> + function loaded() { + setTimeout(function() { + document.documentElement.classList.remove("reftest-wait"); + }, 1000); + } +</script> diff --git a/testing/web-platform/tests/apng/supported-in-source-type.html b/testing/web-platform/tests/apng/supported-in-source-type.html new file mode 100644 index 0000000000..0a4d232dcb --- /dev/null +++ b/testing/web-platform/tests/apng/supported-in-source-type.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<title>Animated PNG MIME type (image/apng) is recognized by <source type></title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script> +function resolveUrl(relativeUrl) { + var a = document.createElement('a'); + a.href = relativeUrl; + return a.href; +} + +async_test(t => { + window.onload = t.step_func_done(() => { + let image = document.querySelector('img'); + let apngSrc = document.querySelector('source'); + assert_equals(image.currentSrc, resolveUrl(apngSrc.srcset)); + }); +}); +</script> +<picture> + <source srcset="/images/anim-gr.png" type="image/apng"> + <img src="/images/anim-gr.gif" style="visibility: hidden"> +</picture> |