summaryrefslogtreecommitdiffstats
path: root/image/test/reftest/bmp/bmpsuite/x
diff options
context:
space:
mode:
Diffstat (limited to 'image/test/reftest/bmp/bmpsuite/x')
-rw-r--r--image/test/reftest/bmp/bmpsuite/x/ba-bm.bmpbin0 -> 9000 bytes
-rw-r--r--image/test/reftest/bmp/bmpsuite/x/reftest.list10
-rw-r--r--image/test/reftest/bmp/bmpsuite/x/wrapper.html28
3 files changed, 38 insertions, 0 deletions
diff --git a/image/test/reftest/bmp/bmpsuite/x/ba-bm.bmp b/image/test/reftest/bmp/bmpsuite/x/ba-bm.bmp
new file mode 100644
index 0000000000..d2615bde3e
--- /dev/null
+++ b/image/test/reftest/bmp/bmpsuite/x/ba-bm.bmp
Binary files differ
diff --git a/image/test/reftest/bmp/bmpsuite/x/reftest.list b/image/test/reftest/bmp/bmpsuite/x/reftest.list
new file mode 100644
index 0000000000..3c93479292
--- /dev/null
+++ b/image/test/reftest/bmp/bmpsuite/x/reftest.list
@@ -0,0 +1,10 @@
+# bmpsuite 'files in formats related to BMP, that you might not consider to
+# truly be in "BMP format"' tests
+
+# See ../README.mozilla for details.
+
+# "This image uses the OS/2v2 “Bitmap Array” (BA) container format. Although a
+# BA file may contain multiple images, this file has only one."
+== wrapper.html?ba-bm.bmp about:blank
+
+
diff --git a/image/test/reftest/bmp/bmpsuite/x/wrapper.html b/image/test/reftest/bmp/bmpsuite/x/wrapper.html
new file mode 100644
index 0000000000..f6c3ade538
--- /dev/null
+++ b/image/test/reftest/bmp/bmpsuite/x/wrapper.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML>
+<html class="reftest-wait">
+<head>
+<title>Image reftest wrapper</title>
+<style type="text/css">
+ #image1 { background-color: rgb(10, 100, 250); }
+</style>
+<script>
+ // The image is loaded async after the page loads
+ // wait for it to finish loading
+ function onImageLoad() {
+ document.documentElement.removeAttribute("class");
+ };
+</script>
+</head>
+<body>
+<!-- non-empty alt to avoid the broken image icon -->
+<img id="image1" alt=" ">
+<script>
+ // Use as "wrapper.html?image.png"
+ var imgURL = document.location.search.substr(1);
+ document.images[0].onload = onImageLoad;
+ document.images[0].onerror = onImageLoad;
+ document.images[0].src = imgURL;
+</script>
+</body>
+</html>
+