mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
457 B
HTML
22 lines
457 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Image reftest wrapper</title>
|
||
|
<style type="text/css">
|
||
|
#image1 { background-color: rgb(10, 100, 250); }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<img id="image1">
|
||
|
<script>
|
||
|
// This loads a externally specified image with a background color
|
||
|
// set via CSS, to test transparency effects.
|
||
|
//
|
||
|
// Use as "wrapper.html?image.png"
|
||
|
//
|
||
|
var imgURL = document.location.search.substr(1);
|
||
|
document.images[0].src = imgURL;
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|