gecko-dev/image/test/mochitest/green-background.html
Seth Fowler 004961a8fc Bug 936720 (Part 1) - Add a new mochitest for animated image operators. r=tn
--HG--
extra : rebase_source : f3db726b4deffa7304f0cf0123d26bba680bdcfd
2013-11-18 13:48:48 -08:00

29 lines
538 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Background color wrapper for clear image tests</title>
<style>
img {
background-color: rgb(0, 255, 0);
}
</style>
</head>
<body>
<img id="image1">
<script>
// Loads an externally specified image and displays it
// with a green background. Intended for use with tests
// involving clear images.
// Use as "green-background.html?image.png".
// Get the image URL.
var imgURL = document.location.search.substr(1);
// Load it.
var img = document.images[0];
img.src = imgURL;
</script>
</body>
</html>