mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 23:23:33 +00:00
004961a8fc
--HG-- extra : rebase_source : f3db726b4deffa7304f0cf0123d26bba680bdcfd
29 lines
538 B
HTML
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>
|