diff options
Diffstat (limited to 'image/test/reftest/ico/cur')
-rw-r--r-- | image/test/reftest/ico/cur/pointer.cur | bin | 0 -> 4286 bytes | |||
-rw-r--r-- | image/test/reftest/ico/cur/pointer.png | bin | 0 -> 453 bytes | |||
-rw-r--r-- | image/test/reftest/ico/cur/reftest-stylo.list | 5 | ||||
-rw-r--r-- | image/test/reftest/ico/cur/reftest.list | 4 | ||||
-rw-r--r-- | image/test/reftest/ico/cur/wrapper.html | 27 |
5 files changed, 36 insertions, 0 deletions
diff --git a/image/test/reftest/ico/cur/pointer.cur b/image/test/reftest/ico/cur/pointer.cur Binary files differnew file mode 100644 index 000000000..025ebaed1 --- /dev/null +++ b/image/test/reftest/ico/cur/pointer.cur diff --git a/image/test/reftest/ico/cur/pointer.png b/image/test/reftest/ico/cur/pointer.png Binary files differnew file mode 100644 index 000000000..84ad8f3fb --- /dev/null +++ b/image/test/reftest/ico/cur/pointer.png diff --git a/image/test/reftest/ico/cur/reftest-stylo.list b/image/test/reftest/ico/cur/reftest-stylo.list new file mode 100644 index 000000000..b59c26dc5 --- /dev/null +++ b/image/test/reftest/ico/cur/reftest-stylo.list @@ -0,0 +1,5 @@ +# DO NOT EDIT! This is a auto-generated temporary list for Stylo testing +# ICO BMP and PNG mixed tests + +skip == wrapper.html?pointer.cur wrapper.html?pointer.cur + diff --git a/image/test/reftest/ico/cur/reftest.list b/image/test/reftest/ico/cur/reftest.list new file mode 100644 index 000000000..635136506 --- /dev/null +++ b/image/test/reftest/ico/cur/reftest.list @@ -0,0 +1,4 @@ +# ICO BMP and PNG mixed tests + +== wrapper.html?pointer.cur wrapper.html?pointer.png + diff --git a/image/test/reftest/ico/cur/wrapper.html b/image/test/reftest/ico/cur/wrapper.html new file mode 100644 index 000000000..5bbe75e01 --- /dev/null +++ b/image/test/reftest/ico/cur/wrapper.html @@ -0,0 +1,27 @@ +<!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> +<img id="image1"> +<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> + |