mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bcc9280369
--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>
|